Overview
ETH Balance
0 ETH
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
3227221 | 42 hrs ago | Contract Creation | 0 ETH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
DropERC20
Compiler Version
v0.8.23+commit.f704f362
ZkSolc Version
v1.5.4
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.11; /// @author thirdweb // $$\ $$\ $$\ $$\ $$\ // $$ | $$ | \__| $$ | $$ | // $$$$$$\ $$$$$$$\ $$\ $$$$$$\ $$$$$$$ |$$\ $$\ $$\ $$$$$$\ $$$$$$$\ // \_$$ _| $$ __$$\ $$ |$$ __$$\ $$ __$$ |$$ | $$ | $$ |$$ __$$\ $$ __$$\ // $$ | $$ | $$ |$$ |$$ | \__|$$ / $$ |$$ | $$ | $$ |$$$$$$$$ |$$ | $$ | // $$ |$$\ $$ | $$ |$$ |$$ | $$ | $$ |$$ | $$ | $$ |$$ ____|$$ | $$ | // \$$$$ |$$ | $$ |$$ |$$ | \$$$$$$$ |\$$$$$\$$$$ |\$$$$$$$\ $$$$$$$ | // \____/ \__| \__|\__|\__| \_______| \_____\____/ \_______|\_______/ // ========== External imports ========== import "@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC20BurnableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC20VotesUpgradeable.sol"; import "../../extension/Multicall.sol"; import "@openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol"; // ========== Internal imports ========== import "../../external-deps/openzeppelin/metatx/ERC2771ContextUpgradeable.sol"; import "../../lib/CurrencyTransferLib.sol"; // ========== Features ========== import "../../extension/ContractMetadata.sol"; import "../../extension/PlatformFee.sol"; import "../../extension/PrimarySale.sol"; import "../../extension/PermissionsEnumerable.sol"; import "../../extension/Drop.sol"; contract DropERC20 is Initializable, ContractMetadata, PlatformFee, PrimarySale, PermissionsEnumerable, Drop, ERC2771ContextUpgradeable, Multicall, ERC20BurnableUpgradeable, ERC20VotesUpgradeable { using StringsUpgradeable for uint256; /*/////////////////////////////////////////////////////////////// State variables //////////////////////////////////////////////////////////////*/ /// @dev Only transfers to or from TRANSFER_ROLE holders are valid, when transfers are restricted. bytes32 private transferRole; /// @dev Max bps in the thirdweb system. uint256 private constant MAX_BPS = 10_000; address public constant DEFAULT_FEE_RECIPIENT = 0x1Af20C6B23373350aD464700B5965CE4B0D2aD94; uint16 private constant DEFAULT_FEE_BPS = 100; /// @dev Global max total supply of tokens. uint256 public maxTotalSupply; /// @dev Emitted when the global max supply of tokens is updated. event MaxTotalSupplyUpdated(uint256 maxTotalSupply); /*/////////////////////////////////////////////////////////////// Constructor + initializer logic //////////////////////////////////////////////////////////////*/ constructor() initializer {} /// @dev Initializes the contract, like a constructor. function initialize( address _defaultAdmin, string memory _name, string memory _symbol, string memory _contractURI, address[] memory _trustedForwarders, address _saleRecipient, address _platformFeeRecipient, uint128 _platformFeeBps ) external initializer { bytes32 _transferRole = keccak256("TRANSFER_ROLE"); // Initialize inherited contracts, most base-like -> most derived. __ERC2771Context_init(_trustedForwarders); __ERC20Permit_init(_name); __ERC20_init_unchained(_name, _symbol); _setupContractURI(_contractURI); _setupRole(DEFAULT_ADMIN_ROLE, _defaultAdmin); _setupRole(_transferRole, _defaultAdmin); _setupRole(_transferRole, address(0)); _setupPlatformFeeInfo(_platformFeeRecipient, _platformFeeBps); _setupPrimarySaleRecipient(_saleRecipient); transferRole = _transferRole; } /*/////////////////////////////////////////////////////////////// Contract identifiers //////////////////////////////////////////////////////////////*/ function contractType() external pure returns (bytes32) { return bytes32("DropERC20"); } function contractVersion() external pure returns (uint8) { return uint8(4); } /*/////////////////////////////////////////////////////////////// Setter functions //////////////////////////////////////////////////////////////*/ /// @dev Lets a contract admin set the global maximum supply for collection's NFTs. function setMaxTotalSupply(uint256 _maxTotalSupply) external onlyRole(DEFAULT_ADMIN_ROLE) { maxTotalSupply = _maxTotalSupply; emit MaxTotalSupplyUpdated(_maxTotalSupply); } /*/////////////////////////////////////////////////////////////// Internal functions //////////////////////////////////////////////////////////////*/ /// @dev Runs before every `claim` function call. function _beforeClaim( address, uint256 _quantity, address, uint256, AllowlistProof calldata, bytes memory ) internal view override { uint256 _maxTotalSupply = maxTotalSupply; require(_maxTotalSupply == 0 || totalSupply() + _quantity <= _maxTotalSupply, "exceed max total supply."); } /// @dev Collects and distributes the primary sale value of tokens being claimed. function _collectPriceOnClaim( address _primarySaleRecipient, uint256 _quantityToClaim, address _currency, uint256 _pricePerToken ) internal override { if (_pricePerToken == 0) { require(msg.value == 0, "!Value"); return; } (address platformFeeRecipient, uint16 platformFeeBps) = getPlatformFeeInfo(); address saleRecipient = _primarySaleRecipient == address(0) ? primarySaleRecipient() : _primarySaleRecipient; // `_pricePerToken` is interpreted as price per 1 ether unit of the ERC20 tokens. uint256 totalPrice = (_quantityToClaim * _pricePerToken) / 1 ether; require(totalPrice > 0, "quantity too low"); uint256 platformFeesTw = (totalPrice * DEFAULT_FEE_BPS) / MAX_BPS; uint256 platformFees = (totalPrice * platformFeeBps) / MAX_BPS; bool validMsgValue; if (_currency == CurrencyTransferLib.NATIVE_TOKEN) { validMsgValue = msg.value == totalPrice; } else { validMsgValue = msg.value == 0; } require(validMsgValue, "Invalid msg value"); CurrencyTransferLib.transferCurrency(_currency, _msgSender(), DEFAULT_FEE_RECIPIENT, platformFeesTw); CurrencyTransferLib.transferCurrency(_currency, _msgSender(), platformFeeRecipient, platformFees); CurrencyTransferLib.transferCurrency( _currency, _msgSender(), saleRecipient, totalPrice - platformFees - platformFeesTw ); } /// @dev Transfers the tokens being claimed. function _transferTokensOnClaim(address _to, uint256 _quantityBeingClaimed) internal override returns (uint256) { _mint(_to, _quantityBeingClaimed); return 0; } /// @dev Checks whether platform fee info can be set in the given execution context. function _canSetPlatformFeeInfo() internal view override returns (bool) { return hasRole(DEFAULT_ADMIN_ROLE, _msgSender()); } /// @dev Checks whether primary sale recipient can be set in the given execution context. function _canSetPrimarySaleRecipient() internal view override returns (bool) { return hasRole(DEFAULT_ADMIN_ROLE, _msgSender()); } /// @dev Checks whether contract metadata can be set in the given execution context. function _canSetContractURI() internal view override returns (bool) { return hasRole(DEFAULT_ADMIN_ROLE, _msgSender()); } /// @dev Checks whether platform fee info can be set in the given execution context. function _canSetClaimConditions() internal view override returns (bool) { return hasRole(DEFAULT_ADMIN_ROLE, _msgSender()); } /*/////////////////////////////////////////////////////////////// Miscellaneous //////////////////////////////////////////////////////////////*/ function _mint(address account, uint256 amount) internal virtual override(ERC20Upgradeable, ERC20VotesUpgradeable) { super._mint(account, amount); } function _burn(address account, uint256 amount) internal virtual override(ERC20Upgradeable, ERC20VotesUpgradeable) { super._burn(account, amount); } function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual override(ERC20Upgradeable, ERC20VotesUpgradeable) { super._afterTokenTransfer(from, to, amount); } /// @dev Runs on every transfer. function _beforeTokenTransfer(address from, address to, uint256 amount) internal override(ERC20Upgradeable) { super._beforeTokenTransfer(from, to, amount); if (!hasRole(transferRole, address(0)) && from != address(0) && to != address(0)) { require(hasRole(transferRole, from) || hasRole(transferRole, to), "transfers restricted."); } } function _dropMsgSender() internal view virtual override returns (address) { return _msgSender(); } function _msgSender() internal view virtual override(ContextUpgradeable, ERC2771ContextUpgradeable, Multicall) returns (address sender) { return ERC2771ContextUpgradeable._msgSender(); } function _msgData() internal view virtual override(ContextUpgradeable, ERC2771ContextUpgradeable) returns (bytes calldata) { return ERC2771ContextUpgradeable._msgData(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (governance/utils/IVotes.sol) pragma solidity ^0.8.0; /** * @dev Common interface for {ERC20Votes}, {ERC721Votes}, and other {Votes}-enabled contracts. * * _Available since v4.5._ */ interface IVotesUpgradeable { /** * @dev Emitted when an account changes their delegate. */ event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate); /** * @dev Emitted when a token transfer or delegate change results in changes to a delegate's number of votes. */ event DelegateVotesChanged(address indexed delegate, uint256 previousBalance, uint256 newBalance); /** * @dev Returns the current amount of votes that `account` has. */ function getVotes(address account) external view returns (uint256); /** * @dev Returns the amount of votes that `account` had at a specific moment in the past. If the `clock()` is * configured to use block numbers, this will return the value at the end of the corresponding block. */ function getPastVotes(address account, uint256 timepoint) external view returns (uint256); /** * @dev Returns the total supply of votes available at a specific moment in the past. If the `clock()` is * configured to use block numbers, this will return the value at the end of the corresponding block. * * NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes. * Votes that have not been delegated are still part of total supply, even though they would not participate in a * vote. */ function getPastTotalSupply(uint256 timepoint) external view returns (uint256); /** * @dev Returns the delegate that `account` has chosen. */ function delegates(address account) external view returns (address); /** * @dev Delegates votes from the sender to `delegatee`. */ function delegate(address delegatee) external; /** * @dev Delegates votes from signer to `delegatee`. */ function delegateBySig(address delegatee, uint256 nonce, uint256 expiry, uint8 v, bytes32 r, bytes32 s) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC5267.sol) pragma solidity ^0.8.0; interface IERC5267Upgradeable { /** * @dev MAY be emitted to signal that the domain could have changed. */ event EIP712DomainChanged(); /** * @dev returns the fields and values that describe the domain separator used by this contract for EIP-712 * signature. */ function eip712Domain() external view returns ( bytes1 fields, string memory name, string memory version, uint256 chainId, address verifyingContract, bytes32 salt, uint256[] memory extensions ); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC5805.sol) pragma solidity ^0.8.0; import "../governance/utils/IVotesUpgradeable.sol"; import "./IERC6372Upgradeable.sol"; interface IERC5805Upgradeable is IERC6372Upgradeable, IVotesUpgradeable {}
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC6372.sol) pragma solidity ^0.8.0; interface IERC6372Upgradeable { /** * @dev Clock used for flagging checkpoints. Can be overridden to implement timestamp based checkpoints (and voting). */ function clock() external view returns (uint48); /** * @dev Description of the clock */ // solhint-disable-next-line func-name-mixedcase function CLOCK_MODE() external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol) pragma solidity ^0.8.2; import "../../utils/AddressUpgradeable.sol"; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in * case an upgrade adds a module that needs to be initialized. * * For example: * * [.hljs-theme-light.nopadding] * ```solidity * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. * @custom:oz-retyped-from bool */ uint8 private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint8 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. * * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a * constructor. * * Emits an {Initialized} event. */ modifier initializer() { bool isTopLevelCall = !_initializing; require( (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1), "Initializable: contract is already initialized" ); _initialized = 1; if (isTopLevelCall) { _initializing = true; } _; if (isTopLevelCall) { _initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * A reinitializer may be used after the original initialization step. This is essential to configure modules that * are added through upgrades and that require initialization. * * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer` * cannot be nested. If one is invoked in the context of another, execution will revert. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. * * WARNING: setting the version to 255 will prevent any future reinitialization. * * Emits an {Initialized} event. */ modifier reinitializer(uint8 version) { require(!_initializing && _initialized < version, "Initializable: contract is already initialized"); _initialized = version; _initializing = true; _; _initializing = false; emit Initialized(version); } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. * * Emits an {Initialized} event the first time it is successfully executed. */ function _disableInitializers() internal virtual { require(!_initializing, "Initializable: contract is initializing"); if (_initialized != type(uint8).max) { _initialized = type(uint8).max; emit Initialized(type(uint8).max); } } /** * @dev Returns the highest version that has been initialized. See {reinitializer}. */ function _getInitializedVersion() internal view returns (uint8) { return _initialized; } /** * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}. */ function _isInitializing() internal view returns (bool) { return _initializing; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20Upgradeable.sol"; import "./extensions/IERC20MetadataUpgradeable.sol"; import "../../utils/ContextUpgradeable.sol"; import "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20Upgradeable is Initializable, ContextUpgradeable, IERC20Upgradeable, IERC20MetadataUpgradeable { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ function __ERC20_init(string memory name_, string memory symbol_) internal onlyInitializing { __ERC20_init_unchained(name_, symbol_); } function __ERC20_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[45] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20Upgradeable { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; import "../ERC20Upgradeable.sol"; import "../../../utils/ContextUpgradeable.sol"; import "../../../proxy/utils/Initializable.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20BurnableUpgradeable is Initializable, ContextUpgradeable, ERC20Upgradeable { function __ERC20Burnable_init() internal onlyInitializing { } function __ERC20Burnable_init_unchained() internal onlyInitializing { } /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/ERC20Permit.sol) pragma solidity ^0.8.0; import "./IERC20PermitUpgradeable.sol"; import "../ERC20Upgradeable.sol"; import "../../../utils/cryptography/ECDSAUpgradeable.sol"; import "../../../utils/cryptography/EIP712Upgradeable.sol"; import "../../../utils/CountersUpgradeable.sol"; import "../../../proxy/utils/Initializable.sol"; /** * @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. * * _Available since v3.4._ * * @custom:storage-size 51 */ abstract contract ERC20PermitUpgradeable is Initializable, ERC20Upgradeable, IERC20PermitUpgradeable, EIP712Upgradeable { using CountersUpgradeable for CountersUpgradeable.Counter; mapping(address => CountersUpgradeable.Counter) private _nonces; // solhint-disable-next-line var-name-mixedcase bytes32 private constant _PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); /** * @dev In previous versions `_PERMIT_TYPEHASH` was declared as `immutable`. * However, to ensure consistency with the upgradeable transpiler, we will continue * to reserve a slot. * @custom:oz-renamed-from _PERMIT_TYPEHASH */ // solhint-disable-next-line var-name-mixedcase bytes32 private _PERMIT_TYPEHASH_DEPRECATED_SLOT; /** * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`. * * It's a good idea to use the same `name` that is defined as the ERC20 token name. */ function __ERC20Permit_init(string memory name) internal onlyInitializing { __EIP712_init_unchained(name, "1"); } function __ERC20Permit_init_unchained(string memory) internal onlyInitializing {} /** * @dev See {IERC20Permit-permit}. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public virtual override { require(block.timestamp <= deadline, "ERC20Permit: expired deadline"); bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline)); bytes32 hash = _hashTypedDataV4(structHash); address signer = ECDSAUpgradeable.recover(hash, v, r, s); require(signer == owner, "ERC20Permit: invalid signature"); _approve(owner, spender, value); } /** * @dev See {IERC20Permit-nonces}. */ function nonces(address owner) public view virtual override returns (uint256) { return _nonces[owner].current(); } /** * @dev See {IERC20Permit-DOMAIN_SEPARATOR}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view override returns (bytes32) { return _domainSeparatorV4(); } /** * @dev "Consume a nonce": return the current value and increment. * * _Available since v4.1._ */ function _useNonce(address owner) internal virtual returns (uint256 current) { CountersUpgradeable.Counter storage nonce = _nonces[owner]; current = nonce.current(); nonce.increment(); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/ERC20Votes.sol) pragma solidity ^0.8.0; import "./ERC20PermitUpgradeable.sol"; import "../../../interfaces/IERC5805Upgradeable.sol"; import "../../../utils/math/MathUpgradeable.sol"; import "../../../utils/math/SafeCastUpgradeable.sol"; import "../../../utils/cryptography/ECDSAUpgradeable.sol"; import "../../../proxy/utils/Initializable.sol"; /** * @dev Extension of ERC20 to support Compound-like voting and delegation. This version is more generic than Compound's, * and supports token supply up to 2^224^ - 1, while COMP is limited to 2^96^ - 1. * * NOTE: If exact COMP compatibility is required, use the {ERC20VotesComp} variant of this module. * * This extension keeps a history (checkpoints) of each account's vote power. Vote power can be delegated either * by calling the {delegate} function directly, or by providing a signature to be used with {delegateBySig}. Voting * power can be queried through the public accessors {getVotes} and {getPastVotes}. * * By default, token balance does not account for voting power. This makes transfers cheaper. The downside is that it * requires users to delegate to themselves in order to activate checkpoints and have their voting power tracked. * * _Available since v4.2._ */ abstract contract ERC20VotesUpgradeable is Initializable, ERC20PermitUpgradeable, IERC5805Upgradeable { function __ERC20Votes_init() internal onlyInitializing { } function __ERC20Votes_init_unchained() internal onlyInitializing { } struct Checkpoint { uint32 fromBlock; uint224 votes; } bytes32 private constant _DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)"); mapping(address => address) private _delegates; mapping(address => Checkpoint[]) private _checkpoints; Checkpoint[] private _totalSupplyCheckpoints; /** * @dev Clock used for flagging checkpoints. Can be overridden to implement timestamp based checkpoints (and voting). */ function clock() public view virtual override returns (uint48) { return SafeCastUpgradeable.toUint48(block.number); } /** * @dev Description of the clock */ // solhint-disable-next-line func-name-mixedcase function CLOCK_MODE() public view virtual override returns (string memory) { // Check that the clock was not modified require(clock() == block.number, "ERC20Votes: broken clock mode"); return "mode=blocknumber&from=default"; } /** * @dev Get the `pos`-th checkpoint for `account`. */ function checkpoints(address account, uint32 pos) public view virtual returns (Checkpoint memory) { return _checkpoints[account][pos]; } /** * @dev Get number of checkpoints for `account`. */ function numCheckpoints(address account) public view virtual returns (uint32) { return SafeCastUpgradeable.toUint32(_checkpoints[account].length); } /** * @dev Get the address `account` is currently delegating to. */ function delegates(address account) public view virtual override returns (address) { return _delegates[account]; } /** * @dev Gets the current votes balance for `account` */ function getVotes(address account) public view virtual override returns (uint256) { uint256 pos = _checkpoints[account].length; unchecked { return pos == 0 ? 0 : _checkpoints[account][pos - 1].votes; } } /** * @dev Retrieve the number of votes for `account` at the end of `timepoint`. * * Requirements: * * - `timepoint` must be in the past */ function getPastVotes(address account, uint256 timepoint) public view virtual override returns (uint256) { require(timepoint < clock(), "ERC20Votes: future lookup"); return _checkpointsLookup(_checkpoints[account], timepoint); } /** * @dev Retrieve the `totalSupply` at the end of `timepoint`. Note, this value is the sum of all balances. * It is NOT the sum of all the delegated votes! * * Requirements: * * - `timepoint` must be in the past */ function getPastTotalSupply(uint256 timepoint) public view virtual override returns (uint256) { require(timepoint < clock(), "ERC20Votes: future lookup"); return _checkpointsLookup(_totalSupplyCheckpoints, timepoint); } /** * @dev Lookup a value in a list of (sorted) checkpoints. */ function _checkpointsLookup(Checkpoint[] storage ckpts, uint256 timepoint) private view returns (uint256) { // We run a binary search to look for the last (most recent) checkpoint taken before (or at) `timepoint`. // // Initially we check if the block is recent to narrow the search range. // During the loop, the index of the wanted checkpoint remains in the range [low-1, high). // With each iteration, either `low` or `high` is moved towards the middle of the range to maintain the invariant. // - If the middle checkpoint is after `timepoint`, we look in [low, mid) // - If the middle checkpoint is before or equal to `timepoint`, we look in [mid+1, high) // Once we reach a single value (when low == high), we've found the right checkpoint at the index high-1, if not // out of bounds (in which case we're looking too far in the past and the result is 0). // Note that if the latest checkpoint available is exactly for `timepoint`, we end up with an index that is // past the end of the array, so we technically don't find a checkpoint after `timepoint`, but it works out // the same. uint256 length = ckpts.length; uint256 low = 0; uint256 high = length; if (length > 5) { uint256 mid = length - MathUpgradeable.sqrt(length); if (_unsafeAccess(ckpts, mid).fromBlock > timepoint) { high = mid; } else { low = mid + 1; } } while (low < high) { uint256 mid = MathUpgradeable.average(low, high); if (_unsafeAccess(ckpts, mid).fromBlock > timepoint) { high = mid; } else { low = mid + 1; } } unchecked { return high == 0 ? 0 : _unsafeAccess(ckpts, high - 1).votes; } } /** * @dev Delegate votes from the sender to `delegatee`. */ function delegate(address delegatee) public virtual override { _delegate(_msgSender(), delegatee); } /** * @dev Delegates votes from signer to `delegatee` */ function delegateBySig( address delegatee, uint256 nonce, uint256 expiry, uint8 v, bytes32 r, bytes32 s ) public virtual override { require(block.timestamp <= expiry, "ERC20Votes: signature expired"); address signer = ECDSAUpgradeable.recover( _hashTypedDataV4(keccak256(abi.encode(_DELEGATION_TYPEHASH, delegatee, nonce, expiry))), v, r, s ); require(nonce == _useNonce(signer), "ERC20Votes: invalid nonce"); _delegate(signer, delegatee); } /** * @dev Maximum token supply. Defaults to `type(uint224).max` (2^224^ - 1). */ function _maxSupply() internal view virtual returns (uint224) { return type(uint224).max; } /** * @dev Snapshots the totalSupply after it has been increased. */ function _mint(address account, uint256 amount) internal virtual override { super._mint(account, amount); require(totalSupply() <= _maxSupply(), "ERC20Votes: total supply risks overflowing votes"); _writeCheckpoint(_totalSupplyCheckpoints, _add, amount); } /** * @dev Snapshots the totalSupply after it has been decreased. */ function _burn(address account, uint256 amount) internal virtual override { super._burn(account, amount); _writeCheckpoint(_totalSupplyCheckpoints, _subtract, amount); } /** * @dev Move voting power when tokens are transferred. * * Emits a {IVotes-DelegateVotesChanged} event. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual override { super._afterTokenTransfer(from, to, amount); _moveVotingPower(delegates(from), delegates(to), amount); } /** * @dev Change delegation for `delegator` to `delegatee`. * * Emits events {IVotes-DelegateChanged} and {IVotes-DelegateVotesChanged}. */ function _delegate(address delegator, address delegatee) internal virtual { address currentDelegate = delegates(delegator); uint256 delegatorBalance = balanceOf(delegator); _delegates[delegator] = delegatee; emit DelegateChanged(delegator, currentDelegate, delegatee); _moveVotingPower(currentDelegate, delegatee, delegatorBalance); } function _moveVotingPower(address src, address dst, uint256 amount) private { if (src != dst && amount > 0) { if (src != address(0)) { (uint256 oldWeight, uint256 newWeight) = _writeCheckpoint(_checkpoints[src], _subtract, amount); emit DelegateVotesChanged(src, oldWeight, newWeight); } if (dst != address(0)) { (uint256 oldWeight, uint256 newWeight) = _writeCheckpoint(_checkpoints[dst], _add, amount); emit DelegateVotesChanged(dst, oldWeight, newWeight); } } } function _writeCheckpoint( Checkpoint[] storage ckpts, function(uint256, uint256) view returns (uint256) op, uint256 delta ) private returns (uint256 oldWeight, uint256 newWeight) { uint256 pos = ckpts.length; unchecked { Checkpoint memory oldCkpt = pos == 0 ? Checkpoint(0, 0) : _unsafeAccess(ckpts, pos - 1); oldWeight = oldCkpt.votes; newWeight = op(oldWeight, delta); if (pos > 0 && oldCkpt.fromBlock == clock()) { _unsafeAccess(ckpts, pos - 1).votes = SafeCastUpgradeable.toUint224(newWeight); } else { ckpts.push(Checkpoint({fromBlock: SafeCastUpgradeable.toUint32(clock()), votes: SafeCastUpgradeable.toUint224(newWeight)})); } } } function _add(uint256 a, uint256 b) private pure returns (uint256) { return a + b; } function _subtract(uint256 a, uint256 b) private pure returns (uint256) { return a - b; } /** * @dev Access an element of the array without performing bounds check. The position is assumed to be within bounds. */ function _unsafeAccess(Checkpoint[] storage ckpts, uint256 pos) private pure returns (Checkpoint storage result) { assembly { mstore(0, ckpts.slot) result.slot := add(keccak256(0, 0x20), pos) } } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[47] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20Upgradeable.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20MetadataUpgradeable is IERC20Upgradeable { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20PermitUpgradeable { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // 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 AddressUpgradeable { /** * @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); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @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 ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { } function __Context_init_unchained() internal onlyInitializing { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library CountersUpgradeable { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/MathUpgradeable.sol"; import "./math/SignedMathUpgradeable.sol"; /** * @dev String operations. */ library StringsUpgradeable { 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 = MathUpgradeable.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(SignedMathUpgradeable.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, MathUpgradeable.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)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../StringsUpgradeable.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSAUpgradeable { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV // Deprecated in v4.8 } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) { // 32 is the length in bytes of hash, // enforced by the type signature above /// @solidity memory-safe-assembly assembly { mstore(0x00, "\x19Ethereum Signed Message:\n32") mstore(0x1c, hash) message := keccak256(0x00, 0x3c) } } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", StringsUpgradeable.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) { /// @solidity memory-safe-assembly assembly { let ptr := mload(0x40) mstore(ptr, "\x19\x01") mstore(add(ptr, 0x02), domainSeparator) mstore(add(ptr, 0x22), structHash) data := keccak256(ptr, 0x42) } } /** * @dev Returns an Ethereum Signed Data with intended validator, created from a * `validator` and `data` according to the version 0 of EIP-191. * * See {recover}. */ function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x00", validator, data)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/EIP712.sol) pragma solidity ^0.8.8; import "./ECDSAUpgradeable.sol"; import "../../interfaces/IERC5267Upgradeable.sol"; import "../../proxy/utils/Initializable.sol"; /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. * * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible, * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding * they need in their contracts using a combination of `abi.encode` and `keccak256`. * * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA * ({_hashTypedDataV4}). * * The implementation of the domain separator was designed to be as efficient as possible while still properly updating * the chain id to protect against replay attacks on an eventual fork of the chain. * * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. * * NOTE: In the upgradeable version of this contract, the cached values will correspond to the address, and the domain * separator of the implementation contract. This will cause the `_domainSeparatorV4` function to always rebuild the * separator from the immutable values, which is cheaper than accessing a cached version in cold storage. * * _Available since v3.4._ * * @custom:storage-size 52 */ abstract contract EIP712Upgradeable is Initializable, IERC5267Upgradeable { bytes32 private constant _TYPE_HASH = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"); /// @custom:oz-renamed-from _HASHED_NAME bytes32 private _hashedName; /// @custom:oz-renamed-from _HASHED_VERSION bytes32 private _hashedVersion; string private _name; string private _version; /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ function __EIP712_init(string memory name, string memory version) internal onlyInitializing { __EIP712_init_unchained(name, version); } function __EIP712_init_unchained(string memory name, string memory version) internal onlyInitializing { _name = name; _version = version; // Reset prior values in storage if upgrading _hashedName = 0; _hashedVersion = 0; } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { return _buildDomainSeparator(); } function _buildDomainSeparator() private view returns (bytes32) { return keccak256(abi.encode(_TYPE_HASH, _EIP712NameHash(), _EIP712VersionHash(), block.chainid, address(this))); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return ECDSAUpgradeable.toTypedDataHash(_domainSeparatorV4(), structHash); } /** * @dev See {EIP-5267}. * * _Available since v4.9._ */ function eip712Domain() public view virtual override returns ( bytes1 fields, string memory name, string memory version, uint256 chainId, address verifyingContract, bytes32 salt, uint256[] memory extensions ) { // If the hashed name and version in storage are non-zero, the contract hasn't been properly initialized // and the EIP712 domain is not reliable, as it will be missing name and version. require(_hashedName == 0 && _hashedVersion == 0, "EIP712: Uninitialized"); return ( hex"0f", // 01111 _EIP712Name(), _EIP712Version(), block.chainid, address(this), bytes32(0), new uint256[](0) ); } /** * @dev The name parameter for the EIP712 domain. * * NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs * are a concern. */ function _EIP712Name() internal virtual view returns (string memory) { return _name; } /** * @dev The version parameter for the EIP712 domain. * * NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs * are a concern. */ function _EIP712Version() internal virtual view returns (string memory) { return _version; } /** * @dev The hash of the name parameter for the EIP712 domain. * * NOTE: In previous versions this function was virtual. In this version you should override `_EIP712Name` instead. */ function _EIP712NameHash() internal view returns (bytes32) { string memory name = _EIP712Name(); if (bytes(name).length > 0) { return keccak256(bytes(name)); } else { // If the name is empty, the contract may have been upgraded without initializing the new storage. // We return the name hash in storage if non-zero, otherwise we assume the name is empty by design. bytes32 hashedName = _hashedName; if (hashedName != 0) { return hashedName; } else { return keccak256(""); } } } /** * @dev The hash of the version parameter for the EIP712 domain. * * NOTE: In previous versions this function was virtual. In this version you should override `_EIP712Version` instead. */ function _EIP712VersionHash() internal view returns (bytes32) { string memory version = _EIP712Version(); if (bytes(version).length > 0) { return keccak256(bytes(version)); } else { // If the version is empty, the contract may have been upgraded without initializing the new storage. // We return the version hash in storage if non-zero, otherwise we assume the version is empty by design. bytes32 hashedVersion = _hashedVersion; if (hashedVersion != 0) { return hashedVersion; } else { return keccak256(""); } } } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[48] private __gap; }
// SPDX-License-Identifier: MIT // 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 MathUpgradeable { 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); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SafeCast.sol) // This file was procedurally generated from scripts/generate/templates/SafeCast.js. pragma solidity ^0.8.0; /** * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow * checks. * * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can * easily result in undesired exploitation or bugs, since developers usually * assume that overflows raise errors. `SafeCast` restores this intuition by * reverting the transaction when such an operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. * * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing * all math on `uint256` and `int256` and then downcasting. */ library SafeCastUpgradeable { /** * @dev Returns the downcasted uint248 from uint256, reverting on * overflow (when the input is greater than largest uint248). * * Counterpart to Solidity's `uint248` operator. * * Requirements: * * - input must fit into 248 bits * * _Available since v4.7._ */ function toUint248(uint256 value) internal pure returns (uint248) { require(value <= type(uint248).max, "SafeCast: value doesn't fit in 248 bits"); return uint248(value); } /** * @dev Returns the downcasted uint240 from uint256, reverting on * overflow (when the input is greater than largest uint240). * * Counterpart to Solidity's `uint240` operator. * * Requirements: * * - input must fit into 240 bits * * _Available since v4.7._ */ function toUint240(uint256 value) internal pure returns (uint240) { require(value <= type(uint240).max, "SafeCast: value doesn't fit in 240 bits"); return uint240(value); } /** * @dev Returns the downcasted uint232 from uint256, reverting on * overflow (when the input is greater than largest uint232). * * Counterpart to Solidity's `uint232` operator. * * Requirements: * * - input must fit into 232 bits * * _Available since v4.7._ */ function toUint232(uint256 value) internal pure returns (uint232) { require(value <= type(uint232).max, "SafeCast: value doesn't fit in 232 bits"); return uint232(value); } /** * @dev Returns the downcasted uint224 from uint256, reverting on * overflow (when the input is greater than largest uint224). * * Counterpart to Solidity's `uint224` operator. * * Requirements: * * - input must fit into 224 bits * * _Available since v4.2._ */ function toUint224(uint256 value) internal pure returns (uint224) { require(value <= type(uint224).max, "SafeCast: value doesn't fit in 224 bits"); return uint224(value); } /** * @dev Returns the downcasted uint216 from uint256, reverting on * overflow (when the input is greater than largest uint216). * * Counterpart to Solidity's `uint216` operator. * * Requirements: * * - input must fit into 216 bits * * _Available since v4.7._ */ function toUint216(uint256 value) internal pure returns (uint216) { require(value <= type(uint216).max, "SafeCast: value doesn't fit in 216 bits"); return uint216(value); } /** * @dev Returns the downcasted uint208 from uint256, reverting on * overflow (when the input is greater than largest uint208). * * Counterpart to Solidity's `uint208` operator. * * Requirements: * * - input must fit into 208 bits * * _Available since v4.7._ */ function toUint208(uint256 value) internal pure returns (uint208) { require(value <= type(uint208).max, "SafeCast: value doesn't fit in 208 bits"); return uint208(value); } /** * @dev Returns the downcasted uint200 from uint256, reverting on * overflow (when the input is greater than largest uint200). * * Counterpart to Solidity's `uint200` operator. * * Requirements: * * - input must fit into 200 bits * * _Available since v4.7._ */ function toUint200(uint256 value) internal pure returns (uint200) { require(value <= type(uint200).max, "SafeCast: value doesn't fit in 200 bits"); return uint200(value); } /** * @dev Returns the downcasted uint192 from uint256, reverting on * overflow (when the input is greater than largest uint192). * * Counterpart to Solidity's `uint192` operator. * * Requirements: * * - input must fit into 192 bits * * _Available since v4.7._ */ function toUint192(uint256 value) internal pure returns (uint192) { require(value <= type(uint192).max, "SafeCast: value doesn't fit in 192 bits"); return uint192(value); } /** * @dev Returns the downcasted uint184 from uint256, reverting on * overflow (when the input is greater than largest uint184). * * Counterpart to Solidity's `uint184` operator. * * Requirements: * * - input must fit into 184 bits * * _Available since v4.7._ */ function toUint184(uint256 value) internal pure returns (uint184) { require(value <= type(uint184).max, "SafeCast: value doesn't fit in 184 bits"); return uint184(value); } /** * @dev Returns the downcasted uint176 from uint256, reverting on * overflow (when the input is greater than largest uint176). * * Counterpart to Solidity's `uint176` operator. * * Requirements: * * - input must fit into 176 bits * * _Available since v4.7._ */ function toUint176(uint256 value) internal pure returns (uint176) { require(value <= type(uint176).max, "SafeCast: value doesn't fit in 176 bits"); return uint176(value); } /** * @dev Returns the downcasted uint168 from uint256, reverting on * overflow (when the input is greater than largest uint168). * * Counterpart to Solidity's `uint168` operator. * * Requirements: * * - input must fit into 168 bits * * _Available since v4.7._ */ function toUint168(uint256 value) internal pure returns (uint168) { require(value <= type(uint168).max, "SafeCast: value doesn't fit in 168 bits"); return uint168(value); } /** * @dev Returns the downcasted uint160 from uint256, reverting on * overflow (when the input is greater than largest uint160). * * Counterpart to Solidity's `uint160` operator. * * Requirements: * * - input must fit into 160 bits * * _Available since v4.7._ */ function toUint160(uint256 value) internal pure returns (uint160) { require(value <= type(uint160).max, "SafeCast: value doesn't fit in 160 bits"); return uint160(value); } /** * @dev Returns the downcasted uint152 from uint256, reverting on * overflow (when the input is greater than largest uint152). * * Counterpart to Solidity's `uint152` operator. * * Requirements: * * - input must fit into 152 bits * * _Available since v4.7._ */ function toUint152(uint256 value) internal pure returns (uint152) { require(value <= type(uint152).max, "SafeCast: value doesn't fit in 152 bits"); return uint152(value); } /** * @dev Returns the downcasted uint144 from uint256, reverting on * overflow (when the input is greater than largest uint144). * * Counterpart to Solidity's `uint144` operator. * * Requirements: * * - input must fit into 144 bits * * _Available since v4.7._ */ function toUint144(uint256 value) internal pure returns (uint144) { require(value <= type(uint144).max, "SafeCast: value doesn't fit in 144 bits"); return uint144(value); } /** * @dev Returns the downcasted uint136 from uint256, reverting on * overflow (when the input is greater than largest uint136). * * Counterpart to Solidity's `uint136` operator. * * Requirements: * * - input must fit into 136 bits * * _Available since v4.7._ */ function toUint136(uint256 value) internal pure returns (uint136) { require(value <= type(uint136).max, "SafeCast: value doesn't fit in 136 bits"); return uint136(value); } /** * @dev Returns the downcasted uint128 from uint256, reverting on * overflow (when the input is greater than largest uint128). * * Counterpart to Solidity's `uint128` operator. * * Requirements: * * - input must fit into 128 bits * * _Available since v2.5._ */ function toUint128(uint256 value) internal pure returns (uint128) { require(value <= type(uint128).max, "SafeCast: value doesn't fit in 128 bits"); return uint128(value); } /** * @dev Returns the downcasted uint120 from uint256, reverting on * overflow (when the input is greater than largest uint120). * * Counterpart to Solidity's `uint120` operator. * * Requirements: * * - input must fit into 120 bits * * _Available since v4.7._ */ function toUint120(uint256 value) internal pure returns (uint120) { require(value <= type(uint120).max, "SafeCast: value doesn't fit in 120 bits"); return uint120(value); } /** * @dev Returns the downcasted uint112 from uint256, reverting on * overflow (when the input is greater than largest uint112). * * Counterpart to Solidity's `uint112` operator. * * Requirements: * * - input must fit into 112 bits * * _Available since v4.7._ */ function toUint112(uint256 value) internal pure returns (uint112) { require(value <= type(uint112).max, "SafeCast: value doesn't fit in 112 bits"); return uint112(value); } /** * @dev Returns the downcasted uint104 from uint256, reverting on * overflow (when the input is greater than largest uint104). * * Counterpart to Solidity's `uint104` operator. * * Requirements: * * - input must fit into 104 bits * * _Available since v4.7._ */ function toUint104(uint256 value) internal pure returns (uint104) { require(value <= type(uint104).max, "SafeCast: value doesn't fit in 104 bits"); return uint104(value); } /** * @dev Returns the downcasted uint96 from uint256, reverting on * overflow (when the input is greater than largest uint96). * * Counterpart to Solidity's `uint96` operator. * * Requirements: * * - input must fit into 96 bits * * _Available since v4.2._ */ function toUint96(uint256 value) internal pure returns (uint96) { require(value <= type(uint96).max, "SafeCast: value doesn't fit in 96 bits"); return uint96(value); } /** * @dev Returns the downcasted uint88 from uint256, reverting on * overflow (when the input is greater than largest uint88). * * Counterpart to Solidity's `uint88` operator. * * Requirements: * * - input must fit into 88 bits * * _Available since v4.7._ */ function toUint88(uint256 value) internal pure returns (uint88) { require(value <= type(uint88).max, "SafeCast: value doesn't fit in 88 bits"); return uint88(value); } /** * @dev Returns the downcasted uint80 from uint256, reverting on * overflow (when the input is greater than largest uint80). * * Counterpart to Solidity's `uint80` operator. * * Requirements: * * - input must fit into 80 bits * * _Available since v4.7._ */ function toUint80(uint256 value) internal pure returns (uint80) { require(value <= type(uint80).max, "SafeCast: value doesn't fit in 80 bits"); return uint80(value); } /** * @dev Returns the downcasted uint72 from uint256, reverting on * overflow (when the input is greater than largest uint72). * * Counterpart to Solidity's `uint72` operator. * * Requirements: * * - input must fit into 72 bits * * _Available since v4.7._ */ function toUint72(uint256 value) internal pure returns (uint72) { require(value <= type(uint72).max, "SafeCast: value doesn't fit in 72 bits"); return uint72(value); } /** * @dev Returns the downcasted uint64 from uint256, reverting on * overflow (when the input is greater than largest uint64). * * Counterpart to Solidity's `uint64` operator. * * Requirements: * * - input must fit into 64 bits * * _Available since v2.5._ */ function toUint64(uint256 value) internal pure returns (uint64) { require(value <= type(uint64).max, "SafeCast: value doesn't fit in 64 bits"); return uint64(value); } /** * @dev Returns the downcasted uint56 from uint256, reverting on * overflow (when the input is greater than largest uint56). * * Counterpart to Solidity's `uint56` operator. * * Requirements: * * - input must fit into 56 bits * * _Available since v4.7._ */ function toUint56(uint256 value) internal pure returns (uint56) { require(value <= type(uint56).max, "SafeCast: value doesn't fit in 56 bits"); return uint56(value); } /** * @dev Returns the downcasted uint48 from uint256, reverting on * overflow (when the input is greater than largest uint48). * * Counterpart to Solidity's `uint48` operator. * * Requirements: * * - input must fit into 48 bits * * _Available since v4.7._ */ function toUint48(uint256 value) internal pure returns (uint48) { require(value <= type(uint48).max, "SafeCast: value doesn't fit in 48 bits"); return uint48(value); } /** * @dev Returns the downcasted uint40 from uint256, reverting on * overflow (when the input is greater than largest uint40). * * Counterpart to Solidity's `uint40` operator. * * Requirements: * * - input must fit into 40 bits * * _Available since v4.7._ */ function toUint40(uint256 value) internal pure returns (uint40) { require(value <= type(uint40).max, "SafeCast: value doesn't fit in 40 bits"); return uint40(value); } /** * @dev Returns the downcasted uint32 from uint256, reverting on * overflow (when the input is greater than largest uint32). * * Counterpart to Solidity's `uint32` operator. * * Requirements: * * - input must fit into 32 bits * * _Available since v2.5._ */ function toUint32(uint256 value) internal pure returns (uint32) { require(value <= type(uint32).max, "SafeCast: value doesn't fit in 32 bits"); return uint32(value); } /** * @dev Returns the downcasted uint24 from uint256, reverting on * overflow (when the input is greater than largest uint24). * * Counterpart to Solidity's `uint24` operator. * * Requirements: * * - input must fit into 24 bits * * _Available since v4.7._ */ function toUint24(uint256 value) internal pure returns (uint24) { require(value <= type(uint24).max, "SafeCast: value doesn't fit in 24 bits"); return uint24(value); } /** * @dev Returns the downcasted uint16 from uint256, reverting on * overflow (when the input is greater than largest uint16). * * Counterpart to Solidity's `uint16` operator. * * Requirements: * * - input must fit into 16 bits * * _Available since v2.5._ */ function toUint16(uint256 value) internal pure returns (uint16) { require(value <= type(uint16).max, "SafeCast: value doesn't fit in 16 bits"); return uint16(value); } /** * @dev Returns the downcasted uint8 from uint256, reverting on * overflow (when the input is greater than largest uint8). * * Counterpart to Solidity's `uint8` operator. * * Requirements: * * - input must fit into 8 bits * * _Available since v2.5._ */ function toUint8(uint256 value) internal pure returns (uint8) { require(value <= type(uint8).max, "SafeCast: value doesn't fit in 8 bits"); return uint8(value); } /** * @dev Converts a signed int256 into an unsigned uint256. * * Requirements: * * - input must be greater than or equal to 0. * * _Available since v3.0._ */ function toUint256(int256 value) internal pure returns (uint256) { require(value >= 0, "SafeCast: value must be positive"); return uint256(value); } /** * @dev Returns the downcasted int248 from int256, reverting on * overflow (when the input is less than smallest int248 or * greater than largest int248). * * Counterpart to Solidity's `int248` operator. * * Requirements: * * - input must fit into 248 bits * * _Available since v4.7._ */ function toInt248(int256 value) internal pure returns (int248 downcasted) { downcasted = int248(value); require(downcasted == value, "SafeCast: value doesn't fit in 248 bits"); } /** * @dev Returns the downcasted int240 from int256, reverting on * overflow (when the input is less than smallest int240 or * greater than largest int240). * * Counterpart to Solidity's `int240` operator. * * Requirements: * * - input must fit into 240 bits * * _Available since v4.7._ */ function toInt240(int256 value) internal pure returns (int240 downcasted) { downcasted = int240(value); require(downcasted == value, "SafeCast: value doesn't fit in 240 bits"); } /** * @dev Returns the downcasted int232 from int256, reverting on * overflow (when the input is less than smallest int232 or * greater than largest int232). * * Counterpart to Solidity's `int232` operator. * * Requirements: * * - input must fit into 232 bits * * _Available since v4.7._ */ function toInt232(int256 value) internal pure returns (int232 downcasted) { downcasted = int232(value); require(downcasted == value, "SafeCast: value doesn't fit in 232 bits"); } /** * @dev Returns the downcasted int224 from int256, reverting on * overflow (when the input is less than smallest int224 or * greater than largest int224). * * Counterpart to Solidity's `int224` operator. * * Requirements: * * - input must fit into 224 bits * * _Available since v4.7._ */ function toInt224(int256 value) internal pure returns (int224 downcasted) { downcasted = int224(value); require(downcasted == value, "SafeCast: value doesn't fit in 224 bits"); } /** * @dev Returns the downcasted int216 from int256, reverting on * overflow (when the input is less than smallest int216 or * greater than largest int216). * * Counterpart to Solidity's `int216` operator. * * Requirements: * * - input must fit into 216 bits * * _Available since v4.7._ */ function toInt216(int256 value) internal pure returns (int216 downcasted) { downcasted = int216(value); require(downcasted == value, "SafeCast: value doesn't fit in 216 bits"); } /** * @dev Returns the downcasted int208 from int256, reverting on * overflow (when the input is less than smallest int208 or * greater than largest int208). * * Counterpart to Solidity's `int208` operator. * * Requirements: * * - input must fit into 208 bits * * _Available since v4.7._ */ function toInt208(int256 value) internal pure returns (int208 downcasted) { downcasted = int208(value); require(downcasted == value, "SafeCast: value doesn't fit in 208 bits"); } /** * @dev Returns the downcasted int200 from int256, reverting on * overflow (when the input is less than smallest int200 or * greater than largest int200). * * Counterpart to Solidity's `int200` operator. * * Requirements: * * - input must fit into 200 bits * * _Available since v4.7._ */ function toInt200(int256 value) internal pure returns (int200 downcasted) { downcasted = int200(value); require(downcasted == value, "SafeCast: value doesn't fit in 200 bits"); } /** * @dev Returns the downcasted int192 from int256, reverting on * overflow (when the input is less than smallest int192 or * greater than largest int192). * * Counterpart to Solidity's `int192` operator. * * Requirements: * * - input must fit into 192 bits * * _Available since v4.7._ */ function toInt192(int256 value) internal pure returns (int192 downcasted) { downcasted = int192(value); require(downcasted == value, "SafeCast: value doesn't fit in 192 bits"); } /** * @dev Returns the downcasted int184 from int256, reverting on * overflow (when the input is less than smallest int184 or * greater than largest int184). * * Counterpart to Solidity's `int184` operator. * * Requirements: * * - input must fit into 184 bits * * _Available since v4.7._ */ function toInt184(int256 value) internal pure returns (int184 downcasted) { downcasted = int184(value); require(downcasted == value, "SafeCast: value doesn't fit in 184 bits"); } /** * @dev Returns the downcasted int176 from int256, reverting on * overflow (when the input is less than smallest int176 or * greater than largest int176). * * Counterpart to Solidity's `int176` operator. * * Requirements: * * - input must fit into 176 bits * * _Available since v4.7._ */ function toInt176(int256 value) internal pure returns (int176 downcasted) { downcasted = int176(value); require(downcasted == value, "SafeCast: value doesn't fit in 176 bits"); } /** * @dev Returns the downcasted int168 from int256, reverting on * overflow (when the input is less than smallest int168 or * greater than largest int168). * * Counterpart to Solidity's `int168` operator. * * Requirements: * * - input must fit into 168 bits * * _Available since v4.7._ */ function toInt168(int256 value) internal pure returns (int168 downcasted) { downcasted = int168(value); require(downcasted == value, "SafeCast: value doesn't fit in 168 bits"); } /** * @dev Returns the downcasted int160 from int256, reverting on * overflow (when the input is less than smallest int160 or * greater than largest int160). * * Counterpart to Solidity's `int160` operator. * * Requirements: * * - input must fit into 160 bits * * _Available since v4.7._ */ function toInt160(int256 value) internal pure returns (int160 downcasted) { downcasted = int160(value); require(downcasted == value, "SafeCast: value doesn't fit in 160 bits"); } /** * @dev Returns the downcasted int152 from int256, reverting on * overflow (when the input is less than smallest int152 or * greater than largest int152). * * Counterpart to Solidity's `int152` operator. * * Requirements: * * - input must fit into 152 bits * * _Available since v4.7._ */ function toInt152(int256 value) internal pure returns (int152 downcasted) { downcasted = int152(value); require(downcasted == value, "SafeCast: value doesn't fit in 152 bits"); } /** * @dev Returns the downcasted int144 from int256, reverting on * overflow (when the input is less than smallest int144 or * greater than largest int144). * * Counterpart to Solidity's `int144` operator. * * Requirements: * * - input must fit into 144 bits * * _Available since v4.7._ */ function toInt144(int256 value) internal pure returns (int144 downcasted) { downcasted = int144(value); require(downcasted == value, "SafeCast: value doesn't fit in 144 bits"); } /** * @dev Returns the downcasted int136 from int256, reverting on * overflow (when the input is less than smallest int136 or * greater than largest int136). * * Counterpart to Solidity's `int136` operator. * * Requirements: * * - input must fit into 136 bits * * _Available since v4.7._ */ function toInt136(int256 value) internal pure returns (int136 downcasted) { downcasted = int136(value); require(downcasted == value, "SafeCast: value doesn't fit in 136 bits"); } /** * @dev Returns the downcasted int128 from int256, reverting on * overflow (when the input is less than smallest int128 or * greater than largest int128). * * Counterpart to Solidity's `int128` operator. * * Requirements: * * - input must fit into 128 bits * * _Available since v3.1._ */ function toInt128(int256 value) internal pure returns (int128 downcasted) { downcasted = int128(value); require(downcasted == value, "SafeCast: value doesn't fit in 128 bits"); } /** * @dev Returns the downcasted int120 from int256, reverting on * overflow (when the input is less than smallest int120 or * greater than largest int120). * * Counterpart to Solidity's `int120` operator. * * Requirements: * * - input must fit into 120 bits * * _Available since v4.7._ */ function toInt120(int256 value) internal pure returns (int120 downcasted) { downcasted = int120(value); require(downcasted == value, "SafeCast: value doesn't fit in 120 bits"); } /** * @dev Returns the downcasted int112 from int256, reverting on * overflow (when the input is less than smallest int112 or * greater than largest int112). * * Counterpart to Solidity's `int112` operator. * * Requirements: * * - input must fit into 112 bits * * _Available since v4.7._ */ function toInt112(int256 value) internal pure returns (int112 downcasted) { downcasted = int112(value); require(downcasted == value, "SafeCast: value doesn't fit in 112 bits"); } /** * @dev Returns the downcasted int104 from int256, reverting on * overflow (when the input is less than smallest int104 or * greater than largest int104). * * Counterpart to Solidity's `int104` operator. * * Requirements: * * - input must fit into 104 bits * * _Available since v4.7._ */ function toInt104(int256 value) internal pure returns (int104 downcasted) { downcasted = int104(value); require(downcasted == value, "SafeCast: value doesn't fit in 104 bits"); } /** * @dev Returns the downcasted int96 from int256, reverting on * overflow (when the input is less than smallest int96 or * greater than largest int96). * * Counterpart to Solidity's `int96` operator. * * Requirements: * * - input must fit into 96 bits * * _Available since v4.7._ */ function toInt96(int256 value) internal pure returns (int96 downcasted) { downcasted = int96(value); require(downcasted == value, "SafeCast: value doesn't fit in 96 bits"); } /** * @dev Returns the downcasted int88 from int256, reverting on * overflow (when the input is less than smallest int88 or * greater than largest int88). * * Counterpart to Solidity's `int88` operator. * * Requirements: * * - input must fit into 88 bits * * _Available since v4.7._ */ function toInt88(int256 value) internal pure returns (int88 downcasted) { downcasted = int88(value); require(downcasted == value, "SafeCast: value doesn't fit in 88 bits"); } /** * @dev Returns the downcasted int80 from int256, reverting on * overflow (when the input is less than smallest int80 or * greater than largest int80). * * Counterpart to Solidity's `int80` operator. * * Requirements: * * - input must fit into 80 bits * * _Available since v4.7._ */ function toInt80(int256 value) internal pure returns (int80 downcasted) { downcasted = int80(value); require(downcasted == value, "SafeCast: value doesn't fit in 80 bits"); } /** * @dev Returns the downcasted int72 from int256, reverting on * overflow (when the input is less than smallest int72 or * greater than largest int72). * * Counterpart to Solidity's `int72` operator. * * Requirements: * * - input must fit into 72 bits * * _Available since v4.7._ */ function toInt72(int256 value) internal pure returns (int72 downcasted) { downcasted = int72(value); require(downcasted == value, "SafeCast: value doesn't fit in 72 bits"); } /** * @dev Returns the downcasted int64 from int256, reverting on * overflow (when the input is less than smallest int64 or * greater than largest int64). * * Counterpart to Solidity's `int64` operator. * * Requirements: * * - input must fit into 64 bits * * _Available since v3.1._ */ function toInt64(int256 value) internal pure returns (int64 downcasted) { downcasted = int64(value); require(downcasted == value, "SafeCast: value doesn't fit in 64 bits"); } /** * @dev Returns the downcasted int56 from int256, reverting on * overflow (when the input is less than smallest int56 or * greater than largest int56). * * Counterpart to Solidity's `int56` operator. * * Requirements: * * - input must fit into 56 bits * * _Available since v4.7._ */ function toInt56(int256 value) internal pure returns (int56 downcasted) { downcasted = int56(value); require(downcasted == value, "SafeCast: value doesn't fit in 56 bits"); } /** * @dev Returns the downcasted int48 from int256, reverting on * overflow (when the input is less than smallest int48 or * greater than largest int48). * * Counterpart to Solidity's `int48` operator. * * Requirements: * * - input must fit into 48 bits * * _Available since v4.7._ */ function toInt48(int256 value) internal pure returns (int48 downcasted) { downcasted = int48(value); require(downcasted == value, "SafeCast: value doesn't fit in 48 bits"); } /** * @dev Returns the downcasted int40 from int256, reverting on * overflow (when the input is less than smallest int40 or * greater than largest int40). * * Counterpart to Solidity's `int40` operator. * * Requirements: * * - input must fit into 40 bits * * _Available since v4.7._ */ function toInt40(int256 value) internal pure returns (int40 downcasted) { downcasted = int40(value); require(downcasted == value, "SafeCast: value doesn't fit in 40 bits"); } /** * @dev Returns the downcasted int32 from int256, reverting on * overflow (when the input is less than smallest int32 or * greater than largest int32). * * Counterpart to Solidity's `int32` operator. * * Requirements: * * - input must fit into 32 bits * * _Available since v3.1._ */ function toInt32(int256 value) internal pure returns (int32 downcasted) { downcasted = int32(value); require(downcasted == value, "SafeCast: value doesn't fit in 32 bits"); } /** * @dev Returns the downcasted int24 from int256, reverting on * overflow (when the input is less than smallest int24 or * greater than largest int24). * * Counterpart to Solidity's `int24` operator. * * Requirements: * * - input must fit into 24 bits * * _Available since v4.7._ */ function toInt24(int256 value) internal pure returns (int24 downcasted) { downcasted = int24(value); require(downcasted == value, "SafeCast: value doesn't fit in 24 bits"); } /** * @dev Returns the downcasted int16 from int256, reverting on * overflow (when the input is less than smallest int16 or * greater than largest int16). * * Counterpart to Solidity's `int16` operator. * * Requirements: * * - input must fit into 16 bits * * _Available since v3.1._ */ function toInt16(int256 value) internal pure returns (int16 downcasted) { downcasted = int16(value); require(downcasted == value, "SafeCast: value doesn't fit in 16 bits"); } /** * @dev Returns the downcasted int8 from int256, reverting on * overflow (when the input is less than smallest int8 or * greater than largest int8). * * Counterpart to Solidity's `int8` operator. * * Requirements: * * - input must fit into 8 bits * * _Available since v3.1._ */ function toInt8(int256 value) internal pure returns (int8 downcasted) { downcasted = int8(value); require(downcasted == value, "SafeCast: value doesn't fit in 8 bits"); } /** * @dev Converts an unsigned uint256 into a signed int256. * * Requirements: * * - input must be less than or equal to maxInt256. * * _Available since v3.0._ */ function toInt256(uint256 value) internal pure returns (int256) { // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive require(value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256"); return int256(value); } }
// SPDX-License-Identifier: MIT // 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 SignedMathUpgradeable { /** * @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); } } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address who) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function transfer(address to, uint256 value) external returns (bool); function approve(address spender, uint256 value) external returns (bool); function transferFrom(address from, address to, uint256 value) external returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "./interface/IContractMetadata.sol"; /** * @title Contract Metadata * @notice Thirdweb's `ContractMetadata` is a contract extension for any base contracts. It lets you set a metadata URI * for you contract. * Additionally, `ContractMetadata` is necessary for NFT contracts that want royalties to get distributed on OpenSea. */ abstract contract ContractMetadata is IContractMetadata { /// @dev The sender is not authorized to perform the action error ContractMetadataUnauthorized(); /// @notice Returns the contract metadata URI. string public override contractURI; /** * @notice Lets a contract admin set the URI for contract-level metadata. * @dev Caller should be authorized to setup contractURI, e.g. contract admin. * See {_canSetContractURI}. * Emits {ContractURIUpdated Event}. * * @param _uri keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") */ function setContractURI(string memory _uri) external override { if (!_canSetContractURI()) { revert ContractMetadataUnauthorized(); } _setupContractURI(_uri); } /// @dev Lets a contract admin set the URI for contract-level metadata. function _setupContractURI(string memory _uri) internal { string memory prevURI = contractURI; contractURI = _uri; emit ContractURIUpdated(prevURI, _uri); } /// @dev Returns whether contract metadata can be set in the given execution context. function _canSetContractURI() internal view virtual returns (bool); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "./interface/IDrop.sol"; import "../lib/MerkleProof.sol"; abstract contract Drop is IDrop { /// @dev The sender is not authorized to perform the action error DropUnauthorized(); /// @dev Exceeded the max token total supply error DropExceedMaxSupply(); /// @dev No active claim condition error DropNoActiveCondition(); /// @dev Claim condition invalid currency or price error DropClaimInvalidTokenPrice( address expectedCurrency, uint256 expectedPricePerToken, address actualCurrency, uint256 actualExpectedPricePerToken ); /// @dev Claim condition exceeded limit error DropClaimExceedLimit(uint256 expected, uint256 actual); /// @dev Claim condition exceeded max supply error DropClaimExceedMaxSupply(uint256 expected, uint256 actual); /// @dev Claim condition not started yet error DropClaimNotStarted(uint256 expected, uint256 actual); /*/////////////////////////////////////////////////////////////// State variables //////////////////////////////////////////////////////////////*/ /// @dev The active conditions for claiming tokens. ClaimConditionList public claimCondition; /*/////////////////////////////////////////////////////////////// Drop logic //////////////////////////////////////////////////////////////*/ /// @dev Lets an account claim tokens. function claim( address _receiver, uint256 _quantity, address _currency, uint256 _pricePerToken, AllowlistProof calldata _allowlistProof, bytes memory _data ) public payable virtual override { _beforeClaim(_receiver, _quantity, _currency, _pricePerToken, _allowlistProof, _data); uint256 activeConditionId = getActiveClaimConditionId(); verifyClaim(activeConditionId, _dropMsgSender(), _quantity, _currency, _pricePerToken, _allowlistProof); // Update contract state. claimCondition.conditions[activeConditionId].supplyClaimed += _quantity; claimCondition.supplyClaimedByWallet[activeConditionId][_dropMsgSender()] += _quantity; // If there's a price, collect price. _collectPriceOnClaim(address(0), _quantity, _currency, _pricePerToken); // Mint the relevant tokens to claimer. uint256 startTokenId = _transferTokensOnClaim(_receiver, _quantity); emit TokensClaimed(activeConditionId, _dropMsgSender(), _receiver, startTokenId, _quantity); _afterClaim(_receiver, _quantity, _currency, _pricePerToken, _allowlistProof, _data); } /// @dev Lets a contract admin set claim conditions. function setClaimConditions( ClaimCondition[] calldata _conditions, bool _resetClaimEligibility ) external virtual override { if (!_canSetClaimConditions()) { revert DropUnauthorized(); } uint256 existingStartIndex = claimCondition.currentStartId; uint256 existingPhaseCount = claimCondition.count; /** * The mapping `supplyClaimedByWallet` uses a claim condition's UID as a key. * * If `_resetClaimEligibility == true`, we assign completely new UIDs to the claim * conditions in `_conditions`, effectively resetting the restrictions on claims expressed * by `supplyClaimedByWallet`. */ uint256 newStartIndex = existingStartIndex; if (_resetClaimEligibility) { newStartIndex = existingStartIndex + existingPhaseCount; } claimCondition.count = _conditions.length; claimCondition.currentStartId = newStartIndex; uint256 lastConditionStartTimestamp; for (uint256 i = 0; i < _conditions.length; i++) { require(i == 0 || lastConditionStartTimestamp < _conditions[i].startTimestamp, "ST"); uint256 supplyClaimedAlready = claimCondition.conditions[newStartIndex + i].supplyClaimed; if (supplyClaimedAlready > _conditions[i].maxClaimableSupply) { revert DropExceedMaxSupply(); } claimCondition.conditions[newStartIndex + i] = _conditions[i]; claimCondition.conditions[newStartIndex + i].supplyClaimed = supplyClaimedAlready; lastConditionStartTimestamp = _conditions[i].startTimestamp; } /** * Gas refunds (as much as possible) * * If `_resetClaimEligibility == true`, we assign completely new UIDs to the claim * conditions in `_conditions`. So, we delete claim conditions with UID < `newStartIndex`. * * If `_resetClaimEligibility == false`, and there are more existing claim conditions * than in `_conditions`, we delete the existing claim conditions that don't get replaced * by the conditions in `_conditions`. */ if (_resetClaimEligibility) { for (uint256 i = existingStartIndex; i < newStartIndex; i++) { delete claimCondition.conditions[i]; } } else { if (existingPhaseCount > _conditions.length) { for (uint256 i = _conditions.length; i < existingPhaseCount; i++) { delete claimCondition.conditions[newStartIndex + i]; } } } emit ClaimConditionsUpdated(_conditions, _resetClaimEligibility); } /// @dev Checks a request to claim NFTs against the active claim condition's criteria. function verifyClaim( uint256 _conditionId, address _claimer, uint256 _quantity, address _currency, uint256 _pricePerToken, AllowlistProof calldata _allowlistProof ) public view virtual returns (bool isOverride) { ClaimCondition memory currentClaimPhase = claimCondition.conditions[_conditionId]; uint256 claimLimit = currentClaimPhase.quantityLimitPerWallet; uint256 claimPrice = currentClaimPhase.pricePerToken; address claimCurrency = currentClaimPhase.currency; /* * Here `isOverride` implies that if the merkle proof verification fails, * the claimer would claim through open claim limit instead of allowlisted limit. */ if (currentClaimPhase.merkleRoot != bytes32(0)) { (isOverride, ) = MerkleProof.verify( _allowlistProof.proof, currentClaimPhase.merkleRoot, keccak256( abi.encodePacked( _claimer, _allowlistProof.quantityLimitPerWallet, _allowlistProof.pricePerToken, _allowlistProof.currency ) ) ); } if (isOverride) { claimLimit = _allowlistProof.quantityLimitPerWallet != 0 ? _allowlistProof.quantityLimitPerWallet : claimLimit; claimPrice = _allowlistProof.pricePerToken != type(uint256).max ? _allowlistProof.pricePerToken : claimPrice; claimCurrency = _allowlistProof.pricePerToken != type(uint256).max && _allowlistProof.currency != address(0) ? _allowlistProof.currency : claimCurrency; } uint256 supplyClaimedByWallet = claimCondition.supplyClaimedByWallet[_conditionId][_claimer]; if (_currency != claimCurrency || _pricePerToken != claimPrice) { revert DropClaimInvalidTokenPrice(_currency, _pricePerToken, claimCurrency, claimPrice); } if (_quantity == 0 || (_quantity + supplyClaimedByWallet > claimLimit)) { revert DropClaimExceedLimit(claimLimit, _quantity + supplyClaimedByWallet); } if (currentClaimPhase.supplyClaimed + _quantity > currentClaimPhase.maxClaimableSupply) { revert DropClaimExceedMaxSupply( currentClaimPhase.maxClaimableSupply, currentClaimPhase.supplyClaimed + _quantity ); } if (currentClaimPhase.startTimestamp > block.timestamp) { revert DropClaimNotStarted(currentClaimPhase.startTimestamp, block.timestamp); } } /// @dev At any given moment, returns the uid for the active claim condition. function getActiveClaimConditionId() public view returns (uint256) { for (uint256 i = claimCondition.currentStartId + claimCondition.count; i > claimCondition.currentStartId; i--) { if (block.timestamp >= claimCondition.conditions[i - 1].startTimestamp) { return i - 1; } } revert DropNoActiveCondition(); } /// @dev Returns the claim condition at the given uid. function getClaimConditionById(uint256 _conditionId) external view returns (ClaimCondition memory condition) { condition = claimCondition.conditions[_conditionId]; } /// @dev Returns the supply claimed by claimer for a given conditionId. function getSupplyClaimedByWallet( uint256 _conditionId, address _claimer ) public view returns (uint256 supplyClaimedByWallet) { supplyClaimedByWallet = claimCondition.supplyClaimedByWallet[_conditionId][_claimer]; } /*//////////////////////////////////////////////////////////////////// Optional hooks that can be implemented in the derived contract ///////////////////////////////////////////////////////////////////*/ /// @dev Exposes the ability to override the msg sender. function _dropMsgSender() internal virtual returns (address) { return msg.sender; } /// @dev Runs before every `claim` function call. function _beforeClaim( address _receiver, uint256 _quantity, address _currency, uint256 _pricePerToken, AllowlistProof calldata _allowlistProof, bytes memory _data ) internal virtual {} /// @dev Runs after every `claim` function call. function _afterClaim( address _receiver, uint256 _quantity, address _currency, uint256 _pricePerToken, AllowlistProof calldata _allowlistProof, bytes memory _data ) internal virtual {} /*/////////////////////////////////////////////////////////////// Virtual functions: to be implemented in derived contract //////////////////////////////////////////////////////////////*/ /// @dev Collects and distributes the primary sale value of NFTs being claimed. function _collectPriceOnClaim( address _primarySaleRecipient, uint256 _quantityToClaim, address _currency, uint256 _pricePerToken ) internal virtual; /// @dev Transfers the NFTs being claimed. function _transferTokensOnClaim( address _to, uint256 _quantityBeingClaimed ) internal virtual returns (uint256 startTokenId); /// @dev Determine what wallet can update claim conditions function _canSetClaimConditions() internal view virtual returns (bool); }
// SPDX-License-Identifier: Apache 2.0 pragma solidity ^0.8.0; /// @author thirdweb import "../lib/Address.sol"; import "./interface/IMulticall.sol"; /** * @dev Provides a function to batch together multiple calls in a single external call. * * _Available since v4.1._ */ contract Multicall is IMulticall { /** * @notice Receives and executes a batch of function calls on this contract. * @dev Receives and executes a batch of function calls on this contract. * * @param data The bytes data that makes up the batch of function calls to execute. * @return results The bytes data that makes up the result of the batch of function calls executed. */ function multicall(bytes[] calldata data) external returns (bytes[] memory results) { results = new bytes[](data.length); address sender = _msgSender(); bool isForwarder = msg.sender != sender; for (uint256 i = 0; i < data.length; i++) { if (isForwarder) { results[i] = Address.functionDelegateCall(address(this), abi.encodePacked(data[i], sender)); } else { results[i] = Address.functionDelegateCall(address(this), data[i]); } } return results; } /// @notice Returns the sender in the given execution context. function _msgSender() internal view virtual returns (address) { return msg.sender; } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "./interface/IPermissions.sol"; import "../lib/Strings.sol"; /** * @title Permissions * @dev This contracts provides extending-contracts with role-based access control mechanisms */ contract Permissions is IPermissions { /// @dev The `account` is missing a role. error PermissionsUnauthorizedAccount(address account, bytes32 neededRole); /// @dev The `account` already is a holder of `role` error PermissionsAlreadyGranted(address account, bytes32 role); /// @dev Invalid priviledge to revoke error PermissionsInvalidPermission(address expected, address actual); /// @dev Map from keccak256 hash of a role => a map from address => whether address has role. mapping(bytes32 => mapping(address => bool)) private _hasRole; /// @dev Map from keccak256 hash of a role to role admin. See {getRoleAdmin}. mapping(bytes32 => bytes32) private _getRoleAdmin; /// @dev Default admin role for all roles. Only accounts with this role can grant/revoke other roles. bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /// @dev Modifier that checks if an account has the specified role; reverts otherwise. modifier onlyRole(bytes32 role) { _checkRole(role, msg.sender); _; } /** * @notice Checks whether an account has a particular role. * @dev Returns `true` if `account` has been granted `role`. * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") * @param account Address of the account for which the role is being checked. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _hasRole[role][account]; } /** * @notice Checks whether an account has a particular role; * role restrictions can be swtiched on and off. * * @dev Returns `true` if `account` has been granted `role`. * Role restrictions can be swtiched on and off: * - If address(0) has ROLE, then the ROLE restrictions * don't apply. * - If address(0) does not have ROLE, then the ROLE * restrictions will apply. * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") * @param account Address of the account for which the role is being checked. */ function hasRoleWithSwitch(bytes32 role, address account) public view returns (bool) { if (!_hasRole[role][address(0)]) { return _hasRole[role][account]; } return true; } /** * @notice Returns the admin role that controls the specified role. * @dev See {grantRole} and {revokeRole}. * To change a role's admin, use {_setRoleAdmin}. * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") */ function getRoleAdmin(bytes32 role) external view override returns (bytes32) { return _getRoleAdmin[role]; } /** * @notice Grants a role to an account, if not previously granted. * @dev Caller must have admin role for the `role`. * Emits {RoleGranted Event}. * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") * @param account Address of the account to which the role is being granted. */ function grantRole(bytes32 role, address account) public virtual override { _checkRole(_getRoleAdmin[role], msg.sender); if (_hasRole[role][account]) { revert PermissionsAlreadyGranted(account, role); } _setupRole(role, account); } /** * @notice Revokes role from an account. * @dev Caller must have admin role for the `role`. * Emits {RoleRevoked Event}. * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") * @param account Address of the account from which the role is being revoked. */ function revokeRole(bytes32 role, address account) public virtual override { _checkRole(_getRoleAdmin[role], msg.sender); _revokeRole(role, account); } /** * @notice Revokes role from the account. * @dev Caller must have the `role`, with caller being the same as `account`. * Emits {RoleRevoked Event}. * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") * @param account Address of the account from which the role is being revoked. */ function renounceRole(bytes32 role, address account) public virtual override { if (msg.sender != account) { revert PermissionsInvalidPermission(msg.sender, account); } _revokeRole(role, account); } /// @dev Sets `adminRole` as `role`'s admin role. function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = _getRoleAdmin[role]; _getRoleAdmin[role] = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /// @dev Sets up `role` for `account` function _setupRole(bytes32 role, address account) internal virtual { _hasRole[role][account] = true; emit RoleGranted(role, account, msg.sender); } /// @dev Revokes `role` from `account` function _revokeRole(bytes32 role, address account) internal virtual { _checkRole(role, account); delete _hasRole[role][account]; emit RoleRevoked(role, account, msg.sender); } /// @dev Checks `role` for `account`. Reverts with a message including the required role. function _checkRole(bytes32 role, address account) internal view virtual { if (!_hasRole[role][account]) { revert PermissionsUnauthorizedAccount(account, role); } } /// @dev Checks `role` for `account`. Reverts with a message including the required role. function _checkRoleWithSwitch(bytes32 role, address account) internal view virtual { if (!hasRoleWithSwitch(role, account)) { revert PermissionsUnauthorizedAccount(account, role); } } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "./interface/IPermissionsEnumerable.sol"; import "./Permissions.sol"; /** * @title PermissionsEnumerable * @dev This contracts provides extending-contracts with role-based access control mechanisms. * Also provides interfaces to view all members with a given role, and total count of members. */ contract PermissionsEnumerable is IPermissionsEnumerable, Permissions { /** * @notice A data structure to store data of members for a given role. * * @param index Current index in the list of accounts that have a role. * @param members map from index => address of account that has a role * @param indexOf map from address => index which the account has. */ struct RoleMembers { uint256 index; mapping(uint256 => address) members; mapping(address => uint256) indexOf; } /// @dev map from keccak256 hash of a role to its members' data. See {RoleMembers}. mapping(bytes32 => RoleMembers) private roleMembers; /** * @notice Returns the role-member from a list of members for a role, * at a given index. * @dev Returns `member` who has `role`, at `index` of role-members list. * See struct {RoleMembers}, and mapping {roleMembers} * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") * @param index Index in list of current members for the role. * * @return member Address of account that has `role` */ function getRoleMember(bytes32 role, uint256 index) external view override returns (address member) { uint256 currentIndex = roleMembers[role].index; uint256 check; for (uint256 i = 0; i < currentIndex; i += 1) { if (roleMembers[role].members[i] != address(0)) { if (check == index) { member = roleMembers[role].members[i]; return member; } check += 1; } else if (hasRole(role, address(0)) && i == roleMembers[role].indexOf[address(0)]) { check += 1; } } } /** * @notice Returns total number of accounts that have a role. * @dev Returns `count` of accounts that have `role`. * See struct {RoleMembers}, and mapping {roleMembers} * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") * * @return count Total number of accounts that have `role` */ function getRoleMemberCount(bytes32 role) external view override returns (uint256 count) { uint256 currentIndex = roleMembers[role].index; for (uint256 i = 0; i < currentIndex; i += 1) { if (roleMembers[role].members[i] != address(0)) { count += 1; } } if (hasRole(role, address(0))) { count += 1; } } /// @dev Revokes `role` from `account`, and removes `account` from {roleMembers} /// See {_removeMember} function _revokeRole(bytes32 role, address account) internal override { super._revokeRole(role, account); _removeMember(role, account); } /// @dev Grants `role` to `account`, and adds `account` to {roleMembers} /// See {_addMember} function _setupRole(bytes32 role, address account) internal override { super._setupRole(role, account); _addMember(role, account); } /// @dev adds `account` to {roleMembers}, for `role` function _addMember(bytes32 role, address account) internal { uint256 idx = roleMembers[role].index; roleMembers[role].index += 1; roleMembers[role].members[idx] = account; roleMembers[role].indexOf[account] = idx; } /// @dev removes `account` from {roleMembers}, for `role` function _removeMember(bytes32 role, address account) internal { uint256 idx = roleMembers[role].indexOf[account]; delete roleMembers[role].members[idx]; delete roleMembers[role].indexOf[account]; } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "./interface/IPlatformFee.sol"; /** * @title Platform Fee * @notice Thirdweb's `PlatformFee` is a contract extension to be used with any base contract. It exposes functions for setting and reading * the recipient of platform fee and the platform fee basis points, and lets the inheriting contract perform conditional logic * that uses information about platform fees, if desired. */ abstract contract PlatformFee is IPlatformFee { /// @dev The sender is not authorized to perform the action error PlatformFeeUnauthorized(); /// @dev The recipient is invalid error PlatformFeeInvalidRecipient(address recipient); /// @dev The fee bps exceeded the max value error PlatformFeeExceededMaxFeeBps(uint256 max, uint256 actual); /// @dev The address that receives all platform fees from all sales. address private platformFeeRecipient; /// @dev The % of primary sales collected as platform fees. uint16 private platformFeeBps; /// @dev Fee type variants: percentage fee and flat fee PlatformFeeType private platformFeeType; /// @dev The flat amount collected by the contract as fees on primary sales. uint256 private flatPlatformFee; /// @dev Returns the platform fee recipient and bps. function getPlatformFeeInfo() public view override returns (address, uint16) { return (platformFeeRecipient, uint16(platformFeeBps)); } /// @dev Returns the platform fee bps and recipient. function getFlatPlatformFeeInfo() public view returns (address, uint256) { return (platformFeeRecipient, flatPlatformFee); } /// @dev Returns the platform fee type. function getPlatformFeeType() public view returns (PlatformFeeType) { return platformFeeType; } /** * @notice Updates the platform fee recipient and bps. * @dev Caller should be authorized to set platform fee info. * See {_canSetPlatformFeeInfo}. * Emits {PlatformFeeInfoUpdated Event}; See {_setupPlatformFeeInfo}. * * @param _platformFeeRecipient Address to be set as new platformFeeRecipient. * @param _platformFeeBps Updated platformFeeBps. */ function setPlatformFeeInfo(address _platformFeeRecipient, uint256 _platformFeeBps) external override { if (!_canSetPlatformFeeInfo()) { revert PlatformFeeUnauthorized(); } _setupPlatformFeeInfo(_platformFeeRecipient, _platformFeeBps); } /// @dev Sets the platform fee recipient and bps function _setupPlatformFeeInfo(address _platformFeeRecipient, uint256 _platformFeeBps) internal { if (_platformFeeBps > 10_000) { revert PlatformFeeExceededMaxFeeBps(10_000, _platformFeeBps); } if (_platformFeeRecipient == address(0)) { revert PlatformFeeInvalidRecipient(_platformFeeRecipient); } platformFeeBps = uint16(_platformFeeBps); platformFeeRecipient = _platformFeeRecipient; emit PlatformFeeInfoUpdated(_platformFeeRecipient, _platformFeeBps); } /// @notice Lets a module admin set a flat fee on primary sales. function setFlatPlatformFeeInfo(address _platformFeeRecipient, uint256 _flatFee) external { if (!_canSetPlatformFeeInfo()) { revert PlatformFeeUnauthorized(); } _setupFlatPlatformFeeInfo(_platformFeeRecipient, _flatFee); } /// @dev Sets a flat fee on primary sales. function _setupFlatPlatformFeeInfo(address _platformFeeRecipient, uint256 _flatFee) internal { flatPlatformFee = _flatFee; platformFeeRecipient = _platformFeeRecipient; emit FlatPlatformFeeUpdated(_platformFeeRecipient, _flatFee); } /// @notice Lets a module admin set platform fee type. function setPlatformFeeType(PlatformFeeType _feeType) external { if (!_canSetPlatformFeeInfo()) { revert PlatformFeeUnauthorized(); } _setupPlatformFeeType(_feeType); } /// @dev Sets platform fee type. function _setupPlatformFeeType(PlatformFeeType _feeType) internal { platformFeeType = _feeType; emit PlatformFeeTypeUpdated(_feeType); } /// @dev Returns whether platform fee info can be set in the given execution context. function _canSetPlatformFeeInfo() internal view virtual returns (bool); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "./interface/IPrimarySale.sol"; /** * @title Primary Sale * @notice Thirdweb's `PrimarySale` is a contract extension to be used with any base contract. It exposes functions for setting and reading * the recipient of primary sales, and lets the inheriting contract perform conditional logic that uses information about * primary sales, if desired. */ abstract contract PrimarySale is IPrimarySale { /// @dev The sender is not authorized to perform the action error PrimarySaleUnauthorized(); /// @dev The recipient is invalid error PrimarySaleInvalidRecipient(address recipient); /// @dev The address that receives all primary sales value. address private recipient; /// @dev Returns primary sale recipient address. function primarySaleRecipient() public view override returns (address) { return recipient; } /** * @notice Updates primary sale recipient. * @dev Caller should be authorized to set primary sales info. * See {_canSetPrimarySaleRecipient}. * Emits {PrimarySaleRecipientUpdated Event}; See {_setupPrimarySaleRecipient}. * * @param _saleRecipient Address to be set as new recipient of primary sales. */ function setPrimarySaleRecipient(address _saleRecipient) external override { if (!_canSetPrimarySaleRecipient()) { revert PrimarySaleUnauthorized(); } _setupPrimarySaleRecipient(_saleRecipient); } /// @dev Lets a contract admin set the recipient for all primary sales. function _setupPrimarySaleRecipient(address _saleRecipient) internal { if (_saleRecipient == address(0)) { revert PrimarySaleInvalidRecipient(_saleRecipient); } recipient = _saleRecipient; emit PrimarySaleRecipientUpdated(_saleRecipient); } /// @dev Returns whether primary sale recipient can be set in the given execution context. function _canSetPrimarySaleRecipient() internal view virtual returns (bool); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb /** * The interface `IClaimCondition` is written for thirdweb's 'Drop' contracts, which are distribution mechanisms for tokens. * * A claim condition defines criteria under which accounts can mint tokens. Claim conditions can be overwritten * or added to by the contract admin. At any moment, there is only one active claim condition. */ interface IClaimCondition { /** * @notice The criteria that make up a claim condition. * * @param startTimestamp The unix timestamp after which the claim condition applies. * The same claim condition applies until the `startTimestamp` * of the next claim condition. * * @param maxClaimableSupply The maximum total number of tokens that can be claimed under * the claim condition. * * @param supplyClaimed At any given point, the number of tokens that have been claimed * under the claim condition. * * @param quantityLimitPerWallet The maximum number of tokens that can be claimed by a wallet. * * @param merkleRoot The allowlist of addresses that can claim tokens under the claim * condition. * * @param pricePerToken The price required to pay per token claimed. * * @param currency The currency in which the `pricePerToken` must be paid. * * @param metadata Claim condition metadata. */ struct ClaimCondition { uint256 startTimestamp; uint256 maxClaimableSupply; uint256 supplyClaimed; uint256 quantityLimitPerWallet; bytes32 merkleRoot; uint256 pricePerToken; address currency; string metadata; } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "./IClaimCondition.sol"; /** * The interface `IClaimConditionMultiPhase` is written for thirdweb's 'Drop' contracts, which are distribution mechanisms for tokens. * * An authorized wallet can set a series of claim conditions, ordered by their respective `startTimestamp`. * A claim condition defines criteria under which accounts can mint tokens. Claim conditions can be overwritten * or added to by the contract admin. At any moment, there is only one active claim condition. */ interface IClaimConditionMultiPhase is IClaimCondition { /** * @notice The set of all claim conditions, at any given moment. * Claim Phase ID = [currentStartId, currentStartId + length - 1]; * * @param currentStartId The uid for the first claim condition amongst the current set of * claim conditions. The uid for each next claim condition is one * more than the previous claim condition's uid. * * @param count The total number of phases / claim conditions in the list * of claim conditions. * * @param conditions The claim conditions at a given uid. Claim conditions * are ordered in an ascending order by their `startTimestamp`. * * @param supplyClaimedByWallet Map from a claim condition uid and account to supply claimed by account. */ struct ClaimConditionList { uint256 currentStartId; uint256 count; mapping(uint256 => ClaimCondition) conditions; mapping(uint256 => mapping(address => uint256)) supplyClaimedByWallet; } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb /** * Thirdweb's `ContractMetadata` is a contract extension for any base contracts. It lets you set a metadata URI * for you contract. * * Additionally, `ContractMetadata` is necessary for NFT contracts that want royalties to get distributed on OpenSea. */ interface IContractMetadata { /// @dev Returns the metadata URI of the contract. function contractURI() external view returns (string memory); /** * @dev Sets contract URI for the storefront-level metadata of the contract. * Only module admin can call this function. */ function setContractURI(string calldata _uri) external; /// @dev Emitted when the contract URI is updated. event ContractURIUpdated(string prevURI, string newURI); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "./IClaimConditionMultiPhase.sol"; /** * The interface `IDrop` is written for thirdweb's 'Drop' contracts, which are distribution mechanisms for tokens. * * An authorized wallet can set a series of claim conditions, ordered by their respective `startTimestamp`. * A claim condition defines criteria under which accounts can mint tokens. Claim conditions can be overwritten * or added to by the contract admin. At any moment, there is only one active claim condition. */ interface IDrop is IClaimConditionMultiPhase { /** * @param proof Proof of concerned wallet's inclusion in an allowlist. * @param quantityLimitPerWallet The total quantity of tokens the allowlisted wallet is eligible to claim over time. * @param pricePerToken The price per token the allowlisted wallet must pay to claim tokens. * @param currency The currency in which the allowlisted wallet must pay the price for claiming tokens. */ struct AllowlistProof { bytes32[] proof; uint256 quantityLimitPerWallet; uint256 pricePerToken; address currency; } /// @notice Emitted when tokens are claimed via `claim`. event TokensClaimed( uint256 indexed claimConditionIndex, address indexed claimer, address indexed receiver, uint256 startTokenId, uint256 quantityClaimed ); /// @notice Emitted when the contract's claim conditions are updated. event ClaimConditionsUpdated(ClaimCondition[] claimConditions, bool resetEligibility); /** * @notice Lets an account claim a given quantity of NFTs. * * @param receiver The receiver of the NFTs to claim. * @param quantity The quantity of NFTs to claim. * @param currency The currency in which to pay for the claim. * @param pricePerToken The price per token to pay for the claim. * @param allowlistProof The proof of the claimer's inclusion in the merkle root allowlist * of the claim conditions that apply. * @param data Arbitrary bytes data that can be leveraged in the implementation of this interface. */ function claim( address receiver, uint256 quantity, address currency, uint256 pricePerToken, AllowlistProof calldata allowlistProof, bytes memory data ) external payable; /** * @notice Lets a contract admin (account with `DEFAULT_ADMIN_ROLE`) set claim conditions. * * @param phases Claim conditions in ascending order by `startTimestamp`. * * @param resetClaimEligibility Whether to honor the restrictions applied to wallets who have claimed tokens in the current conditions, * in the new claim conditions being set. * */ function setClaimConditions(ClaimCondition[] calldata phases, bool resetClaimEligibility) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @author thirdweb /** * @dev Provides a function to batch together multiple calls in a single external call. * * _Available since v4.1._ */ interface IMulticall { /** * @dev Receives and executes a batch of function calls on this contract. */ function multicall(bytes[] calldata data) external returns (bytes[] memory results); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IPermissions { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "./IPermissions.sol"; /** * @dev External interface of AccessControlEnumerable declared to support ERC165 detection. */ interface IPermissionsEnumerable is IPermissions { /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * [forum post](https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296) * for more information. */ function getRoleMember(bytes32 role, uint256 index) external view returns (address); /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) external view returns (uint256); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb /** * Thirdweb's `PlatformFee` is a contract extension to be used with any base contract. It exposes functions for setting and reading * the recipient of platform fee and the platform fee basis points, and lets the inheriting contract perform conditional logic * that uses information about platform fees, if desired. */ interface IPlatformFee { /// @dev Fee type variants: percentage fee and flat fee enum PlatformFeeType { Bps, Flat } /// @dev Returns the platform fee bps and recipient. function getPlatformFeeInfo() external view returns (address, uint16); /// @dev Lets a module admin update the fees on primary sales. function setPlatformFeeInfo(address _platformFeeRecipient, uint256 _platformFeeBps) external; /// @dev Emitted when fee on primary sales is updated. event PlatformFeeInfoUpdated(address indexed platformFeeRecipient, uint256 platformFeeBps); /// @dev Emitted when the flat platform fee is updated. event FlatPlatformFeeUpdated(address platformFeeRecipient, uint256 flatFee); /// @dev Emitted when the platform fee type is updated. event PlatformFeeTypeUpdated(PlatformFeeType feeType); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb /** * Thirdweb's `Primary` is a contract extension to be used with any base contract. It exposes functions for setting and reading * the recipient of primary sales, and lets the inheriting contract perform conditional logic that uses information about * primary sales, if desired. */ interface IPrimarySale { /// @dev The adress that receives all primary sales value. function primarySaleRecipient() external view returns (address); /// @dev Lets a module admin set the default recipient of all primary sales. function setPrimarySaleRecipient(address _saleRecipient) external; /// @dev Emitted when a new sale recipient is set. event PrimarySaleRecipientUpdated(address indexed recipient); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (metatx/ERC2771Context.sol) pragma solidity ^0.8.11; import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; /** * @dev Context variant with ERC2771 support. */ abstract contract ERC2771ContextUpgradeable is Initializable, ContextUpgradeable { mapping(address => bool) private _trustedForwarder; function __ERC2771Context_init(address[] memory trustedForwarder) internal onlyInitializing { __Context_init_unchained(); __ERC2771Context_init_unchained(trustedForwarder); } function __ERC2771Context_init_unchained(address[] memory trustedForwarder) internal onlyInitializing { for (uint256 i = 0; i < trustedForwarder.length; i++) { _trustedForwarder[trustedForwarder[i]] = true; } } function isTrustedForwarder(address forwarder) public view virtual returns (bool) { return _trustedForwarder[forwarder]; } function _msgSender() internal view virtual override returns (address sender) { if (isTrustedForwarder(msg.sender)) { // The assembly code is more direct than the Solidity version using `abi.decode`. assembly { sender := shr(96, calldataload(sub(calldatasize(), 20))) } } else { return super._msgSender(); } } function _msgData() internal view virtual override returns (bytes calldata) { if (isTrustedForwarder(msg.sender)) { return msg.data[:msg.data.length - 20]; } else { return super._msgData(); } } uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../../../../../eip/interface/IERC20.sol"; import { Address } from "../../../../../lib/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; interface IWETH { function deposit() external payable; function withdraw(uint256 amount) external; function transfer(address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.1; /// @author thirdweb, OpenZeppelin Contracts (v4.9.0) /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * 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); } } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb // Helper interfaces import { IWETH } from "../infra/interface/IWETH.sol"; import { SafeERC20, IERC20 } from "../external-deps/openzeppelin/token/ERC20/utils/SafeERC20.sol"; library CurrencyTransferLib { using SafeERC20 for IERC20; error CurrencyTransferLibMismatchedValue(uint256 expected, uint256 actual); error CurrencyTransferLibFailedNativeTransfer(address recipient, uint256 value); /// @dev The address interpreted as native token of the chain. address public constant NATIVE_TOKEN = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE; /// @dev Transfers a given amount of currency. function transferCurrency(address _currency, address _from, address _to, uint256 _amount) internal { if (_amount == 0) { return; } if (_currency == NATIVE_TOKEN) { safeTransferNativeToken(_to, _amount); } else { safeTransferERC20(_currency, _from, _to, _amount); } } /// @dev Transfers a given amount of currency. (With native token wrapping) function transferCurrencyWithWrapper( address _currency, address _from, address _to, uint256 _amount, address _nativeTokenWrapper ) internal { if (_amount == 0) { return; } if (_currency == NATIVE_TOKEN) { if (_from == address(this)) { // withdraw from weth then transfer withdrawn native token to recipient IWETH(_nativeTokenWrapper).withdraw(_amount); safeTransferNativeTokenWithWrapper(_to, _amount, _nativeTokenWrapper); } else if (_to == address(this)) { // store native currency in weth if (_amount != msg.value) { revert CurrencyTransferLibMismatchedValue(msg.value, _amount); } IWETH(_nativeTokenWrapper).deposit{ value: _amount }(); } else { safeTransferNativeTokenWithWrapper(_to, _amount, _nativeTokenWrapper); } } else { safeTransferERC20(_currency, _from, _to, _amount); } } /// @dev Transfer `amount` of ERC20 token from `from` to `to`. function safeTransferERC20(address _currency, address _from, address _to, uint256 _amount) internal { if (_from == _to) { return; } if (_from == address(this)) { IERC20(_currency).safeTransfer(_to, _amount); } else { IERC20(_currency).safeTransferFrom(_from, _to, _amount); } } /// @dev Transfers `amount` of native token to `to`. function safeTransferNativeToken(address to, uint256 value) internal { // solhint-disable avoid-low-level-calls // slither-disable-next-line low-level-calls (bool success, ) = to.call{ value: value }(""); if (!success) { revert CurrencyTransferLibFailedNativeTransfer(to, value); } } /// @dev Transfers `amount` of native token to `to`. (With native token wrapping) function safeTransferNativeTokenWithWrapper(address to, uint256 value, address _nativeTokenWrapper) internal { // solhint-disable avoid-low-level-calls // slither-disable-next-line low-level-calls (bool success, ) = to.call{ value: value }(""); if (!success) { IWETH(_nativeTokenWrapper).deposit{ value: value }(); IERC20(_nativeTokenWrapper).safeTransfer(to, value); } } }
// SPDX-License-Identifier: Apache 2.0 pragma solidity ^0.8.0; /// @author OpenZeppelin, thirdweb library MerkleProof { function verify(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool, uint256) { bytes32 computedHash = leaf; uint256 index = 0; for (uint256 i = 0; i < proof.length; i++) { index *= 2; bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); index += 1; } } // Check if the computed hash (root) is equal to the provided root return (computedHash == root, index); } /** * @dev Implementation of keccak256(abi.encode(a, b)) that doesn't allocate or expand memory. */ function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /// @dev Returns the hexadecimal representation of `value`. /// The output is prefixed with "0x", encoded using 2 hexadecimal digits per byte, /// and the alphabets are capitalized conditionally according to /// https://eips.ethereum.org/EIPS/eip-55 function toHexStringChecksummed(address value) internal pure returns (string memory str) { str = toHexString(value); /// @solidity memory-safe-assembly assembly { let mask := shl(6, div(not(0), 255)) // `0b010000000100000000 ...` let o := add(str, 0x22) let hashed := and(keccak256(o, 40), mul(34, mask)) // `0b10001000 ... ` let t := shl(240, 136) // `0b10001000 << 240` for { let i := 0 } 1 { } { mstore(add(i, i), mul(t, byte(i, hashed))) i := add(i, 1) if eq(i, 20) { break } } mstore(o, xor(mload(o), shr(1, and(mload(0x00), and(mload(o), mask))))) o := add(o, 0x20) mstore(o, xor(mload(o), shr(1, and(mload(0x20), and(mload(o), mask))))) } } /// @dev Returns the hexadecimal representation of `value`. /// The output is prefixed with "0x" and encoded using 2 hexadecimal digits per byte. function toHexString(address value) internal pure returns (string memory str) { str = toHexStringNoPrefix(value); /// @solidity memory-safe-assembly assembly { let strLength := add(mload(str), 2) // Compute the length. mstore(str, 0x3078) // Write the "0x" prefix. str := sub(str, 2) // Move the pointer. mstore(str, strLength) // Write the length. } } /// @dev Returns the hexadecimal representation of `value`. /// The output is encoded using 2 hexadecimal digits per byte. function toHexStringNoPrefix(address value) internal pure returns (string memory str) { /// @solidity memory-safe-assembly assembly { str := mload(0x40) // Allocate the memory. // We need 0x20 bytes for the trailing zeros padding, 0x20 bytes for the length, // 0x02 bytes for the prefix, and 0x28 bytes for the digits. // The next multiple of 0x20 above (0x20 + 0x20 + 0x02 + 0x28) is 0x80. mstore(0x40, add(str, 0x80)) // Store "0123456789abcdef" in scratch space. mstore(0x0f, 0x30313233343536373839616263646566) str := add(str, 2) mstore(str, 40) let o := add(str, 0x20) mstore(add(o, 40), 0) value := shl(96, value) // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. for { let i := 0 } 1 { } { let p := add(o, add(i, i)) let temp := byte(i, value) mstore8(add(p, 1), mload(and(temp, 15))) mstore8(p, mload(shr(4, temp))) i := add(i, 1) if eq(i, 20) { break } } } } /// @dev Returns the hex encoded string from the raw bytes. /// The output is encoded using 2 hexadecimal digits per byte. function toHexString(bytes memory raw) internal pure returns (string memory str) { str = toHexStringNoPrefix(raw); /// @solidity memory-safe-assembly assembly { let strLength := add(mload(str), 2) // Compute the length. mstore(str, 0x3078) // Write the "0x" prefix. str := sub(str, 2) // Move the pointer. mstore(str, strLength) // Write the length. } } /// @dev Returns the hex encoded string from the raw bytes. /// The output is encoded using 2 hexadecimal digits per byte. function toHexStringNoPrefix(bytes memory raw) internal pure returns (string memory str) { /// @solidity memory-safe-assembly assembly { let length := mload(raw) str := add(mload(0x40), 2) // Skip 2 bytes for the optional prefix. mstore(str, add(length, length)) // Store the length of the output. // Store "0123456789abcdef" in scratch space. mstore(0x0f, 0x30313233343536373839616263646566) let o := add(str, 0x20) let end := add(raw, length) for { } iszero(eq(raw, end)) { } { raw := add(raw, 1) mstore8(add(o, 1), mload(and(mload(raw), 15))) mstore8(o, mload(and(shr(4, mload(raw)), 15))) o := add(o, 2) } mstore(o, 0) // Zeroize the slot after the string. mstore(0x40, add(o, 0x20)) // Allocate the memory. } } }
{ "compilationTarget": { "contracts/prebuilts/drop/DropERC20.sol": "DropERC20" }, "evmVersion": "paris", "libraries": {}, "metadata": { "bytecodeHash": "ipfs" }, "optimizer": { "enabled": true, "runs": 200 }, "remappings": [], "outputSelection": { "*": { "*": [ "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ContractMetadataUnauthorized","type":"error"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"CurrencyTransferLibFailedNativeTransfer","type":"error"},{"inputs":[{"internalType":"uint256","name":"expected","type":"uint256"},{"internalType":"uint256","name":"actual","type":"uint256"}],"name":"DropClaimExceedLimit","type":"error"},{"inputs":[{"internalType":"uint256","name":"expected","type":"uint256"},{"internalType":"uint256","name":"actual","type":"uint256"}],"name":"DropClaimExceedMaxSupply","type":"error"},{"inputs":[{"internalType":"address","name":"expectedCurrency","type":"address"},{"internalType":"uint256","name":"expectedPricePerToken","type":"uint256"},{"internalType":"address","name":"actualCurrency","type":"address"},{"internalType":"uint256","name":"actualExpectedPricePerToken","type":"uint256"}],"name":"DropClaimInvalidTokenPrice","type":"error"},{"inputs":[{"internalType":"uint256","name":"expected","type":"uint256"},{"internalType":"uint256","name":"actual","type":"uint256"}],"name":"DropClaimNotStarted","type":"error"},{"inputs":[],"name":"DropExceedMaxSupply","type":"error"},{"inputs":[],"name":"DropNoActiveCondition","type":"error"},{"inputs":[],"name":"DropUnauthorized","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"PermissionsAlreadyGranted","type":"error"},{"inputs":[{"internalType":"address","name":"expected","type":"address"},{"internalType":"address","name":"actual","type":"address"}],"name":"PermissionsInvalidPermission","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"PermissionsUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"},{"internalType":"uint256","name":"actual","type":"uint256"}],"name":"PlatformFeeExceededMaxFeeBps","type":"error"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"PlatformFeeInvalidRecipient","type":"error"},{"inputs":[],"name":"PlatformFeeUnauthorized","type":"error"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"PrimarySaleInvalidRecipient","type":"error"},{"inputs":[],"name":"PrimarySaleUnauthorized","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"components":[{"internalType":"uint256","name":"startTimestamp","type":"uint256"},{"internalType":"uint256","name":"maxClaimableSupply","type":"uint256"},{"internalType":"uint256","name":"supplyClaimed","type":"uint256"},{"internalType":"uint256","name":"quantityLimitPerWallet","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"pricePerToken","type":"uint256"},{"internalType":"address","name":"currency","type":"address"},{"internalType":"string","name":"metadata","type":"string"}],"indexed":false,"internalType":"struct IClaimCondition.ClaimCondition[]","name":"claimConditions","type":"tuple[]"},{"indexed":false,"internalType":"bool","name":"resetEligibility","type":"bool"}],"name":"ClaimConditionsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"prevURI","type":"string"},{"indexed":false,"internalType":"string","name":"newURI","type":"string"}],"name":"ContractURIUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"platformFeeRecipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"flatFee","type":"uint256"}],"name":"FlatPlatformFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTotalSupply","type":"uint256"}],"name":"MaxTotalSupplyUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"platformFeeRecipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"platformFeeBps","type":"uint256"}],"name":"PlatformFeeInfoUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum IPlatformFee.PlatformFeeType","name":"feeType","type":"uint8"}],"name":"PlatformFeeTypeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"recipient","type":"address"}],"name":"PrimarySaleRecipientUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"claimConditionIndex","type":"uint256"},{"indexed":true,"internalType":"address","name":"claimer","type":"address"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"startTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"quantityClaimed","type":"uint256"}],"name":"TokensClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CLOCK_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_FEE_RECIPIENT","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint32","name":"pos","type":"uint32"}],"name":"checkpoints","outputs":[{"components":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint224","name":"votes","type":"uint224"}],"internalType":"struct ERC20VotesUpgradeable.Checkpoint","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"address","name":"_currency","type":"address"},{"internalType":"uint256","name":"_pricePerToken","type":"uint256"},{"components":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"quantityLimitPerWallet","type":"uint256"},{"internalType":"uint256","name":"pricePerToken","type":"uint256"},{"internalType":"address","name":"currency","type":"address"}],"internalType":"struct IDrop.AllowlistProof","name":"_allowlistProof","type":"tuple"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"claimCondition","outputs":[{"internalType":"uint256","name":"currentStartId","type":"uint256"},{"internalType":"uint256","name":"count","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clock","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractType","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractVersion","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getActiveClaimConditionId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_conditionId","type":"uint256"}],"name":"getClaimConditionById","outputs":[{"components":[{"internalType":"uint256","name":"startTimestamp","type":"uint256"},{"internalType":"uint256","name":"maxClaimableSupply","type":"uint256"},{"internalType":"uint256","name":"supplyClaimed","type":"uint256"},{"internalType":"uint256","name":"quantityLimitPerWallet","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"pricePerToken","type":"uint256"},{"internalType":"address","name":"currency","type":"address"},{"internalType":"string","name":"metadata","type":"string"}],"internalType":"struct IClaimCondition.ClaimCondition","name":"condition","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFlatPlatformFeeInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getPastTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getPastVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPlatformFeeInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPlatformFeeType","outputs":[{"internalType":"enum IPlatformFee.PlatformFeeType","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"member","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_conditionId","type":"uint256"},{"internalType":"address","name":"_claimer","type":"address"}],"name":"getSupplyClaimedByWallet","outputs":[{"internalType":"uint256","name":"supplyClaimedByWallet","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRoleWithSwitch","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_defaultAdmin","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_contractURI","type":"string"},{"internalType":"address[]","name":"_trustedForwarders","type":"address[]"},{"internalType":"address","name":"_saleRecipient","type":"address"},{"internalType":"address","name":"_platformFeeRecipient","type":"address"},{"internalType":"uint128","name":"_platformFeeBps","type":"uint128"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"forwarder","type":"address"}],"name":"isTrustedForwarder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"multicall","outputs":[{"internalType":"bytes[]","name":"results","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"primarySaleRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"startTimestamp","type":"uint256"},{"internalType":"uint256","name":"maxClaimableSupply","type":"uint256"},{"internalType":"uint256","name":"supplyClaimed","type":"uint256"},{"internalType":"uint256","name":"quantityLimitPerWallet","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"pricePerToken","type":"uint256"},{"internalType":"address","name":"currency","type":"address"},{"internalType":"string","name":"metadata","type":"string"}],"internalType":"struct IClaimCondition.ClaimCondition[]","name":"_conditions","type":"tuple[]"},{"internalType":"bool","name":"_resetClaimEligibility","type":"bool"}],"name":"setClaimConditions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_platformFeeRecipient","type":"address"},{"internalType":"uint256","name":"_flatFee","type":"uint256"}],"name":"setFlatPlatformFeeInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTotalSupply","type":"uint256"}],"name":"setMaxTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_platformFeeRecipient","type":"address"},{"internalType":"uint256","name":"_platformFeeBps","type":"uint256"}],"name":"setPlatformFeeInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum IPlatformFee.PlatformFeeType","name":"_feeType","type":"uint8"}],"name":"setPlatformFeeType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_saleRecipient","type":"address"}],"name":"setPrimarySaleRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_conditionId","type":"uint256"},{"internalType":"address","name":"_claimer","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"address","name":"_currency","type":"address"},{"internalType":"uint256","name":"_pricePerToken","type":"uint256"},{"components":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"quantityLimitPerWallet","type":"uint256"},{"internalType":"uint256","name":"pricePerToken","type":"uint256"},{"internalType":"address","name":"currency","type":"address"}],"internalType":"struct IDrop.AllowlistProof","name":"_allowlistProof","type":"tuple"}],"name":"verifyClaim","outputs":[{"internalType":"bool","name":"isOverride","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
9c4d535b000000000000000000000000000000000000000000000000000000000000000001000cddb13179d3f01e17e8bbfe58e64ff821b59893e977f9b1bfe8a937cb3000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x000400000000000200180000000000020000000003010019000000600430027000000bbf034001970003000000310355000200000001035500000bbf0040019d0000008004000039000000400040043f00000001002001900000002d0000c13d000000040030008c0000004e0000413d000000000201043b000000e00220027000000bca0020009c000000730000a13d00000bcb0020009c000000840000a13d00000bcc0020009c000001000000213d00000bd80020009c000002610000213d00000bde0020009c000005470000213d00000be10020009c000008390000613d00000be20020009c0000004e0000c13d000000440030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000002402100370000000000202043b001500000002001d00000c260020009c0000004e0000213d0000000401100370000000000101043b000000000010043f0000000b01000039000005940000013d0000000001000416000000000001004b0000004e0000c13d0000000003000415000000170330008a0000000503300210000000000100041a0000ff0002100190000000500000c13d0000000003000415000000160330008a0000000503300210000000ff00100190000000500000c13d00000bc60110019700000001011001bf000000000010041b0000000103000039000000000034043500000bbf0040009c00000bbf040080410000004001400210000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000112019f00000bc7011001c70000800d0200003900000bc8040000412ef62ee70000040f0000000100200190000000ec0000c13d000000000100001900002ef800010430001500000003001d001300000002001d001400000001001d00000bc001000041000000000010044300000000010004100000000400100443000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000bc1011001c700008002020000392ef62eec0000040f0000000100200190000021c20000613d000000000101043b000000000001004b000000f10000c13d0000001402000029000000ff0120018f000000010010008c00000015010000290000000501100270000000000100003f000000010100603f000000f40000c13d00000cc50120019700000001011001bf000000000010041b000000130000006b000000ec0000c13d000000400400043d00000014010000290000003b0000013d00000bf80020009c000000ad0000213d00000c0e0020009c000001b20000a13d00000c0f0020009c000002b40000213d00000c150020009c000005bd0000213d00000c180020009c000009c20000613d00000c190020009c0000004e0000c13d0000000001000416000000000001004b0000004e0000c13d0000016e0100003900000b4b0000013d00000be30020009c000001230000a13d00000be40020009c000002110000213d00000bea0020009c000005160000213d00000bed0020009c0000071c0000613d00000bee0020009c0000004e0000c13d0000000001000416000000000001004b0000004e0000c13d0000007403000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f00000001005001900000094e0000c13d000000800010043f000000000004004b00000bc60000613d000000000030043f000000000001004b000000000200001900000bcb0000613d00000c58030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000000a50000413d00000bcb0000013d00000bf90020009c000001f30000a13d00000bfa0020009c000002cb0000213d00000c000020009c000005c80000213d00000c030020009c000009cc0000613d00000c040020009c0000004e0000c13d000000240030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000401100370000000000101043b001500000001001d00000c260010009c0000004e0000213d0000000001000411000000000010043f0000003e01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a000000ff001001900000000001000411000000d80000613d000000140100008a00000000011000310000000201100367000000000101043b000000600110027000000c2601100197000000000010043f00000c4901000041000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a000000ff0010019000000d510000c13d000000400100043d00000c9302000041000009020000013d00000020010000390000010000100443000001200000044300000bc90100004100002ef70001042e00000015010000290000000501100270000000000100003f00000bc201000041000000800010043f0000002001000039000000840010043f0000002e01000039000000a40010043f00000bc301000041000000c40010043f00000bc401000041000000e40010043f00000bc50100004100002ef80001043000000bcd0020009c000002a40000213d00000bd30020009c000005800000213d00000bd60020009c000008940000613d00000bd70020009c0000004e0000c13d000000440030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000002402100370000000000202043b001500000002001d00000c260020009c0000004e0000213d0000000401100370000000000101043b001400000001001d000000000010043f0000000601000039000000200010043f000000400200003900000000010000192ef62ebb0000040f000000000101041a00000000020004112ef628270000040f000000140100002900000015020000292ef6285a0000040f000000000100001900002ef70001042e00000bef0020009c000003230000a13d00000bf00020009c000005360000213d00000bf30020009c000008000000613d00000bf40020009c0000004e0000c13d000000440030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000002402100370000000000202043b001100000002001d0000000401100370000000000101043b001400000001001d000000000010043f0000000701000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a001200000001001d000000000001004b0000000001000019000009d70000613d001500000000001d001300000000001d000001560000013d0000001302000029000000110020006c000000000102001900000ee00000613d001300010010003e00000c060000613d00000015010000290000000101100039001500000001001d000000120010006c00000dbd0000813d0000001401000029000000000010043f0000000701000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b0000001502000029000000000020043f0000000101100039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a00000c26001001980000014b0000c13d0000001401000029000000000010043f0000000501000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000000043f000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a000000ff00100190000001510000613d0000001401000029000000000010043f0000000701000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000000043f0000000201100039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a000000150010006b00000013010000290000014f0000613d000001510000013d00000c1a0020009c0000038d0000a13d00000c1b0020009c000006bd0000213d00000c1e0020009c00000b470000613d00000c1f0020009c0000004e0000c13d000000440030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000401100370000000000101043b001500000001001d00000c260010009c0000004e0000213d0000000001000411000000000010043f0000003e01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a000000ff001001900000000001000411000001db0000613d000000140100008a00000000011000310000000201100367000000000101043b000000600110027000000c2601100197000000000010043f00000c4901000041000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a000000ff00100190000009000000613d00000024010000390000000201100367000000000201043b00000015010000292ef626610000040f000000000100001900002ef70001042e00000c050020009c000003a60000a13d00000c060020009c000006de0000213d00000c090020009c00000b4f0000613d00000c0a0020009c0000004e0000c13d000000240030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000401100370000000000101043b00000c260010009c0000004e0000213d000000000010043f0000003e01000039000000200010043f000000400200003900000000010000192ef62ebb0000040f000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f00000c230100004100002ef70001042e00000be50020009c000005210000213d00000be80020009c000007810000613d00000be90020009c0000004e0000c13d000000440030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000002402100370000000000202043b001500000002001d00000c260020009c0000004e0000213d0000000401100370000000000101043b001400000001001d000000000010043f0000000501000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000000043f000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a000000ff0010019000000d000000c13d0000001401000029000000000010043f0000000501000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b0000001502000029000000000020043f000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a000000ff001001900000000001000039000000010100c039000000010110018f000009d70000013d00000bd90020009c0000059c0000213d00000bdc0020009c000008c00000613d00000bdd0020009c0000004e0000c13d000000240030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000401100370000000000101043b001300000001001d000000000010043f0000000701000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a001200000001001d000000000001004b001400000000001d00000bdc0000c13d0000001301000029000000000010043f0000000501000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000000043f000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a000000ff00100190000002a10000613d0000001401000029001400010010003e00000c060000613d000000400100043d0000001402000029000005e00000013d00000bce0020009c000005aa0000213d00000bd10020009c000008c50000613d00000bd20020009c0000004e0000c13d0000000001000416000000000001004b0000004e0000c13d2ef623890000040f0000002002000039000000400300043d001500000003001d00000000022304362ef623450000040f00000bd20000013d00000c100020009c000005e60000213d00000c130020009c000009d30000613d00000c140020009c0000004e0000c13d000000440030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000002402100370000000000202043b00000c260020009c0000004e0000213d0000000003000411000000000023004b00000c0c0000c13d0000000401100370000000000101043b2ef6285a0000040f000000000100001900002ef70001042e00000bfb0020009c0000066a0000213d00000bfe0020009c000009de0000613d00000bff0020009c0000004e0000c13d000000440030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000402100370000000000202043b001100000002001d00000c320020009c0000004e0000213d00000011020000290000002302200039000000000032004b0000004e0000813d00000011020000290000000402200039000000000221034f000000000202043b000a00000002001d00000c320020009c0000004e0000213d000000110200002900000024042000390000000a020000290000000502200210001500000004001d000700000002001d0000000002420019000000000032004b0000004e0000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039000600000002001d000000000012004b0000004e0000c13d0000000001000411001400000001001d000000000010043f0000003e01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a000000ff001001900000030e0000613d000000140100008a00000000011000310000000201100367000000000101043b0014006000100278000000140100002900000c2601100197000000000010043f00000c4901000041000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a000000ff00100190000011f10000c13d000000400100043d00000c9202000041000009020000013d00000bf50020009c000006f10000613d00000bf60020009c000006fd0000613d00000bf70020009c0000004e0000c13d000000c40030008c0000004e0000413d0000000402100370000000000202043b001200000002001d00000c260020009c0000004e0000213d0000004402100370000000000202043b001100000002001d00000c260020009c0000004e0000213d0000008402100370000000000202043b001000000002001d00000c320020009c0000004e0000213d0000001002000029000f00040020003d0000000f0230006a00000c630020009c0000004e0000213d000000800020008c0000004e0000413d000000a402100370000000000402043b00000c320040009c0000004e0000213d0000002302400039000000000032004b0000004e0000813d0000000405400039000000000251034f000000000202043b00000c320020009c00000a5a0000213d0000001f0620003900000cc6066001970000003f0660003900000cc60660019700000c4e0060009c00000a5a0000213d00000024044000390000008006600039000000400060043f000000800020043f0000000004420019000000000034004b0000004e0000213d0000002003500039000000000431034f00000cc6052001980000001f0620018f000000a003500039000003660000613d000000a007000039000000000804034f000000008908043c0000000007970436000000000037004b000003620000c13d000000000006004b000003730000613d000000000454034f0000000305600210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000430435000000a00220003900000000000204350000002402100370000000000202043b000d00000002001d0000006401100370000000000101043b000c00000001001d0000016e01000039000000000101041a000000000001004b000014000000613d0000007202000039000000000202041a0000000d0020002a00000c060000413d0000000d02200029000000000012004b000014000000a13d000000400100043d000000440210003900000c640300004100000000003204350000002402100039000000180300003900000ed50000013d00000c200020009c000009410000613d00000c210020009c000009870000613d00000c220020009c0000004e0000c13d000000440030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000402100370000000000202043b001500000002001d00000c260020009c0000004e0000213d0000002401100370000000000101043b001400000001001d2ef62a650000040f000000150200002900000014030000292ef6260a0000040f0000000101000039000009d70000013d00000c0b0020009c000009540000613d00000c0c0020009c0000098c0000613d00000c0d0020009c0000004e0000c13d000001040030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000402100370000000000202043b001500000002001d00000c260020009c0000004e0000213d0000002402100370000000000402043b00000c320040009c0000004e0000213d0000002302400039000000000032004b0000004e0000813d0000000405400039000000000251034f000000000202043b00000c5e0020009c00000a5a0000813d0000001f0620003900000cc6066001970000003f0660003900000cc60660019700000c4e0060009c00000a5a0000213d00000024044000390000008006600039000000400060043f000000800020043f0000000004420019000000000034004b0000004e0000213d0000002004500039000000000541034f00000cc6062001980000001f0720018f000000a004600039000003db0000613d000000a008000039000000000905034f000000009a09043c0000000008a80436000000000048004b000003d70000c13d000000000007004b000003e80000613d000000000565034f0000000306700210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000a00220003900000000000204350000004402100370000000000402043b00000c320040009c0000004e0000213d0000002302400039000000000032004b0000004e0000813d0000000405400039000000000251034f000000000202043b00000c320020009c00000a5a0000213d0000001f0620003900000cc6066001970000003f0660003900000cc606600197000000400700043d0000000006670019001100000007001d000000000076004b0000000007000039000000010700403900000c320060009c00000a5a0000213d000000010070019000000a5a0000c13d0000002404400039000000400060043f00000011060000290000000006260436001000000006001d0000000004420019000000000034004b0000004e0000213d0000002004500039000000000541034f00000cc6062001980000001f0720018f0000001004600029000004180000613d000000000805034f0000001009000029000000008a08043c0000000009a90436000000000049004b000004140000c13d000000000007004b000004250000613d000000000565034f0000000306700210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000100220002900000000000204350000006402100370000000000402043b00000c320040009c0000004e0000213d0000002302400039000000000032004b0000004e0000813d0000000405400039000000000251034f000000000202043b00000c320020009c00000a5a0000213d0000001f0620003900000cc6066001970000003f0660003900000cc606600197000000400700043d0000000006670019000f00000007001d000000000076004b0000000007000039000000010700403900000c320060009c00000a5a0000213d000000010070019000000a5a0000c13d0000002404400039000000400060043f0000000f060000290000000006260436000e00000006001d0000000004420019000000000034004b0000004e0000213d0000002004500039000000000541034f00000cc6062001980000001f0720018f0000000e04600029000004550000613d000000000805034f0000000e09000029000000008a08043c0000000009a90436000000000049004b000004510000c13d000000000007004b000004620000613d000000000565034f0000000306700210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000e0220002900000000000204350000008402100370000000000202043b00000c320020009c0000004e0000213d0000002304200039000000000034004b0000004e0000813d0000000404200039000000000441034f000000000404043b00000c320040009c00000a5a0000213d00000005054002100000003f0650003900000c4d06600197000000400700043d0000000006670019001300000007001d000000000076004b0000000007000039000000010700403900000c320060009c00000a5a0000213d000000010070019000000a5a0000c13d000000400060043f00000013060000290000000006460436001200000006001d00000024022000390000000005250019000000000035004b0000004e0000213d000000000004004b000004910000613d0000001303000029000000000421034f000000000404043b00000c260040009c0000004e0000213d000000200330003900000000004304350000002002200039000000000052004b000004880000413d000000a402100370000000000202043b000d00000002001d00000c260020009c0000004e0000213d000000c402100370000000000202043b000c00000002001d00000c260020009c0000004e0000213d000000e401100370000000000101043b000b00000001001d00000c980010009c0000004e0000213d000000000200041a0000ffff00200190001400000002001d000004b90000613d00000bc001000041000000000010044300000000010004100000000400100443000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000bc1011001c700008002020000392ef62eec0000040f0000000100200190000021c20000613d0000001402000029000000ff0220018f000000000101043b000000010020008c000019890000c13d000000000001004b000019890000c13d000000000200041a00000014010000290000ff000010019000000cc50120019700000001011001bf000000000010041b0000194f0000c13d00000cc70110019700000100011001bf000000000010041b00000013020000290000000002020433000000000002004b000004e40000613d0000000002000019001400000002001d00000005012002100000001201100029000000000101043300000c2601100197000000000010043f0000003e01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000201041a00000cc50220019700000001022001bf000000000021041b0000001402000029000000010220003900000013010000290000000001010433000000000012004b000004c70000413d000000000100041a000000400300043d0000ff0000100190000019800000613d00000c760030009c00000a5a0000213d0000004001300039000000400010043f0000000101000039000000000413043600000c99020000410000000000240435000000800200043d00000c320020009c00000a5a0000213d000000d605000039000000000705041a000000010070019000000001067002700000007f0660618f0000001f0060008c00000000080000390000000108002039000000000787013f00000001007001900000094e0000c13d000000200060008c0000050e0000413d000000000050043f0000001f07200039000000050770027000000c9a0770009a000000200020008c00000c31070040410000001f06600039000000050660027000000c9a0660009a000000000067004b0000050e0000813d000000000007041b0000000107700039000000000067004b0000050a0000413d0000001f0020008c00001a670000a13d000000000050043f00000cc60820019800001a720000c13d000000200700003900000c310600004100001a7e0000013d00000beb0020009c000007870000613d00000bec0020009c0000004e0000c13d0000000001000416000000000001004b0000004e0000c13d0000000401000039000000800010043f00000c230100004100002ef70001042e00000be60020009c000007b30000613d00000be70020009c0000004e0000c13d000000440030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000402100370000000000202043b001500000002001d00000c260020009c0000004e0000213d0000002401100370000000000101043b001400000001001d2ef62a650000040f00000015020000290000001403000029000006db0000013d00000bf10020009c000008200000613d00000bf20020009c0000004e0000c13d0000000001000416000000000001004b0000004e0000c13d0000800b0100003900000004030000390000000004000415000000180440008a000000050440021000000c5b020000412ef62ed00000040f001500000001001d2ef62a4e0000040f000005de0000013d00000bdf0020009c000008ce0000613d00000be00020009c0000004e0000c13d000000c40030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000402100370000000000202043b001500000002001d00000c260020009c0000004e0000213d0000004402100370000000000202043b001400000002001d0000002402100370000000000202043b001300000002001d0000006401100370000000000101043b001200000001001d000000ff0010008c0000004e0000213d00000c2b010000410000000000100443000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2c011001c70000800b020000392ef62eec0000040f0000000100200190000021c20000613d000000400200043d000000000101043b0000001403000029000000000031004b00000d030000a13d000000440120003900000c4803000041000000000031043500000024012000390000001d03000039000000000031043500000bc201000041000000000012043500000004012000390000002003000039000000000031043500000bbf0020009c00000bbf02008041000000400120021000000c3e011001c700002ef80001043000000bd40020009c000009080000613d00000bd50020009c0000004e0000c13d000000440030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000402100370000000000202043b00000c260020009c0000004e0000213d0000002401100370000000000101043b001500000001001d00000c260010009c0000004e0000213d000000000020043f0000007101000039000000200010043f000000400200003900000000010000192ef62ebb0000040f00000015020000292ef623c30000040f000000000101041a000009d70000013d00000bda0020009c000009130000613d00000bdb0020009c0000004e0000c13d0000000001000416000000000001004b0000004e0000c13d2ef625f10000040f00000c2601100197000000800010043f0000ffff0120018f000000a00010043f00000c290100004100002ef70001042e00000bcf0020009c0000091a0000613d00000bd00020009c0000004e0000c13d0000000001000416000000000001004b0000004e0000c13d0000000201000039000000000101041a000000b001100270000000ff0110018f000000020010008c00000ba80000413d00000c2401000041000000000010043f0000002101000039000000040010043f00000c250100004100002ef80001043000000c160020009c000009ee0000613d00000c170020009c0000004e0000c13d0000000001000416000000000001004b0000004e0000c13d0000001201000039000000800010043f00000c230100004100002ef70001042e00000c010020009c00000a380000613d00000c020020009c0000004e0000c13d000000240030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000401100370000000000101043b00000c260010009c0000004e0000213d000000000010043f0000013c01000039000000200010043f000000400200003900000000010000192ef62ebb0000040f000000000101041a001500000001001d2ef62a370000040f000000400100043d0000001502000029000000000021043500000bbf0010009c00000bbf01008041000000400110021000000c2a011001c700002ef70001042e00000c110020009c00000a600000613d00000c120020009c0000004e0000c13d000000440030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000402100370000000000202043b001500000002001d00000c260020009c0000004e0000213d0000002401100370000000000101043b001100000001001d00000c5b010000410000000000100443000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2c011001c70000800b020000392ef62eec0000040f0000000100200190000021c20000613d000000000101043b00000c940010009c000008160000813d000000110010006b00000ce80000813d0000001501000029000000000010043f0000013c01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b001000000001001d000000000301041a000000060030008c00000f730000413d00000c5d0030009c000000000203001900000080022082700000008001000039000000000100403900000c5e0020009c00000040011081bf000000400220827000000c5f0020009c00000020011081bf000000200220827000000c600020009c00000010011081bf0000001002208270000001000020008c00000008011080390000000802208270000000100020008c00000004011080390000000402208270000000040020008c00000002011080390000000202208270000000010020008c00000001011020390000000101100270001300000003001d000000000213022f000000010110020f0000000001210019000000010110027200000c500000613d00000013021000f90000000001120019000000010110027200000c500000613d00000013021000f90000000001120019000000010110027200000c500000613d00000013021000f90000000001120019000000010110027200000c500000613d00000013021000f90000000001120019000000010110027200000c500000613d00000013021000f90000000001120019000000010110027200000c500000613d00000013021000f90000000001120019000000010110027200000c500000613d00000013021000f9000000000021004b0000000001028019001500130010007300000c060000413d0000001001000029000000000010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000bc7011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b0000001501100029000000000101041a00000bbf01100197000000110010006c000018630000a13d0000000001000019000000150300002900000f740000013d00000bfc0020009c00000aa70000613d00000bfd0020009c0000004e0000c13d000000440030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000402100370000000000202043b001500000002001d00000c260020009c0000004e0000213d0000002401100370000000000101043b001400000001001d0000000001000411000000000010043f0000003e01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a000000ff001001900000000001000411000006920000613d000000140100008a00000000011000310000000201100367000000000101043b000000600110027000000c2601100197000000000010043f00000c4901000041000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a000000ff00100190000009000000613d00000003010000390000001404000029000000000041041b0000000201000039000000000201041a00000c87022001970000001503000029000000000232019f000000000021041b000000400100043d00000020021000390000000000420435000000000031043500000bbf0010009c00000bbf010080410000004001100210000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000112019f00000c2d011001c70000800d02000039000000010300003900000c880400004100000d6d0000013d00000c1c0020009c00000b740000613d00000c1d0020009c0000004e0000c13d000000640030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000402100370000000000202043b001500000002001d00000c260020009c0000004e0000213d0000002402100370000000000202043b001400000002001d00000c260020009c0000004e0000213d0000004401100370000000000101043b001300000001001d2ef62a650000040f0000000002010019000000150100002900000013030000292ef626950000040f0000001501000029000000140200002900000013030000292ef627220000040f0000000101000039000009d70000013d00000c070020009c00000b970000613d00000c080020009c0000004e0000c13d000000240030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000401100370000000000101043b001500000001001d00000c260010009c0000004e0000213d2ef62a650000040f00000015020000292ef629ee0000040f000000000100001900002ef70001042e000000240030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000401100370000000000101043b00000c260010009c0000004e0000213d000000000010043f0000010801000039000009e90000013d0000000001000416000000000001004b0000004e0000c13d000000d401000039000000000101041a000000000001004b00000bab0000c13d000000d501000039000000000101041a000000000001004b00000bab0000c13d000000d603000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f00000001005001900000094e0000c13d000000800010043f000000000004004b00000d4b0000613d000000000030043f000000000001004b00000dbf0000c13d001500200000003d000000a00600003900000dcf0000013d000000240030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000402100370000000000402043b00000c320040009c0000004e0000213d0000002302400039000000000032004b0000004e0000813d0000000405400039000000000251034f000000000202043b00000c320020009c00000a5a0000213d0000001f0720003900000cc6077001970000003f0770003900000cc60770019700000c4e0070009c00000a5a0000213d00000024044000390000008007700039000000400070043f000000800020043f0000000004420019000000000034004b0000004e0000213d0000002003500039000000000331034f00000cc6042001980000001f0520018f000000a001400039000007460000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000016004b000007420000c13d000000000005004b000007530000613d000000000343034f0000000304500210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000000a00120003900000000000104350000000001000411001500000001001d000000000010043f0000003e01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a000000ff001001900000076c0000613d000000140100008a00000000011000310000000201100367000000000101043b0015006000100278000000150100002900000c2601100197000000000010043f00000c4901000041000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a000000ff001001900000125e0000c13d000000400100043d00000c5902000041000009020000013d0000000001000416000000000001004b0000004e0000c13d000000800000043f00000c230100004100002ef70001042e000000240030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000401100370000000000101043b00000c260010009c0000004e0000213d000000000010043f0000013c01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000201043b000000000302041a000000000003004b0000000001000019000009d70000613d001500000003001d000000000020043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000bc7011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b00000015020000290000000001120019000000010110008a000000000101041a0000002001100270000009d70000013d000000440030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000402100370000000000202043b001500000002001d00000c260020009c0000004e0000213d0000002401100370000000000101043b001300000001001d0000000001000411001400000001001d000000000010043f0000003e01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a000000ff00100190000007d70000613d000000140100008a00000000011000310000000201100367000000000101043b0014006000100278000000140100002900000c2601100197000000000010043f0000007101000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b0000001502000029000000000020043f000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a000000130310006c00000aa40000813d000000400100043d000000640210003900000c56030000410000000000320435000000440210003900000c5703000041000000000032043500000024021000390000002503000039000009b70000013d000000240030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000401100370000000000101043b001500000001001d00000c5b010000410000000000100443000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2c011001c70000800b020000392ef62eec0000040f0000000100200190000021c20000613d000000000101043b00000c5c0010009c00000c120000a13d000000400100043d000000640210003900000c96030000410000000000320435000000440210003900000c9703000041000000000032043500000024021000390000002603000039000009b70000013d000000440030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000002402100370000000000202043b001500000002001d00000c260020009c0000004e0000213d0000000401100370000000000101043b000000000010043f0000000501000039000000200010043f000000400200003900000000010000192ef62ebb0000040f00000015020000292ef623c30000040f000000000101041a000000ff001001900000000001000039000000010100c039000009d70000013d000000240030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000402100370000000000202043b001300000002001d00000c320020009c0000004e0000213d00000013020000290000002302200039000000000032004b0000004e0000813d00000013020000290000000402200039000000000121034f000000000101043b001200000001001d00000c320010009c0000004e0000213d00000013010000290000002404100039000000120100002900000005011002100000000002410019000000000032004b0000004e0000213d0000003f0210003900000c4d0220019700000c4e0020009c00000a5a0000213d001000000004001d0000008002200039000000400020043f0000001202000029000000800020043f000000000002004b000008670000613d00000060020000390000000003000019000000a00430003900000000002404350000002003300039000000000013004b000008620000413d0000000001000411000000000010043f0000003e01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f0000000100200190000000100a0000290000004e0000613d000000000101043b000000000101041a000000ff0010019000000000010004110000087f0000613d000000140100008a00000000011000310000000201100367000000000101043b0000006001100270000000120000006b00000f9d0000c13d000000400100043d00000020020000390000000003210436000000800200043d0000000000230435000000400310003900000005042002100000000007340019000000000002004b000011d40000c13d000000000217004900000bbf0020009c00000bbf02008041000000600220021000000bbf0010009c00000bbf010080410000004001100210000000000112019f00002ef70001042e000000e40030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000402100370000000000202043b001500000002001d00000c260020009c0000004e0000213d0000002402100370000000000202043b001400000002001d00000c260020009c0000004e0000213d0000006402100370000000000202043b001300000002001d0000004402100370000000000202043b001200000002001d0000008401100370000000000101043b001100000001001d000000ff0010008c0000004e0000213d00000c2b010000410000000000100443000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2c011001c70000800b020000392ef62eec0000040f0000000100200190000021c20000613d000000000101043b000000130010006c00000def0000a13d000000400100043d000000440210003900000c420300004100000ed20000013d0000000001000416000000000001004b0000004e0000c13d2ef625b30000040f000009d70000013d0000000001000416000000000001004b0000004e0000c13d0000000301000039000000000101041a0000000202000039000000000202041a00000c26022001970000090f0000013d000000240030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000401100370000000000101043b001500000001001d000000010010008c0000004e0000213d0000000001000411000000000010043f0000003e01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a000000ff001001900000000001000411000008ef0000613d000000140100008a00000000011000310000000201100367000000000101043b000000600110027000000c2601100197000000000010043f00000c4901000041000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a000000ff0010019000000d570000c13d000000400100043d00000cc402000041000000000021043500000bbf0010009c00000bbf01008041000000400110021000000c5a011001c700002ef8000104300000000001000416000000000001004b0000004e0000c13d0000000901000039000000000101041a0000000802000039000000000202041a000000800020043f000000a00010043f00000c290100004100002ef70001042e0000000001000416000000000001004b0000004e0000c13d00000c4301000041000000800010043f00000c230100004100002ef70001042e000000440030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000402100370000000000202043b00000c260020009c0000004e0000213d0000002401100370000000000101043b001500000001001d00000bbf0010009c0000004e0000213d000000c001000039000000400010043f000000800000043f000000a00000043f000000000020043f0000013c01000039000000200010043f000000400200003900000000010000192ef62ebb0000040f00000015020000292ef625990000040f2ef625f70000040f000000002101043400000bbf01100197000000400300043d0000000001130436000000000202043300000c2702200197000000000021043500000bbf0030009c00000bbf03008041000000400130021000000c28011001c700002ef70001042e0000000001000416000000000001004b0000004e0000c13d0000007303000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000054004b00000bb50000613d00000c2401000041000000000010043f0000002201000039000000040010043f00000c250100004100002ef800010430000000240030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000401100370000000000101043b001500000001001d000000000000043f0000000501000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d0000000002000411000000000101043b00000c2602200197000000000020043f000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000400200043d000000000101043b000000000101041a000000ff0010019000000cef0000c13d00000cbf0100004100000000001204350000000401200039000000000300041100000000003104350000002401200039000000000001043500000bbf0020009c00000bbf02008041000000400120021000000c70011001c700002ef8000104300000000001000416000000000001004b0000004e0000c13d000000040100003900000ba60000013d000000240030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000401100370000000000101043b001400000001001d0000000001000411001500000001001d000000000010043f0000003e01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a000000ff00100190000009ab0000613d000000140100008a00000000011000310000000201100367000000000101043b0015006000100278000000150100002900130c260010019c00000c560000c13d000000400100043d000000640210003900000cbc030000410000000000320435000000440210003900000cbd03000041000000000032043500000024021000390000002103000039000000000032043500000bc202000041000000000021043500000004021000390000002003000039000000000032043500000bbf0010009c00000bbf01008041000000400110021000000c41011001c700002ef800010430000000240030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000401100370000000000101043b000000000010043f0000000601000039000009e90000013d0000000001000416000000000001004b0000004e0000c13d00000c6c01000041000000800010043f00000c230100004100002ef70001042e0000000001000416000000000001004b0000004e0000c13d2ef62a7f0000040f000000400200043d000000000012043500000bbf0020009c00000bbf02008041000000400120021000000c2a011001c700002ef70001042e000000240030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000401100370000000000101043b00000c260010009c0000004e0000213d000000000010043f0000007001000039000000200010043f000000400200003900000000010000192ef62ebb0000040f00000b4b0000013d000000440030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000402100370000000000202043b001500000002001d0000002401100370000000000101043b001400000001001d00000c260010009c0000004e0000213d0000001501000029000000000010043f0000000601000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a001300000001001d000000000010043f0000000501000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d0000000002000411000000000101043b00000c2602200197001200000002001d000000000020043f000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a000000ff0010019000000e4f0000c13d000000400100043d00000024021000390000001303000029000000000032043500000cbf02000041000000000021043500000004021000390000001203000029000000000032043500000bbf0010009c00000bbf01008041000000400110021000000c70011001c700002ef800010430000000240030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000018002000039000000400020043f000000800000043f000000a00000043f000000c00000043f000000e00000043f000001000000043f000001200000043f000001400000043f0000006002000039000001600020043f0000000401100370000000000101043b000000000010043f0000000a01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000400200043d001500000002001d00000c660020009c00000c980000a13d00000c2401000041000000000010043f0000004101000039000000040010043f00000c250100004100002ef800010430000000440030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000401100370000000000101043b001500000001001d00000c260010009c0000004e0000213d0000000001000411001400000001001d000000000010043f0000003e01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a000000ff0010019000000a810000613d000000140100008a00000000011000310000000201100367000000000101043b0014006000100278000000140100002900000c2601100197000000000010043f0000007101000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b0000001502000029000000000020043f000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a00000024020000390000000202200367000000000202043b000000000012001a00000c060000413d000000000312001900000014010000290000001502000029000003a30000013d000000440030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000402100370000000000202043b001500000002001d00000c260020009c0000004e0000213d0000002401100370000000000101043b001300000001001d0000000001000411001400000001001d000000000010043f0000003e01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a000000ff0010019000000acb0000613d000000140100008a00000000011000310000000201100367000000000101043b00140060001002780000001501000029000000000010043f0000007101000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000140200002900000c2602200197001400000002001d000000000020043f000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a00000cc80010009c00000ecd0000c13d000000150000006b000009ae0000613d0000016d01000039000000000101041a000000000010043f0000000501000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000000043f000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d0000001501000029000000000010043f0000007001000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a001400130010007400000c810000413d0000001501000029000000000010043f0000007001000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b0000001402000029000000000021041b0000007201000039000000000201041a00000013030000290000000002320049000000000021041b000000400100043d000000000031043500000bbf0010009c00000bbf010080410000004001100210000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000112019f00000bc7011001c70000800d02000039000000030300003900000c7304000041000000150500002900000000060000192ef62ee70000040f00000001002001900000004e0000613d000000150100002900000013020000292ef62cfb0000040f00000013010000292ef62d160000040f000000000100001900002ef70001042e0000000001000416000000000001004b0000004e0000c13d0000007201000039000000000101041a000000800010043f00000c230100004100002ef70001042e0000000001000416000000000001004b0000004e0000c13d00000c5b010000410000000000100443000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2c011001c70000800b020000392ef62eec0000040f0000000100200190000021c20000613d000000400300043d000000000101043b00000c940010009c00000c8b0000413d000000640130003900000c96020000410000000000210435000000440130003900000c9702000041000000000021043500000024013000390000002602000039000000000021043500000bc201000041000000000013043500000004013000390000002002000039000000000021043500000bbf0030009c00000bbf03008041000000400130021000000c41011001c700002ef800010430000000c40030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000002402100370000000000202043b00000c260020009c0000004e0000213d0000006404100370000000000404043b00000c260040009c0000004e0000213d000000a405100370000000000505043b00000c320050009c0000004e0000213d0000000406500039000000000363004900000c630030009c0000004e0000213d000000800030008c0000004e0000413d0000000403100370000000000703043b0000004403100370000000000303043b0000008401100370000000000501043b00000000010700192ef623d30000040f000000000001004b0000000001000039000000010100c039000009d70000013d000000240030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000401100370000000000101043b00000c260010009c0000004e0000213d000000000010043f0000013b01000039000000200010043f000000400200003900000000010000192ef62ebb0000040f000000000101041a00000c2601100197000000800010043f00000c230100004100002ef70001042e00000bc201000041000000800010043f0000002001000039000000840010043f0000001501000039000000a40010043f00000c8301000041000000c40010043f00000c840100004100002ef800010430000000800010043f000000000004004b00000bc60000613d000000000030043f000000000001004b000000000200001900000bcb0000613d00000c9f030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b00000bbe0000413d00000bcb0000013d00000cc502200197000000a00020043f000000000001004b00000020020000390000000002006039000000200220003900000080010000392ef623770000040f000000400100043d001500000001001d00000080020000392ef623570000040f0000001502000029000000000121004900000bbf0010009c00000bbf01008041000000600110021000000bbf0020009c00000bbf020080410000004002200210000000000121019f00002ef70001042e001400000000001d001500000000001d00000be40000013d00000015020000290000000102200039001500000002001d000000120020006c000002810000813d0000001301000029000000000010043f0000000701000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b0000001502000029000000000020043f0000000101100039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a00000c260010019800000bdf0000613d0000001401000029001400010010003e00000bdf0000c13d00000c2401000041000000000010043f0000001101000039000000040010043f00000c250100004100002ef80001043000000cc101000041000000800010043f000000840030043f000000a40020043f00000cc20100004100002ef8000104300000001506000029000000000016004b00000ce80000813d0000013d01000039000000000201041a000000060020008c00000d550000413d00000c5d0020009c000000000402001900000080044082700000008003000039000000000300403900000c5e0040009c00000040033081bf000000400440827000000c5f0040009c00000020033081bf000000200440827000000c600040009c00000010033081bf0000001004408270000001000040008c00000008033080390000000804408270000000100040008c00000004033080390000000404408270000000040040008c00000002033080390000000204408270000000010040008c00000001033020390000000103300270000000000432022f000000010330020f0000000003430019000000010330027200000c500000613d00000000043200d90000000003340019000000010330027200000c500000613d00000000043200d90000000003340019000000010330027200000c500000613d00000000043200d90000000003340019000000010330027200000c500000613d00000000043200d90000000003340019000000010330027200000c500000613d00000000043200d90000000003340019000000010330027200000c500000613d00000000043200d900000000033400190000000103300272000016240000c13d00000c2401000041000000000010043f0000001201000039000000040010043f00000c250100004100002ef8000104300000016d01000039000000000101041a000000000010043f0000000501000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000000043f000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d0000001301000029000000000010043f0000007001000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a0012001400100074000011870000813d000000400100043d000000640210003900000cba030000410000000000320435000000440210003900000cbb03000041000000000032043500000024021000390000002203000039000009b70000013d0000000001030019001400000003001d2ef6236c0000040f0000001403000029000000200130003900000c950200004100000000002104350000001d0100003900000000001304350000000002030019000000400100043d001500000001001d00000bd10000013d000000000101043b00000015030000290000010002300039000000400020043f000000000201041a00000000052304360000000102100039000000000202041a00000000002504350000000202100039000000000202041a000000400630003900000000002604350000000302100039000000000202041a000000600730003900000000002704350000000402100039000000000202041a000000800830003900000000002804350000000502100039000000000202041a000000a00a30003900000000002a0435000000c0093000390000000602100039000000000202041a00000c260220019700000000002904350000000701100039000000000201041a0000000103200190000000010b2002700000007f0bb0618f0000001f00b0008c00000000040000390000000104002039000000000442013f00000001004001900000094e0000c13d000f0000000a001d001000000009001d001100000008001d001200000007001d001300000006001d001400000005001d000000400500043d0000000004b50436000000000003004b00000d720000613d000c00000004001d000d0000000b001d000e00000005001d000000000010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000bc7011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d0000000d06000029000000000006004b00000000020000190000000e050000290000000c0700002900000d770000613d000000000101043b00000000020000190000000003270019000000000401041a000000000043043500000001011000390000002002200039000000000062004b00000ce00000413d00000d770000013d000000400100043d000000440210003900000cc00300004100000000003204350000002402100039000000190300003900000ed50000013d0000016e010000390000001503000029000000000031041b000000000032043500000bbf0020009c00000bbf020080410000004001200210000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000112019f00000bc7011001c70000800d02000039000000010300003900000cbe0400004100000d6d0000013d0000000101000039000000010110018f000009d70000013d000000800120003900000000003104350000006001200039000000130300002900000000003104350000004001200039000000150300002900000000003104350000008001000039000000000112043600000c4403000041000000000031043500000c450020009c00000a5a0000213d000000a003200039000000400030043f00000bbf0010009c00000bbf010080410000004001100210000000000202043300000bbf0020009c00000bbf020080410000006002200210000000000112019f00000002020003670000008403200370000000000303043b001100000003001d000000a402200370000000000202043b001400000002001d000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000112019f00000c30011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000d605000039000000000405041a000000010640019000000001024002700000007f0220618f000000400300043d0000001f0020008c00000000070000390000000107002039000000000774013f000000000101043b001000000001001d00000001007001900000094e0000c13d0000000001230436000000000006004b0000126b0000613d000000000050043f000000000002004b0000000004000019000012700000613d00000c310500004100000000040000190000000006410019000000000705041a000000000076043500000001055000390000002004400039000000000024004b00000d430000413d000012700000013d00000cc502200197000000a00020043f000000000001004b0000002002000039000000000200603900000dc80000013d00000015010000292ef629cf0000040f000000000100001900002ef70001042e00000000030000190000170c0000013d0000001504000029000000b00140021000000c4a011001970000000202000039000000000302041a00000c4b03300197000000000113019f000000000012041b000000400100043d000000000041043500000bbf0010009c00000bbf010080410000004001100210000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000112019f00000bc7011001c70000800d02000039000000010300003900000c4c040000412ef62ee70000040f00000001002001900000004e0000613d000000000100001900002ef70001042e00000cc501200197000000000014043500000000000b004b000000200200003900000000020060390000003f0220003900000cc60320019700000000040500190000000002530019000000000032004b0000000003000039000000010300403900000c320020009c00000a5a0000213d000000010030019000000a5a0000c13d000000400020043f0000001505000029000000e00350003900000000004304350000002004000039000000400200043d00000000044204360000000005050433000000000054043500000014040000290000000004040433000000400520003900000000004504350000001304000029000000000404043300000060052000390000000000450435000000120400002900000000040404330000008005200039000000000045043500000011040000290000000004040433000000a00520003900000000004504350000000f040000290000000004040433000000c00520003900000000004504350000001004000029000000000404043300000c2604400197000000e005200039000000000045043500000000030304330000010004200039000001000500003900000000005404350000012006200039000000005403043400000000004604350000014003200039000000000004004b00000db60000613d000000000600001900000000073600190000000008650019000000000808043300000000008704350000002006600039000000000046004b00000daf0000413d0000001f0540003900000cc601500197000000000443001900000000000404350000000001210049000000000131001900000bd40000013d0000000001000019000009d70000013d00000c31030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b00000dc10000413d0000003f0120003900000cc601100197001500000001001d00000c4e0010009c00000a5a0000213d00000015010000290000008006100039000000400060043f000000d703000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f00000001005001900000094e0000c13d001400000006001d0000000000160435000000000004004b00000eff0000613d000000000030043f000000000001004b000000000200001900000f060000613d00000c34030000410000001502000029000000a00420003900000000020000190000000005240019000000000603041a000000000065043500000001033000390000002002200039000000000012004b00000de70000413d00000f060000013d0000001501000029000000000010043f0000010801000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000201041a0000000103200039000000000031041b000000400100043d000000c00310003900000013040000290000000000430435000000a0031000390000000000230435000000800210003900000012030000290000000000320435000000600210003900000014030000290000000000320435000000400210003900000015030000290000000000320435000000c002000039000000000221043600000c2e03000041000000000032043500000c2f0010009c00000a5a0000213d000000e003100039000000400030043f00000bbf0020009c00000bbf020080410000004002200210000000000101043300000bbf0010009c00000bbf010080410000006001100210000000000121019f0000000202000367000000a403200370000000000303043b001000000003001d000000c402200370000000000202043b001300000002001d000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000112019f00000c30011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000d605000039000000000405041a000000010640019000000001024002700000007f0220618f000000400300043d0000001f0020008c00000000070000390000000107002039000000000774013f000000000101043b000f00000001001d00000001007001900000094e0000c13d0000000001230436000000000006004b000015d80000613d000000000050043f000000000002004b0000000004000019000015dd0000613d00000c310500004100000000040000190000000006410019000000000705041a000000000076043500000001055000390000002004400039000000000024004b00000e470000413d000015dd0000013d0000001501000029000000000010043f0000000501000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b0000001402000029000000000020043f000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a000000ff00100190000013c60000c13d0000001501000029000000000010043f0000000501000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b0000001402000029000000000020043f000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000201041a00000cc50220019700000001022001bf000000000021041b000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c30011001c70000800d02000039000000040300003900000ca7040000410000001505000029000000140600002900000000070004112ef62ee70000040f00000001002001900000004e0000613d0000001501000029000000000010043f0000000701000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000201041a001300000002001d000000010220003a00000c060000613d000000000021041b0000001501000029000000000010043f0000000701000039000000200010043f000000400200003900000000010000192ef62ebb0000040f0000001302000029000000000020043f0000000101100039000000200010043f000000000100001900000040020000392ef62ebb0000040f000000000201041a00000c870220019700000014022001af000000000021041b0000001501000029000000000010043f0000000701000039000000200010043f000000000100001900000040020000392ef62ebb0000040f000000020110003900000014020000292ef623c30000040f0000001302000029000000000021041b000000000100001900002ef70001042e0012001300100074000011b60000813d000000400100043d000000440210003900000c8e03000041000000000032043500000024021000390000001d03000039000000000032043500000bc202000041000000000021043500000004021000390000002003000039000000000032043500000bbf0010009c00000bbf01008041000000400110021000000c3e011001c700002ef8000104300000001401000029000000000010043f0000000701000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b0000001502000029000000000020043f0000000101100039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a00000c2601100197000009d70000013d00000cc5022001970000001503000029000000a0033000390000000000230435000000000001004b000000200200003900000000020060390000003f0120003900000cc6011001970000001402100029000000000012004b00000000010000390000000101004039001300000002001d00000c320020009c00000a5a0000213d000000010010019000000a5a0000c13d0000001301000029000000400010043f00000c850010009c00000a5a0000213d00000013020000290000002001200039000000400010043f0000000000020435000000400100043d001200000001001d00000c36010000410000000000100443000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2c011001c70000800b020000392ef62eec0000040f0000000100200190000021c20000613d000000000101043b00000012040000290000002002400039000000e003000039000000000032043500000c86020000410000000000240435000000e002400039000000800300043d00000000003204350000010004400039000000000003004b00000f3b0000613d00000000020000190000000005420019000000a006200039000000000606043300000000006504350000002002200039000000000032004b00000f340000413d0000000002000410000000000543001900000000000504350000001f0330003900000cc60330019700000000034300190000001205000029000000000453004900000040055000390000000000450435000000140400002900000000040404330000000003430436000000000004004b00000f540000613d0000001505000029000000a005500039000000000600001900000000073600190000000008650019000000000808043300000000008704350000002006600039000000000046004b00000f4d0000413d0000000005430019000000000005043500000c2602200197000000120600002900000080056000390000000000250435000000600260003900000000001204350000001f0140003900000cc60110019700000000011300190000000002610049000000c0036000390000000000230435000000a0026000390000000000020435000000130200002900000000020204330000000001210436000000000002004b00000f710000613d000000000300001900000013050000290000002005500039000000000405043300000000014104360000000103300039000000000023004b00000f6b0000413d000000120200002900000bd30000013d000000000100001900000000020300190000000004010019000000000031004b000011c20000813d000000000304001900000f7d0000013d0000001203000029000000000023004b000011c20000813d000000000423016f000000000123013f0000000101100270001500000004001d001400000001001d000000000041001a00000c060000413d001200000003001d001300000002001d0000001001000029000000000010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000bc7011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d00000014030000290000001502300029000000000101043b0000000001210019000000000101041a00000bbf01100197000000110010006c00000f7a0000213d000000010320003a000000130200002900000f7b0000c13d00000c060000013d00110c260010019b000f006000100218000000200b00008a000000000c000410000000000d0000190000000002000031000000130320006a000000050ed002100000000004ae00190000000201000367000000000541034f000000430430008a000000000305043b0000000005000411000000110050006c000010400000c13d000000000043004b000000000500001900000c4f0500804100000c4f0440019700000c4f06300197000000000746013f000000000046004b000000000400001900000c4f0400404100000c4f0070009c000000000405c019000000000004004b0000004e0000c13d0000000004a30019000000000341034f000000000303043b00000c320030009c0000004e0000213d0000000005320049000000200640003900000c4f0450019700000c4f07600197000000000847013f000000000047004b000000000400001900000c4f04004041000000000056004b000000000500001900000c4f0500204100000c4f0080009c000000000405c019000000000004004b0000004e0000c13d0000001f043000390000000004b4016f0000003f044000390000000005b4016f000000400400043d0000000005540019000000000045004b0000000007000039000000010700403900000c320050009c00000a5a0000213d000000010070019000000a5a0000c13d000000400050043f00000000053404360000000007630019000000000027004b0000004e0000213d000000000261034f0000000006b30170000000000165001900000fea0000613d000000000702034f0000000008050019000000007907043c0000000008980436000000000018004b00000fe60000c13d0000001f0730019000000ff70000613d000000000262034f0000000306700210000000000701043300000000076701cf000000000767022f000000000202043b0000010006600089000000000262022f00000000026201cf000000000272019f000000000021043500000000013500190000000000010435000000400300043d00000c500030009c00000a5a0000213d0000006001300039000000400010043f000000400130003900000c51020000410000000000210435000000200130003900000c5202000041000000000021043500000027010000390000000000130435000000000204043300000000010004140000000400c0008c0000111e0000c13d0000000101000032000000600f000039000010340000613d00000c320010009c00000a5a0000213d0000001f021000390000000002b2016f0000003f022000390000000002b2016f000000400f00043d00000000022f00190000000000f2004b0000000003000039000000010300403900000c320020009c00000a5a0000213d000000010030019000000a5a0000c13d000000400020043f00000000051f04360000000003b1017000000000023500190000000304000367000010270000613d000000000604034f000000006706043c0000000005750436000000000025004b000010230000c13d0000001f01100190000010340000613d000000000334034f0000000301100210000000000402043300000000041401cf000000000414022f000000000303043b0000010001100089000000000313022f00000000011301cf000000000141019f000000000012043500000000010f0433000000000001004b0000117b0000c13d000e0000000f001d00140000000e001d00150000000d001d00000bc00100004100000000001004430000000401000039000000040010044300000000010004140000116a0000013d000000000043004b000000000500001900000c4f0500804100000c4f0440019700000c4f06300197000000000746013f000000000046004b000000000400001900000c4f0400404100000c4f0070009c000000000405c019000000000004004b0000004e0000c13d0000000004a30019000000000341034f000000000303043b00000c320030009c0000004e0000213d0000000005320049000000200240003900000c4f0450019700000c4f06200197000000000746013f000000000046004b000000000400001900000c4f04004041000000000052004b000000000500001900000c4f0500204100000c4f0070009c000000000405c019000000000004004b0000004e0000c13d000000000521034f0000000006b30170000000400200043d000000200120003900000000046100190000106d0000613d000000000705034f0000000008010019000000007907043c0000000008980436000000000048004b000010690000c13d0000001f073001900000107a0000613d000000000565034f0000000306700210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000054043500000000033100190000000f04000029000000000043043500000000032300490000000c0430008a000000000042043500000033033000390000000003b3016f0000000005230019000000000035004b0000000003000039000000010300403900000c320050009c00000a5a0000213d000000010030019000000a5a0000c13d000000400050043f00000c500050009c00000a5a0000213d0000006003500039000000400030043f000000400350003900000c51040000410000000000430435000000200350003900000c5204000041000000000043043500000027030000390000000000350435000000000302043300000000020004140000000400c0008c000010d10000c13d0000000101000032000000600f000039000010c50000613d00000c320010009c00000a5a0000213d0000001f021000390000000002b2016f0000003f022000390000000002b2016f000000400f00043d00000000022f00190000000000f2004b0000000003000039000000010300403900000c320020009c00000a5a0000213d000000010030019000000a5a0000c13d000000400020043f00000000051f04360000000003b1017000000000023500190000000304000367000010b80000613d000000000604034f000000006706043c0000000005750436000000000025004b000010b40000c13d0000001f01100190000010c50000613d000000000334034f0000000301100210000000000402043300000000041401cf000000000414022f000000000303043b0000010001100089000000000313022f00000000011301cf000000000141019f000000000012043500000000010f0433000000000001004b0000117b0000c13d000e0000000f001d00140000000e001d00150000000d001d00000bc00100004100000000001004430000000401000039000000040010044300000000010004140000116a0000013d000e00000005001d00000bbf0010009c00000bbf01008041000000400110021000000bbf0030009c00000bbf030080410000006003300210000000000113019f00000bbf0020009c00000bbf02008041000000c002200210000000000121019f00000000020c001900150000000d001d00140000000e001d2ef62ef10000040f000000140e000029000000150d000029000000000c000410000000200b00008a000000100a00002900030000000103550000000003010019000000600330027000010bbf0030019d00000bbf043001980000008003000039000000600f000039000011130000613d0000001f0340003900000c53033001970000003f0330003900000c5403300197000000400f00043d00000000033f00190000000000f3004b0000000005000039000000010500403900000c320030009c00000a5a0000213d000000010050019000000a5a0000c13d000000400030043f00000000034f043600000c3c064001980000000005630019000011060000613d000000000701034f0000000008030019000000007907043c0000000008980436000000000058004b000011020000c13d0000001f04400190000011130000613d000000000161034f0000000304400210000000000605043300000000064601cf000000000646022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000161019f000000000015043500000000010f043300000001002001900000160d0000613d000000000001004b0000117b0000c13d000e0000000f001d00000bc00100004100000000001004430000000400c0044300000000010004140000116a0000013d000e00000003001d00000bbf0050009c00000bbf05008041000000400350021000000bbf0020009c00000bbf020080410000006002200210000000000232019f00000bbf0010009c00000bbf01008041000000c001100210000000000112019f00000000020c001900150000000d001d00140000000e001d2ef62ef10000040f000000140e000029000000150d000029000000000c000410000000200b00008a000000100a00002900030000000103550000000003010019000000600330027000010bbf0030019d00000bbf043001980000008003000039000000600f000039000011600000613d0000001f0340003900000c53033001970000003f0330003900000c5403300197000000400f00043d00000000033f00190000000000f3004b0000000005000039000000010500403900000c320030009c00000a5a0000213d000000010050019000000a5a0000c13d000000400030043f00000000034f043600000c3c064001980000000005630019000011530000613d000000000701034f0000000008030019000000007907043c0000000008980436000000000058004b0000114f0000c13d0000001f04400190000011600000613d000000000161034f0000000304400210000000000605043300000000064601cf000000000646022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000161019f000000000015043500000000010f043300000001002001900000160d0000613d000000000001004b0000117b0000c13d000e0000000f001d00000bc00100004100000000001004430000000400c00443000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000bc1011001c700008002020000392ef62eec0000040f0000000100200190000021c20000613d000000000101043b000000000001004b000000100a000029000000200b00008a000000000c000410000000150d000029000000140e0000290000000e0f000029000016200000613d000000800100043d0000000000d1004b000014a40000a13d000000a001e000390000000000f10435000000800100043d0000000000d1004b000014a40000a13d000000010dd000390000001200d0006c00000fa20000413d000008810000013d0000001301000029000000000010043f0000007001000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b0000001202000029000000000021041b0000007201000039000000000201041a00000014030000290000000002320049000000000021041b000000400100043d000000000031043500000bbf0010009c00000bbf010080410000004001100210000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000112019f00000bc7011001c70000800d02000039000000030300003900000c7304000041000000130500002900000000060000192ef62ee70000040f00000001002001900000004e0000613d000000150100002900000014020000292ef62cfb0000040f00000014010000292ef62d160000040f000000000100001900002ef70001042e000000150000006b000012620000c13d000000400100043d000000640210003900000c8c030000410000000000320435000000440210003900000c8d03000041000000000032043500000024021000390000002403000039000009b70000013d001300000002001d000000000002004b0000000001000019000009d70000613d0000001001000029000000000010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000bc7011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b0000001302000029000007ae0000013d00000080040000390000000006000019000011df0000013d0000001f0980003900000cc6099001970000000008870019000000000008043500000000079700190000000106600039000000000026004b0000088b0000813d0000000008170049000000400880008a00000000038304360000002004400039000000000804043300000000980804340000000007870436000000000008004b000011d70000613d000000000a000019000000000b7a0019000000000ca90019000000000c0c04330000000000cb0435000000200aa0003900000000008a004b000011e90000413d000011d70000013d0000000901000039000000000201041a000900000002001d0000000802000039000000000402041a000000060000006b001200000004001d001400000004001d000011ff0000613d0000001204000029000000090040002a00000c060000413d0000001204000029001400090040002d0000000a03000029000000000031041b0000001401000029000000000012041b000000000003004b000012830000c13d000000060000006b000014aa0000c13d00000009020000290000000a0020006c0000001401000029000014fb0000a13d0000000a03000029000012160000013d0000001202000029000000000002041b000000000401001900000014010000290000001303000029000000000004041b0000000103300039000000090030006c000014fb0000813d000000000013001a00000c060000413d001300000003001d0000000001130019000000000010043f0000000a01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000001041b0000000102100039000000000002041b0000000202100039000000000002041b0000000302100039000000000002041b0000000402100039000000000002041b0000000502100039000000000002041b0000000602100039000000000002041b0000000704100039000000000104041a000000010010019000000001051002700000007f0550618f0000001f0050008c00000000020000390000000102002039000000000121013f00000001001001900000094e0000c13d000000000005004b00000014010000290000001303000029000012130000613d0000001f0050008c000012120000a13d001000000005001d001200000004001d000000000040043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000bc7011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b00000010020000290000001f02200039000000050220027000000000022100190000000103100039000000000023004b0000120d0000813d000000000003041b0000000103300039000000000023004b000012590000413d0000120d0000013d00000080010000392ef629130000040f000000000100001900002ef70001042e000000140000006b000013cf0000c13d000000400100043d000000640210003900000c8a030000410000000000320435000000440210003900000c8b0300004100000c870000013d00000cc5044001970000000000410435000000000002004b000000200400003900000000040060390000003f0240003900000cc6042001970000000002340019000000000042004b0000000004000039000000010400403900000c320020009c00000a5a0000213d000000010040019000000a5a0000c13d000000400020043f0000000003030433000000000003004b0000151d0000c13d000000d401000039000000000101041a000000000001004b00000c3301006041000015300000013d00000000080000190000000001000019000000000008004b0000000509800210000012a10000613d00000015039000290000000202000367000000000332034f000000000303043b00000011040000290000000004400079000001230440008a00000c4f0530019700000c4f06400197000000000765013f000000000065004b000000000500001900000c4f05004041000000000043004b000000000400001900000c4f0400804100000c4f0070009c000000000504c019000000000005004b0000004e0000c13d0000001503300029000000000232034f000000000202043b000000000021004b000017000000813d001000000009001d0000001401000029000000000018001a00000c060000413d000e00000008001d0000000001180019001300000001001d000000000010043f0000000a01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f000000010020019000000010030000290000004e0000613d000d00150030002d00000002020003670000000d03200360000000000303043b00000011040000290000000004400079000001230440008a00000c4f0530019700000c4f06400197000000000765013f000000000065004b000000000500001900000c4f05004041000000000043004b000000000400001900000c4f0400804100000c4f0070009c000000000504c019000000000101043b000000000005004b0000004e0000c13d0000000201100039000000000401041a0000001501300029001000000001001d000f00200010003d0000000f01200360000000000101043b000c00000004001d000000000014004b000016e30000213d0000001301000029000000000010043f0000000a01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f000000010020019000000010090000290000004e0000613d0000000202000367000000000392034f000000000303043b000000000101043b000000000031041b0000000f05000029000000000352034f000000000303043b0000000104100039000000000034041b0000002003500039000000000332034f000000000303043b0000000204100039000000000034041b0000004003500039000000000332034f000000000303043b0000000304100039000000000034041b0000006003500039000000000332034f000000000303043b0000000404100039000000000034041b0000008003500039000000000332034f000000000303043b0000000504100039000000000034041b000000a003500039000000000432034f000000000404043b00000c260040009c0000004e0000213d0000000605100039000000000605041a00000c8706600197000000000446019f000000000045041b0000002003300039000000000432034f000000000300003100000000059300490000001f0550008a000000000404043b00000c4f0640019700000c4f07500197000000000876013f000000000076004b000000000600001900000c4f06004041000000000054004b000000000500001900000c4f0500804100000c4f0080009c000000000605c019000000000006004b0000004e0000c13d0000000004940019000000000242034f000000000602043b00000c320060009c0000004e0000213d0000000002630049000000200740003900000c4f0320019700000c4f04700197000000000534013f000000000034004b000000000300001900000c4f03004041000000000027004b000000000200001900000c4f0200204100000c4f0050009c000000000302c019000000000003004b0000004e0000c13d0000000703100039000000000103041a000000010010019000000001041002700000007f0440618f0000001f0040008c00000000020000390000000102002039000000000121013f00000001001001900000094e0000c13d000000200040008c001000000006001d000b00000003001d000f00000007001d0000135f0000413d000800000004001d000000000030043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000bc7011001c700008010020000392ef62eec0000040f0000000f07000029000000100600002900000001002001900000004e0000613d0000001f026000390000000502200270000000200060008c0000000002004019000000000301043b00000008010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000000b030000290000135f0000813d000000000002041b0000000102200039000000000012004b0000135b0000413d000000200060008c000013890000413d000000000030043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000bc7011001c700008010020000392ef62eec0000040f0000000f07000029000000100600002900000001002001900000004e0000613d00000cc602600198000000000101043b000013c20000613d000000020400036700000000030000190000000005730019000000000554034f000000000505043b000000000051041b00000001011000390000002003300039000000000023004b000013720000413d000000000062004b000013850000813d0000000302600210000000f80220018f00000cc80220027f00000cc80220016700000000037300190000000203300367000000000303043b000000000223016f000000000021041b000000010160021000000001011001bf0000000b03000029000013950000013d000000000006004b000013940000613d000000030160021000000cc80110027f00000cc8011001670000000202700367000000000202043b000000000112016f0000000102600210000000000121019f000013950000013d0000000001000019000000000013041b0000001301000029000000000010043f0000000a01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b00000002011000390000000c02000029000000000021041b00000002010003670000000d02100360000000000202043b00000011030000290000000003300079000001230330008a00000c4f0420019700000c4f05300197000000000654013f000000000054004b000000000400001900000c4f04004041000000000032004b000000000300001900000c4f0300804100000c4f0060009c000000000403c019000000000004004b0000004e0000c13d0000001502200029000000000121034f000000000101043b0000000e0800002900000001088000390000000a0080006c000012850000413d000012050000013d0000000003000019000000000062004b0000137c0000413d000013850000013d000000400100043d00000024021000390000001503000029000000000032043500000cc30200004100000000002104350000000402100039000000140300002900000a320000013d0000001501000029000000000010043f0000007101000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b0000001402000029000000000020043f000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b0000001202000029000000000021041b000000400100043d000000000021043500000bbf0010009c00000bbf010080410000004001100210000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000112019f00000bc7011001c70000800d02000039000000030300003900000c8904000041000000150500002900000014060000292ef62ee70000040f000000010020019000000aed0000c13d0000004e0000013d0000000801000039000000000201041a0000000901000039000000000101041a001300000002001d000000000021001a00000c060000413d0000001301100029000000130010006c000015f00000a13d000000010110008a001500000001001d000000000010043f0000000a01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a001400000001001d00000c2b010000410000000000100443000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2c011001c70000800b020000392ef62eec0000040f0000000100200190000021c20000613d000000000101043b000000140010006c0000001501000029000014080000413d0000000001000411000b00000001001d000000000010043f0000003e01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a000000ff001001900000000001000411000a00000001001d000014430000613d000000140100008a00000000011000310000000201100367000000000101043b000a0060001002780000001501000029000000000010043f0000000a01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000400200043d000900000002001d00000c660020009c00000a5a0000213d000000000101043b00000009030000290000010002300039000000400020043f000000000201041a00000000042304360000000102100039000000000202041a000500000004001d00000000002404350000000202100039000000000202041a0000004004300039000400000004001d00000000002404350000000302100039000000000202041a0000006004300039001300000004001d00000000002404350000000402100039000000000202041a0000008004300039000e00000004001d00000000002404350000000502100039000000000202041a000000a004300039000800000004001d0000000000240435000000c0033000390000000602100039000000000202041a00000c2602200197000700000003001d00000000002304350000000701100039000000000201041a000000010320019000000001042002700000007f0440618f001400000004001d0000001f0040008c00000000040000390000000104002039000000000442013f00000001004001900000094e0000c13d000000400400043d000600000004001d00000014050000290000000004540436000300000004001d000000000003004b000017d00000613d000000000010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000bc7011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d0000001405000029000000000005004b00000000020000190000000306000029000017d60000613d000000000101043b00000000020000190000000003260019000000000401041a000000000043043500000001011000390000002002200039000000000052004b0000149c0000413d000017d60000013d00000c2401000041000000000010043f0000003201000039000000040010043f00000c250100004100002ef80001043000000014010000290000001202000029000014b40000013d0000001302000029000000000002041b000000000301001900000014010000290000001202000029000000000003041b0000000102200039000000000012004b000014fb0000813d001200000002001d000000000020043f0000000a01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000001041b0000000102100039000000000002041b0000000202100039000000000002041b0000000302100039000000000002041b0000000402100039000000000002041b0000000502100039000000000002041b0000000602100039000000000002041b0000000703100039000000000103041a000000010010019000000001041002700000007f0440618f0000001f0040008c00000000020000390000000102002039000000000121013f00000001001001900000094e0000c13d000000000004004b00000014010000290000001202000029000014b30000613d0000001f0040008c000014b20000a13d001000000004001d001300000003001d000000000030043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000bc7011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b00000010020000290000001f02200039000000050220027000000000022100190000000103100039000000000023004b000014ad0000813d000000000003041b0000000103300039000000000023004b000014f60000413d000014ad0000013d000000400300043d00000040010000390000000001130436001000000001001d00000040013000390000000a020000290000000000210435001400000003001d0000006003300039000000070d300029000000000002004b0000154d0000c13d000000060100002900000010020000290000000000120435000000140200002900000000012d004900000bbf0010009c00000bbf01008041000000600110021000000bbf0020009c00000bbf020080410000004002200210000000000121019f000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000121019f00000c30011001c70000800d02000039000000010300003900000c910400004100000d6d0000013d00000bbf0030009c00000bbf03008041000000600230021000000bbf0010009c00000bbf010080410000004001100210000000000112019f000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000112019f00000c30011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000400200043d000000000101043b000f00000001001d000000d705000039000000000405041a000000010640019000000001034002700000007f0330618f0000001f0030008c00000000010000390000000101002039000000000114013f00000001001001900000094e0000c13d0000000001320436000000000006004b000015f30000613d000000000050043f000000000003004b0000000004000019000015f80000613d00000c340500004100000000040000190000000006410019000000000705041a000000000076043500000001055000390000002004400039000000000034004b000015450000413d000015f80000013d00000002040003670000000002000031000000110120006a001200000002001d0013001f00200092000001230110008a000000000701001900000c4f08100197000000000b000019000000150c000029000015610000013d0000001f01e0003900000cc60110019700000000025e00190000000000020435000000000d510019000000200cc00039000000010bb000390000000a00b0006c000015070000813d0000001401d0006a000000600110008a00000000031304360000000001c4034f000000000201043b00000c4f01200197000000000581013f000000000081004b000000000100001900000c4f01004041000000000072004b000000000900001900000c4f0900804100000c4f0050009c000000000109c019000000000001004b0000004e0000c13d000000150e2000290000000001e4034f000000000101043b00000000011d04360000002002e00039000000000224034f000000000202043b00000000002104350000004001e00039000000000114034f000000000101043b0000004002d0003900000000001204350000006001e00039000000000114034f000000000101043b0000006002d0003900000000001204350000008001e00039000000000114034f000000000101043b0000008002d000390000000000120435000000a001e00039000000000114034f000000a002d00039000000000101043b0000000000120435000000c001e00039000000000214034f000000000202043b00000c260020009c0000004e0000213d000000c005d0003900000000002504350000001305e000690000002001100039000000000114034f000000000201043b00000c4f0150019700000c4f09200197000000000f19013f000000000019004b000000000100001900000c4f01004041000000000052004b000000000500001900000c4f0500804100000c4f00f0009c000000000105c019000000000001004b0000004e0000c13d0000000001e20019000000000214034f000000000e02043b00000c3200e0009c0000004e0000213d00000020021000390000001201e00069000000000012004b000000000500001900000c4f0500204100000c4f0110019700000c4f09200197000000000f19013f000000000019004b000000000100001900000c4f0100404100000c4f00f0009c000000000105c019000000000001004b0000004e0000c13d000000e001d00039000001000500003900000000005104350000010001d000390000000000e10435000000000124034f00000cc609e001980000012005d00039000000000f950019000015ca0000613d000000000201034f000000000d050019000000002602043c000000000d6d04360000000000fd004b000015c60000c13d0000001f02e00190000015580000613d000000000191034f000000030220021000000000060f043300000000062601cf000000000626022f000000000101043b0000010002200089000000000121022f00000000012101cf000000000161019f00000000001f0435000015580000013d00000cc5044001970000000000410435000000000002004b000000200400003900000000040060390000003f0240003900000cc6042001970000000002340019000000000042004b0000000004000039000000010400403900000c320020009c00000a5a0000213d000000010040019000000a5a0000c13d000000400020043f0000000003030433000000000003004b000016330000c13d000000d401000039000000000101041a000000000001004b00000c3301006041000016460000013d000000400100043d00000c6502000041000009020000013d00000cc5044001970000000000410435000000000003004b000000200400003900000000040060390000003f0340003900000cc6033001970000000004230019000000000034004b00000000030000390000000103004039000e00000004001d00000c320040009c00000a5a0000213d000000010030019000000a5a0000c13d0000000e03000029000000400030043f0000000002020433000000000002004b000016630000c13d000000d501000039000000000101041a000000000001004b00000c3301006041000016770000013d000000000001004b000016db0000c13d000000400200043d001500000002001d00000bc201000041000000000012043500000004012000390000000e020000292ef623570000040f0000001502000029000000000121004900000bbf0010009c00000bbf01008041000000600110021000000bbf0020009c00000bbf020080410000004002200210000000000121019f00002ef800010430000000400100043d000000440210003900000c550300004100000ed20000013d00000000043200d9000000000043004b0000000003048019000000000432004b00000c060000413d000000000010043f00000c610340009a000000000303041a00000bbf03300197000000000063004b000017070000a13d0000000003000019000000000204001900000015060000290000170c0000013d00000bbf0030009c00000bbf03008041000000600230021000000bbf0010009c00000bbf010080410000004001100210000000000112019f000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000112019f00000c30011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000400200043d000000000101043b000e00000001001d000000d705000039000000000405041a000000010640019000000001034002700000007f0330618f0000001f0030008c00000000010000390000000101002039000000000114013f00000001001001900000094e0000c13d0000000001320436000000000006004b000016e60000613d000000000050043f000000000003004b0000000004000019000016eb0000613d00000c340500004100000000040000190000000006410019000000000705041a000000000076043500000001055000390000002004400039000000000034004b0000165b0000413d000016eb0000013d00000bbf0020009c00000bbf02008041000000600220021000000bbf0010009c00000bbf010080410000004001100210000000000112019f000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000112019f00000c30011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000400200043d000e00000002001d000000000101043b0000000e030000290000006002300039000000000012043500000040013000390000000f020000290000000000210435000000200230003900000c3501000041000f00000002001d000000000012043500000c36010000410000000000100443000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2c011001c70000800b020000392ef62eec0000040f0000000100200190000021c20000613d000000000101043b0000000e04000029000000a0024000390000000003000410000000000032043500000080024000390000000000120435000000a001000039000000000014043500000c370040009c00000a5a0000213d0000000e02000029000000c001200039000000400010043f0000000f0100002900000bbf0010009c00000bbf010080410000004001100210000000000202043300000bbf0020009c00000bbf020080410000006002200210000000000112019f000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000112019f00000c30011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000400200043d00000022032000390000001004000029000000000043043500000c380300004100000000003204350000000203200039000000000013043500000bbf0020009c00000bbf020080410000004001200210000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000121019f00000c39011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000400300043d00000bbf0030009c00000bbf020000410000000002034019000000140400002900000c3a0040009c000018250000a13d000000640130003900000c3f040000410000000000410435000000440130003900000c4004000041000000000041043500000024013000390000002204000039000000000041043500000bc2010000410000000000130435000000040130003900000020030000390000000000310435000000400120021000000c41011001c700002ef80001043000000bbf0030009c00000bbf03008041000000400230021000000bbf0010009c00000bbf010080410000006001100210000000000121019f00002ef800010430000000400100043d00000c9002000041000009020000013d00000cc5044001970000000000410435000000000003004b000000200400003900000000040060390000003f0340003900000cc6033001970000000004230019000000000034004b00000000030000390000000103004039000d00000004001d00000c320040009c00000a5a0000213d000000010030019000000a5a0000c13d0000000d03000029000000400030043f0000000002020433000000000002004b000017270000c13d000000d501000039000000000101041a000000000001004b00000c33010060410000173b0000013d000000400100043d000000440210003900000c8f0300004100000000003204350000002402100039000000020300003900000ed50000013d000000010340003a00000015060000290000170c0000c13d00000c060000013d0000000002040019000000000023004b0000171d0000813d000000000423016f000000000523013f0000000105500270000000000045001a00000c060000413d0000000004450019000000000010043f00000c610540009a000000000505041a00000bbf05500197000000000065004b0000170b0000213d000000010340003a0000170c0000c13d00000c060000013d000000000002004b0000000003000019000017240000613d000000000010043f00000c620120009a000000000101041a0000002003100270000000400100043d0000000000310435000005e10000013d00000bbf0020009c00000bbf02008041000000600220021000000bbf0010009c00000bbf010080410000004001100210000000000112019f000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000112019f00000c30011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000400200043d000d00000002001d000000000101043b0000000d030000290000006002300039000000000012043500000040013000390000000e020000290000000000210435000000200230003900000c3501000041000e00000002001d000000000012043500000c36010000410000000000100443000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2c011001c70000800b020000392ef62eec0000040f0000000100200190000021c20000613d000000000101043b0000000d04000029000000a0024000390000000003000410000000000032043500000080024000390000000000120435000000a001000039000000000014043500000c370040009c00000a5a0000213d0000000d02000029000000c001200039000000400010043f0000000e0100002900000bbf0010009c00000bbf010080410000004001100210000000000202043300000bbf0020009c00000bbf020080410000006002200210000000000112019f000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000112019f00000c30011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000400200043d00000022032000390000000f04000029000000000043043500000c380300004100000000003204350000000203200039000000000013043500000bbf0020009c00000bbf020080410000004001200210000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000121019f00000c39011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000400300043d00000bbf0030009c00000bbf020000410000000002034019000000130400002900000c3a0040009c000016ca0000213d000000000101043b0000006004300039000000130500002900000000005404350000004004300039000000100500002900000000005404350000001104000029000000ff0440018f000000200530003900000000004504350000000000130435000000000000043f0000004001200210000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000112019f00000c3b011001c700000001020000392ef62eec0000040f0000000003010019000000600330027000000bbf03300197000000200030008c000000200400003900000000040340190000001f0540018f0000002004400190000017b30000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000017af0000c13d000000000005004b000017c00000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000019100000613d000000000100043d00000c26001001980000185f0000613d000000150110014f00000c2600100198000019480000c13d0000001501000029000000140200002900000012030000292ef6260a0000040f000000000100001900002ef70001042e00000cc50120019700000003020000290000000000120435000000140000006b000000200200003900000000020060390000003f0120003900000cc6021001970000000601200029000000000021004b0000000002000039000000010200403900000c320010009c00000a5a0000213d000000010020019000000a5a0000c13d000000400010043f0000000901000029000000e0011000390000000602000029000000000021043500000008010000290000000001010433000600000001001d00000013010000290000000001010433000300000001001d0000000701000029000000000101043300080c260010019b0000000e010000290000000001010433000700000001001d000000000001004b000018860000c13d001300060000002d001400080000002d0000001501000029000000000010043f0000000b01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b0000000a0200002900000c2602200197000000000020043f000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000110200002900000c2602200197000000140020006b0000191c0000c13d00000013040000290000000c0040006c0000191c0000c13d000000000101043b000000000101041a0000000d011000290000000d0000006b0000192f0000c13d000000400200043d0000002403200039000000000013043500000c81010000410000000000120435000000040120003900000003030000290000000000310435000009820000013d000000000101043b0000006004300039000000140500002900000000005404350000004004300039000000110500002900000000005404350000001204000029000000ff0440018f000000200530003900000000004504350000000000130435000000000000043f0000004001200210000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000112019f00000c3b011001c700000001020000392ef62eec0000040f0000000003010019000000600330027000000bbf03300197000000200030008c000000200400003900000000040340190000001f0540018f00000020044001900000184a0000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000018460000c13d000000000005004b000018570000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000018680000613d000000000100043d001400000001001d00000c2601100198000018fc0000c13d000000400100043d000000440210003900000c4703000041000003890000013d0000001501000029000000010110003a000000130300002900000c060000613d00000f740000013d0000001f0530018f00000c3c06300198000000400200043d0000000004620019000018730000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000186f0000c13d000000000005004b000018800000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000bbf0020009c00000bbf020080410000004002200210000000000112019f00002ef80001043000000002010003670000000f02100360000000000302043b0000000002000031000000100420006a000000230440008a00000c4f0540019700000c4f06300197000000000756013f000000000056004b000000000500001900000c4f05004041000000000043004b000000000400001900000c4f0400804100000c4f0070009c000000000504c019000000000005004b0000004e0000c13d0000000f03300029000000000431034f000000000404043b001000000004001d00000c320040009c0000004e0000213d000000100400002900000005044002100000000002420049000000200630003900000c4f0320019700000c4f04600197000000000534013f000000000034004b000000000300001900000c4f03004041000e00000006001d000000000026004b000000000200001900000c4f0200204100000c4f0050009c000000000302c019000000000003004b0000004e0000c13d0000000f02000029000f00600020003d0000000f02100360000000000202043b00000c260020009c0000004e0000213d0000000f0400002900010040004000920000000103100360000000000303043b00020020004000920000000201100360000000000401043b0000006002200210000000400100043d00000074051000390000000000250435000000540210003900000000004204350000000a02000029000000600420021000000020021000390000000000420435000000340410003900000000003404350000006803000039000000000031043500000c450010009c00000a5a0000213d000000a003100039000000400030043f00000bbf0020009c00000bbf020080410000004002200210000000000101043300000bbf0010009c00000bbf010080410000006001100210000000000121019f000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000112019f00000c30011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000100000006b000019ac0000c13d000000070010006c000017f30000c13d00000002010003670000000102100360000000000202043b000000000002004b00000000030200190000000303006029000300000003001d0000000202100360000000000302043b001300000003001d00000cc80030009c000017f30000613d0000000f01100360000000000101043b001400000001001d00000c260010009c0000004e0000213d000000140000006b0000000801006029001400000001601d000017f50000013d000000000010043f0000010801000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000201041a0000000103200039000000000031041b000000130020006b0000192b0000c13d0000001401000029000006ed0000013d0000001f0530018f00000c3c06300198000000400200043d0000000004620019000018730000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019170000c13d000018730000013d000000400100043d00000064031000390000001304000029000000000043043500000044031000390000001404000029000000000043043500000024031000390000000c04000029000000000043043500000c8203000041000000000031043500000004031000390000000000230435000009bd0000013d000000400100043d000000440210003900000c460300004100000ceb0000013d0000000d0010006c00000c060000413d000000030010006c0000181c0000213d000000040100002900000000010104330000000d0010002a00000c060000413d0000000d0210002900000005010000290000000001010433000000000012004b000019930000a13d000000400300043d0000002404300039000000000024043500000c800200004100000000002304350000000402300039000000000012043500000bbf0030009c00000bbf03008041000000400130021000000c70011001c700002ef800010430000000400100043d000000440210003900000c3d03000041000000000032043500000024021000390000001e0300003900000ed50000013d0000ff00002001900000195b0000c13d000000400100043d000000640210003900000cb6030000410000000000320435000000440210003900000cb703000041000000000032043500000024021000390000002b03000039000009b70000013d00000013020000290000000002020433000000000002004b0000197d0000613d001400000000001d000000140100002900000005011002100000001201100029000000000101043300000c2601100197000000000010043f0000003e01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000201041a00000cc50220019700000001022001bf000000000021041b0000001402000029001400010020003d00000013010000290000000001010433000000140010006b000019600000413d000000000100041a000000400300043d0000ff0000100190000019dc0000c13d000000640130003900000cb6020000410000000000210435000000440130003900000cb702000041000000000021043500000024013000390000002b0200003900000b690000013d000000400100043d000000640210003900000bc4030000410000000000320435000000440210003900000bc303000041000000000032043500000024021000390000002e03000039000009b70000013d00000009010000290000000001010433001300000001001d00000c2b010000410000000000100443000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2c011001c70000800b020000392ef62eec0000040f0000000100200190000021c20000613d000000000101043b000000130010006b00001a0b0000a13d000000400200043d0000002403200039000000000013043500000c7f01000041000000000012043500000004012000390000001303000029000018230000013d001400000000001d0000000002000019000019c20000013d000000000020043f000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000130200002900000001022001bf000000000101043b00000014040000290000000104400039001400000004001d000000100040006c000018e50000813d0013000100200218000000000002004b000019c80000613d00000013022000f9000000020020008c00000c060000c13d000000140200002900000005022002100000000e022000290000000202200367000000000202043b000000000021004b000019af0000213d000000000010043f000000200020043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d0000001302000029000019bc0000013d00000c760030009c00000a5a0000213d0000004001300039000000400010043f0000000101000039000000000413043600000c99020000410000000000240435000000800200043d00000c320020009c00000a5a0000213d000000d605000039000000000705041a000000010070019000000001067002700000007f0660618f0000001f0060008c00000000080000390000000108002039000000000787013f00000001007001900000094e0000c13d000000200060008c00001a030000413d000000000050043f0000001f07200039000000050770027000000c9a0770009a000000200020008c00000c31070040410000001f06600039000000050660027000000c9a0660009a000000000067004b00001a030000813d000000000007041b0000000107700039000000000067004b000019ff0000413d0000001f0020008c00001ab20000a13d000000000050043f00000cc60820019800001abd0000c13d000000200700003900000c310600004100001ac90000013d0000001501000029000000000010043f0000000a01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b0000000201100039000000000201041a0000000d0020002a00000c060000413d0000000d02200029000000000021041b0000001501000029000000000010043f0000000b01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b001300000001001d0000000001000411000000000010043f0000003e01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a000000ff00100190000000000100041100001a450000613d000000140100008a00000000011000310000000201100367000000000101043b000000600110027000000c2601100197000000000010043f0000001301000029000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000201041a0000000d0020002a00000c060000413d0000000d02200029000000000021041b0000000c0000006b00001b570000c13d0000000001000416000000000001004b00001bb60000c13d000000120100002900140c260010019c00001c090000c13d000000400100043d000000440210003900000c7e03000041000000000032043500000024021000390000001f0300003900000ed50000013d000000000002004b000000000600001900001a8a0000613d000000030620021000000cc80660027f00000cc806600167000000a00700043d000000000667016f0000000107200210000000000676019f00001a8a0000013d00000c31060000410000002007000039000000010980008a000000050990027000000c9b0990009a000000800a700039000000000a0a04330000000000a6041b00000020077000390000000106600039000000000096004b00001a770000c13d000000000028004b00001a880000813d0000000308200210000000f80880018f00000cc80880027f00000cc80880016700000080077000390000000007070433000000000787016f000000000076041b000000010620021000000001066001bf000000000065041b000000000603043300000c320060009c00000a5a0000213d000000d705000039000000000805041a000000010080019000000001078002700000007f0770618f0000001f0070008c00000000090000390000000109002039000000000898013f00000001008001900000094e0000c13d000000200070008c00001aaa0000413d000000000050043f0000001f08600039000000050880027000000c9c0880009a000000200060008c00000c34080040410000001f07700039000000050770027000000c9c0770009a000000000078004b00001aaa0000813d000000000008041b0000000108800039000000000078004b00001aa60000413d000000200060008c00001afd0000413d000000000050043f00000cc60860019800001b080000c13d000000200700003900000c340400004100001b140000013d000000000002004b000000000600001900001ad50000613d000000030620021000000cc80660027f00000cc806600167000000a00700043d000000000667016f0000000107200210000000000676019f00001ad50000013d00000c31060000410000002007000039000000010980008a000000050990027000000c9b0990009a000000800a700039000000000a0a04330000000000a6041b00000020077000390000000106600039000000000096004b00001ac20000c13d000000000028004b00001ad30000813d0000000308200210000000f80880018f00000cc80880027f00000cc80880016700000080077000390000000007070433000000000787016f000000000076041b000000010620021000000001066001bf000000000065041b000000000603043300000c320060009c00000a5a0000213d000000d705000039000000000805041a000000010080019000000001078002700000007f0770618f0000001f0070008c00000000090000390000000109002039000000000898013f00000001008001900000094e0000c13d000000200070008c00001af50000413d000000000050043f0000001f08600039000000050880027000000c9c0880009a000000200060008c00000c34080040410000001f07700039000000050770027000000c9c0770009a000000000078004b00001af50000813d000000000008041b0000000108800039000000000078004b00001af10000413d000000200060008c00001b4c0000413d000000000050043f00000cc60860019800001b670000c13d000000200700003900000c340400004100001b730000013d000000000006004b000000000300001900001b200000613d000000030360021000000cc80330027f00000cc8033001670000000004040433000000000334016f0000000104600210000000000343019f00001b200000013d00000c34040000410000002007000039000000010980008a000000050990027000000c9d0990009a000000000a370019000000000a0a04330000000000a4041b00000020077000390000000104400039000000000094004b00001b0d0000c13d000000000068004b00001b1e0000813d0000000308600210000000f80880018f00000cc80880027f00000cc80880016700000000033700190000000003030433000000000383016f000000000034041b000000010360021000000001033001bf000000000035041b000000d403000039000000000003041b000000d503000039000000000003041b000000000300041a0000ff0000300190000019510000613d0000007303000039000000000503041a000000010050019000000001045002700000007f0440618f0000001f0040008c00000000060000390000000106002039000000000565013f00000001005001900000094e0000c13d000000200040008c00001b440000413d000000000030043f0000001f05200039000000050550027000000c9e0550009a000000200020008c00000c9f050040410000001f04400039000000050440027000000c9e0440009a000000000045004b00001b440000813d000000000005041b0000000105500039000000000045004b00001b400000413d0000001f0020008c00001bab0000a13d000000000030043f00000cc60620019800001bbd0000c13d000000200500003900000c9f0400004100001bc90000013d000000000006004b000000000300001900001b7f0000613d000000030360021000000cc80330027f00000cc8033001670000000004040433000000000334016f0000000104600210000000000343019f00001b7f0000013d0000000c020000290000000d032000b9001300000003001d0000000d013000fa000000000021004b00000c060000c13d000000130100002900000c680010009c00001c740000213d000000400100043d000000440210003900000c710300004100000000003204350000002402100039000000100300003900000ed50000013d00000c34040000410000002007000039000000010980008a000000050990027000000c9d0990009a000000000a370019000000000a0a04330000000000a4041b00000020077000390000000104400039000000000094004b00001b6c0000c13d000000000068004b00001b7d0000813d0000000308600210000000f80880018f00000cc80880027f00000cc80880016700000000033700190000000003030433000000000383016f000000000034041b000000010360021000000001033001bf000000000035041b000000d403000039000000000003041b000000d503000039000000000003041b000000000300041a0000ff0000300190000019510000613d0000007303000039000000000503041a000000010050019000000001045002700000007f0440618f0000001f0040008c00000000060000390000000106002039000000000565013f00000001005001900000094e0000c13d000000200040008c00001ba30000413d000000000030043f0000001f05200039000000050550027000000c9e0550009a000000200020008c00000c9f050040410000001f04400039000000050440027000000c9e0440009a000000000045004b00001ba30000813d000000000005041b0000000105500039000000000045004b00001b9f0000413d0000001f0020008c00001bfe0000a13d000000000030043f00000cc60620019800001c890000c13d000000200500003900000c9f0400004100001c950000013d000000000002004b000000000400001900001bd50000613d000000030420021000000cc80440027f00000cc804400167000000a00500043d000000000445016f0000000102200210000000000424019f00001bd50000013d000000400100043d000000440210003900000c720300004100000000003204350000002402100039000000060300003900000ed50000013d00000c9f040000410000002005000039000000010760008a000000050770027000000ca00770009a00000080085000390000000008080433000000000084041b00000020055000390000000104400039000000000074004b00001bc20000c13d000000000026004b00001bd30000813d0000000306200210000000f80660018f00000cc80660027f00000cc80660016700000080055000390000000005050433000000000565016f000000000054041b000000010220021000000001042001bf000000000043041b0000001102000029000000000302043300000c320030009c00000a5a0000213d0000007402000039000000000502041a000000010050019000000001045002700000007f0440618f0000001f0040008c00000000060000390000000106002039000000000565013f00000001005001900000094e0000c13d000000200040008c00001bf60000413d000000000020043f0000001f05300039000000050550027000000ca10550009a000000200030008c00000c58050040410000001f04400039000000050440027000000ca10440009a000000000045004b00001bf60000813d000000000005041b0000000105500039000000000045004b00001bf20000413d000000200030008c00001cca0000413d000000000020043f00000cc60630019800001d450000c13d000000200500003900000c580400004100001d510000013d000000000002004b000000000400001900001ca10000613d000000030420021000000cc80440027f00000cc804400167000000a00500043d000000000445016f0000000102200210000000000424019f00001ca10000013d0000016d01000039000000000101041a000000000010043f0000000501000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000000043f000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d0000007201000039000000000101041a0000000d0010002a00000c060000413d0000000d011000290000007202000039000000000012041b0000001401000029000000000010043f0000007001000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000201041a0000000d030000290000000002320019000000000021041b000000400100043d000000000031043500000bbf0010009c00000bbf010080410000004001100210000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000112019f00000bc7011001c70000800d02000039000000030300003900000c7304000041000000000500001900000014060000292ef62ee70000040f00000001002001900000004e0000613d0000013b01000039000000200010043f00000c7401000041000000000101041a001300000001001d0000001401000029000000000010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000201041a000000130100002900000c260110019700000c26022001970000000d030000292ef62b5a0000040f000000400100043d0000007202000039000000000202041a00000c750020009c000021440000413d000000640210003900000c7c030000410000000000320435000000440210003900000c7d03000041000000000032043500000024021000390000003003000039000009b70000013d0000000401000039000000000101041a000f00000001001d0000000201000039000000000101041a001000000001001d000000130100002900110c67001001320000000001000416000000140200002900000c6a0020009c00001cd60000c13d000000110010006c00001cd80000613d000000400100043d000000440210003900000c6b0300004100000000003204350000002402100039000000110300003900000ed50000013d00000c9f040000410000002005000039000000010760008a000000050770027000000ca00770009a00000080085000390000000008080433000000000084041b00000020055000390000000104400039000000000074004b00001c8e0000c13d000000000026004b00001c9f0000813d0000000306200210000000f80660018f00000cc80660027f00000cc80660016700000080055000390000000005050433000000000565016f000000000054041b000000010220021000000001042001bf000000000043041b0000001102000029000000000302043300000c320030009c00000a5a0000213d0000007402000039000000000502041a000000010050019000000001045002700000007f0440618f0000001f0040008c00000000060000390000000106002039000000000565013f00000001005001900000094e0000c13d000000200040008c00001cc20000413d000000000020043f0000001f05300039000000050550027000000ca10550009a000000200030008c00000c58050040410000001f04400039000000050440027000000ca10440009a000000000045004b00001cc20000813d000000000005041b0000000105500039000000000045004b00001cbe0000413d000000200030008c00001d7a0000413d000000000020043f00000cc60630019800001db30000c13d000000200500003900000c580400004100001dbf0000013d000000000003004b000000000400001900001d5d0000613d000000030430021000000cc80440027f00000cc80440016700000010050000290000000005050433000000000445016f0000000103300210000000000434019f00001d5d0000013d000000000001004b00001c820000c13d0000000001000411000000000010043f0000003e01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a000000ff00100190000000000100041100001cef0000613d000000140100008a00000000011000310000000201100367000000000101043b00000060011002700000001303000029000e0c690030013200000c690030009c00001e150000813d0000000001000411000000000010043f0000003e01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d0000001002000029000000a0022002700000ffff0220018f00000011022000b9000000000101043b000000000101041a000000ff00100190000000000100041100001d0e0000613d000000140100008a00000000011000310000000201100367000000000101043b00000060011002700013271000200122000027100020008c000021d40000413d000000100200002900100c260020019b000000140200002900000c6a0020009c00001ff80000c13d00000000010004140000001002000029000000040020008c000021790000c13d0000000101000032000021d40000613d00000c320010009c00000a5a0000213d0000001f0210003900000cc6022001970000003f0220003900000cc603200197000000400200043d0000000003320019000000000023004b0000000004000039000000010400403900000c320030009c00000a5a0000213d000000010040019000000a5a0000c13d000000400030043f000000000512043600000cc6021001980000001f0310018f0000000001250019000000030400036700001d370000613d000000000604034f000000006706043c0000000005750436000000000015004b00001d330000c13d000000000003004b000021d40000613d000000000224034f0000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f0000000000210435000021d40000013d00000c58040000410000002005000039000000010760008a000000050770027000000ca20770009a00000011085000290000000008080433000000000084041b00000020055000390000000104400039000000000074004b00001d4a0000c13d000000000036004b00001d5b0000813d0000000306300210000000f80660018f00000cc80660027f00000cc80660016700000011055000290000000005050433000000000565016f000000000054041b000000010330021000000001043001bf000000000042041b000000000201041a000000010520019000000001062002700000007f0660618f0000001f0060008c00000000030000390000000103002039000000000332013f00000001003001900000094e0000c13d000000400400043d0000000003640436000000000005004b00001d860000613d000000000010043f000000000006004b000000000200001900001d8b0000613d00000ca30500004100000000020000190000000007230019000000000805041a000000000087043500000001055000390000002002200039000000000062004b00001d720000413d00001d8b0000013d000000000003004b000000000400001900001dcb0000613d000000030430021000000cc80440027f00000cc80440016700000010050000290000000005050433000000000445016f0000000103300210000000000434019f00001dcb0000013d00000cc5022001970000000000230435000000000006004b000000200200003900000000020060390000003f0220003900000cc6052001970000000002450019000000000052004b0000000005000039000000010500403900000c320020009c00000a5a0000213d000000010050019000000a5a0000c13d000000400020043f0000000f05000029000000000505043300000c320050009c00000a5a0000213d000000200060008c00001dab0000413d000000000010043f0000001f07500039000000050770027000000ca40770009a000000200050008c00000ca3070040410000001f06600039000000050660027000000ca40660009a000000000067004b00001dab0000813d000000000007041b0000000107700039000000000067004b00001da70000413d0000001f0050008c00001e330000a13d000000000010043f00000cc60850019800001e550000c13d000000200700003900000ca30600004100001e610000013d00000c58040000410000002005000039000000010760008a000000050770027000000ca20770009a00000011085000290000000008080433000000000084041b00000020055000390000000104400039000000000074004b00001db80000c13d000000000036004b00001dc90000813d0000000306300210000000f80660018f00000cc80660027f00000cc80660016700000011055000290000000005050433000000000565016f000000000054041b000000010330021000000001043001bf000000000042041b000000000201041a000000010520019000000001062002700000007f0660618f0000001f0060008c00000000030000390000000103002039000000000332013f00000001003001900000094e0000c13d000000400400043d0000000003640436000000000005004b00001de80000613d000000000010043f000000000006004b000000000200001900001ded0000613d00000ca30500004100000000020000190000000007230019000000000805041a000000000087043500000001055000390000002002200039000000000062004b00001de00000413d00001ded0000013d00000cc5022001970000000000230435000000000006004b000000200200003900000000020060390000003f0220003900000cc6052001970000000002450019000000000052004b0000000005000039000000010500403900000c320020009c00000a5a0000213d000000010050019000000a5a0000c13d000000400020043f0000000f05000029000000000505043300000c320050009c00000a5a0000213d000000200060008c00001e0d0000413d000000000010043f0000001f07500039000000050770027000000ca40770009a000000200050008c00000ca3070040410000001f06600039000000050660027000000ca40660009a000000000067004b00001e0d0000813d000000000007041b0000000107700039000000000067004b00001e090000413d0000001f0050008c00001fc60000a13d000000000010043f00000cc6085001980000200e0000c13d000000200700003900000ca3060000410000201a0000013d000000140200002900000c6a0020009c00001e3f0000c13d000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c30011001c700008009020000390000000e0300002900000c6c0400004100000000050000192ef62ee70000040f00030000000103550000000003010019000000600330027000010bbf0030019d00000bbf0330019800001fd20000c13d000000010020019000001cf30000c13d000000400100043d00000024021000390000000e03000029000000000032043500000c6f020000410000000000210435000000040210003900000c6c0300004100000a320000013d000000000005004b000000000600001900001e6d0000613d000000030650021000000cc80660027f00000cc8066001670000000e070000290000000007070433000000000667016f0000000105500210000000000656019f00001e6d0000013d00000c260310019700000c6c0030009c00001cf30000613d000000400200043d0000004401200039000000240420003900000020052000390000000006000410000000000063004b000021670000c13d00000c6e03000041000000000035043500000c6c0300004100000000003404350000000e0300002900000000003104350000004401000039000000000012043500000c4e0020009c00000a5a0000213d0000008001000039000021740000013d00000ca3060000410000002007000039000000010980008a000000050990027000000ca50990009a0000000f0a700029000000000a0a04330000000000a6041b00000020077000390000000106600039000000000096004b00001e5a0000c13d000000000058004b00001e6b0000813d0000000308500210000000f80880018f00000cc80880027f00000cc8088001670000000f077000290000000007070433000000000787016f000000000076041b000000010550021000000001065001bf000000000061041b000000400100003900000000011204360000000004040433000000400520003900000000004504350000006005200039000000000004004b00001e7e0000613d000000000600001900000000075600190000000008630019000000000808043300000000008704350000002006600039000000000046004b00001e770000413d000000000345001900000000000304350000001f0340003900000cc6033001970000000004350019000000000324004900000000003104350000000f0100002900000000030104330000000001340436000000000003004b00001e920000613d000000000400001900000000051400190000000e06400029000000000606043300000000006504350000002004400039000000000034004b00001e8b0000413d000000000413001900000000000404350000001f0330003900000cc6033001970000000001210049000000000131001900000bbf0010009c00000bbf01008041000000600110021000000bbf0020009c00000bbf020080410000004002200210000000000121019f000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000112019f00000c30011001c70000800d02000039000000010300003900000ca6040000412ef62ee70000040f00000001002001900000004e0000613d000000150100002900000c2601100197001500000001001d000000000010043f00000c4901000041000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000201041a00000cc50220019700000001022001bf000000000021041b000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c30011001c70000800d020000390000000403000039000000000700041100000ca704000041000000000500001900000015060000292ef62ee70000040f00000001002001900000004e0000613d0000000701000039000000200010043f00000ca801000041000000000201041a001400000002001d000000010220003a00000c060000613d000000000021041b0000001401000029000000000010043f00000ca901000041000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000201041a00000c87022001970000001503000029000000000232019f000000000021041b000000000030043f00000caa01000041000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b0000001402000029000000000021041b0000001501000029000000000010043f00000cab01000041000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000201041a00000cc50220019700000001022001bf000000000021041b000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c30011001c70000800d02000039000000040300003900000ca70400004100000cac05000041000000150600002900000000070004112ef62ee70000040f00000001002001900000004e0000613d0000000701000039000000200010043f00000cad01000041000000000201041a001400000002001d000000010220003a00000c060000613d000000000021041b0000001401000029000000000010043f00000cae01000041000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000201041a00000c87022001970000001503000029000000000232019f000000000021041b000000000030043f00000caf01000041000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b0000001402000029000000000021041b000000000000043f00000cab01000041000000200010043f00000cb001000041000000000201041a00000cc50220019700000001022001bf000000000021041b000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c30011001c70000800d02000039000000040300003900000ca70400004100000cac05000041000000000600001900000000070004112ef62ee70000040f00000001002001900000004e0000613d0000000701000039000000200010043f00000cad01000041000000000201041a001500000002001d000000010220003a00000c060000613d000000000021041b0000001501000029000000000010043f00000cae01000041000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000201041a00000c8702200197000000000021041b000000000000043f00000caf01000041000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b0000001502000029000000000021041b0000000b0100002900000c9801100197000027110010008c0000213c0000813d0000000c0200002900000c2605200198000023080000613d0000000203000039000000000203041a00000cb102200197000000a00410021000000cb204400197000000000224019f000000000252019f000000000023041b000000400200043d000000000012043500000bbf0020009c00000bbf020080410000004001200210000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000112019f00000bc7011001c70000800d0200003900000cb3040000412ef62ee70000040f00000001002001900000004e0000613d0000000d0100002900000c2605100198000023260000613d0000000402000039000000000102041a00000c8701100197000000000151019f000000000012041b000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c30011001c70000800d02000039000000020300003900000cb4040000412ef62ee70000040f00000001002001900000004e0000613d00000cac010000410000016d02000039000000000012041b000000000200041a00000cc901200197000000000010041b000000400100043d0000000103000039000000000031043500000bbf0010009c00000bbf010080410000004001100210000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000112019f00000bc7011001c70000800d0200003900000bc80400004100000d6d0000013d000000000005004b0000000006000019000020260000613d000000030650021000000cc80660027f00000cc8066001670000000e070000290000000007070433000000000667016f0000000105500210000000000656019f000020260000013d0000001f0430003900000c53044001970000003f0440003900000c5404400197000000400500043d0000000004450019000000000054004b0000000006000039000000010600403900000c320040009c00000a5a0000213d000000010060019000000a5a0000c13d000000400040043f0000001f0430018f000000000635043600000c3c05300198000000000356001900001fea0000613d000000000701034f000000007807043c0000000006860436000000000036004b00001fe60000c13d000000000004004b00001e280000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500001e280000013d00000c2601100197000000100010006c000021d40000613d000000400200043d0000004403200039000000240420003900000020052000390000000006000410000000000061004b000021c30000c13d00000c6e01000041000000000015043500000010010000290000000000140435000000130100002900000000001304350000004401000039000000000012043500000c4e0020009c00000a5a0000213d0000008001000039000021d00000013d00000ca3060000410000002007000039000000010980008a000000050990027000000ca50990009a0000000f0a700029000000000a0a04330000000000a6041b00000020077000390000000106600039000000000096004b000020130000c13d000000000058004b000020240000813d0000000308500210000000f80880018f00000cc80880027f00000cc8088001670000000f077000290000000007070433000000000787016f000000000076041b000000010550021000000001065001bf000000000061041b000000400100003900000000011204360000000004040433000000400520003900000000004504350000006005200039000000000004004b000020370000613d000000000600001900000000075600190000000008630019000000000808043300000000008704350000002006600039000000000046004b000020300000413d000000000345001900000000000304350000001f0340003900000cc6033001970000000004350019000000000324004900000000003104350000000f0100002900000000030104330000000001340436000000000003004b0000204b0000613d000000000400001900000000051400190000000e06400029000000000606043300000000006504350000002004400039000000000034004b000020440000413d000000000413001900000000000404350000001f0330003900000cc6033001970000000001210049000000000131001900000bbf0010009c00000bbf01008041000000600110021000000bbf0020009c00000bbf020080410000004002200210000000000121019f000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000112019f00000c30011001c70000800d02000039000000010300003900000ca6040000412ef62ee70000040f00000001002001900000004e0000613d000000150100002900000c2601100197001500000001001d000000000010043f00000c4901000041000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000201041a00000cc50220019700000001022001bf000000000021041b000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c30011001c70000800d020000390000000403000039000000000700041100000ca704000041000000000500001900000015060000292ef62ee70000040f00000001002001900000004e0000613d0000000701000039000000200010043f00000ca801000041000000000201041a001400000002001d000000010220003a00000c060000613d000000000021041b0000001401000029000000000010043f00000ca901000041000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000201041a00000c87022001970000001503000029000000000232019f000000000021041b000000000030043f00000caa01000041000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b0000001402000029000000000021041b0000001501000029000000000010043f00000cab01000041000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000201041a00000cc50220019700000001022001bf000000000021041b000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c30011001c70000800d02000039000000040300003900000ca70400004100000cac05000041000000150600002900000000070004112ef62ee70000040f00000001002001900000004e0000613d0000000701000039000000200010043f00000cad01000041000000000201041a001400000002001d000000010220003a00000c060000613d000000000021041b0000001401000029000000000010043f00000cae01000041000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000201041a00000c87022001970000001503000029000000000232019f000000000021041b000000000030043f00000caf01000041000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b0000001402000029000000000021041b000000000000043f00000cab01000041000000200010043f00000cb001000041000000000201041a00000cc50220019700000001022001bf000000000021041b000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c30011001c70000800d02000039000000040300003900000ca70400004100000cac05000041000000000600001900000000070004112ef62ee70000040f00000001002001900000004e0000613d0000000701000039000000200010043f00000cad01000041000000000201041a001500000002001d000000010220003a00000c060000613d000000000021041b0000001501000029000000000010043f00000cae01000041000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000201041a00000c8702200197000000000021041b000000000000043f00000caf01000041000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b0000001502000029000000000021041b0000000b0100002900000c9801100197000027110010008c000023050000413d000000400200043d0000002403200039000000000013043500000cb501000041000000000012043500000004012000390000271003000039000018230000013d0000013d02000039000000000202041a000000000002004b000021930000c13d00000c760010009c00000a5a0000213d0000004002100039000000400020043f0000002002100039000000000002043500000000000104350013000d0000002d00000c5b010000410000000000100443000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2c011001c70000800b020000392ef62eec0000040f0000000100200190000021c20000613d000000000101043b00000c5c0010009c000008160000213d00000c5f0010009c000022b20000413d000000400100043d000000640210003900000c7a030000410000000000320435000000440210003900000c7b030000410000081c0000013d00000c6d060000410000000000650435000000000034043500000c6c03000041000000000031043500000064012000390000000e0300002900000000003104350000006401000039000000000012043500000c450020009c00000a5a0000213d000000a0010000390000000001210019000000400010043f00000014010000292ef62dad0000040f00001cf30000013d00000bbf0010009c00000bbf01008041000000c00110021000000c30011001c700008009020000390000001303000029000000100400002900000000050000192ef62ee70000040f00030000000103550000000003010019000000600330027000010bbf0030019d00000bbf03300198000022250000c13d0000000100200190000021d40000c13d000000400100043d00000024021000390000001303000029000000000032043500000c6f0200004100000000002104350000000402100039000000100300002900000a320000013d0000013d03000039000000000030043f00000c760010009c00000a5a0000213d0000004003100039000000400030043f00000c620320009a0000002002100039001100000003001d000000000303041a0000002004300270000000000042043500000bbf02300197001200000002001d0000000000210435001300000004001d0000000d0040002a00000c060000413d00000c5b010000410000000000100443000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2c011001c70000800b020000392ef62eec0000040f0000000100200190000021c20000613d000000000101043b00000c5c0010009c000008160000213d00000013030000290013000d0030002d000000120010006b000021500000c13d000000130100002900000c270010009c000022b50000213d000000130100002900000020011002100000001103000029000000000203041a00000bbf02200197000000000112019f000000000013041b000022d60000013d000000000001042f00000c6d0600004100000000006504350000000000140435000000100100002900000000001304350000006401200039000000130300002900000000003104350000006401000039000000000012043500000c450020009c00000a5a0000213d000000a0010000390000000001210019000000400010043f00000014010000292ef62dad0000040f0000000001000411000000000010043f0000003e01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a000000ff001001900000000001000411000021eb0000613d000000140100008a00000000011000310000000201100367000000000101043b00000060011002700000001303000029000000110230006b00000c060000413d0013000e0020007400000c060000413d00001a5d0000613d0000000f0200002900110c260020019b000000140200002900000c6a0020009c0000224b0000c13d00000000010004140000001102000029000000040020008c000022610000c13d000000010100003200001a5d0000613d00000c320010009c00000a5a0000213d0000001f0210003900000cc6022001970000003f0220003900000cc603200197000000400200043d0000000003320019000000000023004b0000000004000039000000010400403900000c320030009c00000a5a0000213d000000010040019000000a5a0000c13d000000400030043f000000000512043600000cc6021001980000001f0310018f00000000012500190000000304000367000022170000613d000000000604034f000000006706043c0000000005750436000000000015004b000022130000c13d000000000003004b00001a5d0000613d000000000224034f0000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f000000000021043500001a5d0000013d0000001f0430003900000c53044001970000003f0440003900000c5404400197000000400500043d0000000004450019000000000054004b0000000006000039000000010600403900000c320040009c00000a5a0000213d000000010060019000000a5a0000c13d000000400040043f0000001f0430018f000000000635043600000c3c0530019800000000035600190000223d0000613d000000000701034f000000007807043c0000000006860436000000000036004b000022390000c13d000000000004004b000021880000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000021880000013d00000c2601100197000000110010006c00001a5d0000613d000000400200043d0000004403200039000000240420003900000020052000390000000006000410000000000061004b000022a00000c13d00000c6e01000041000000000015043500000011010000290000000000140435000000130100002900000000001304350000004401000039000000000012043500000c4e0020009c00000a5a0000213d0000008001000039000022ad0000013d00000bbf0010009c00000bbf01008041000000c00110021000000c30011001c700008009020000390000001303000029000000110400002900000000050000192ef62ee70000040f00030000000103550000000003010019000000600330027000010bbf0030019d00000bbf03300198000022950000613d0000001f0430003900000c53044001970000003f0440003900000c5404400197000000400500043d0000000004450019000000000054004b0000000006000039000000010600403900000c320040009c00000a5a0000213d000000010060019000000a5a0000c13d000000400040043f0000001f0430018f000000000635043600000c3c053001980000000003560019000022880000613d000000000701034f000000007807043c0000000006860436000000000036004b000022840000c13d000000000004004b000022950000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000010020019000001a5d0000c13d000000400100043d00000024021000390000001303000029000000000032043500000c6f0200004100000000002104350000000402100039000000110300002900000a320000013d00000c6d0600004100000000006504350000000000140435000000110100002900000000001304350000006401200039000000130300002900000000003104350000006401000039000000000012043500000c450020009c00000a5a0000213d000000a0010000390000000001210019000000400010043f00000014010000292ef62dad0000040f00001a5d0000013d000000130200002900000c750020009c000022bf0000413d000000400100043d000000640210003900000c78030000410000000000320435000000440210003900000c7903000041000000000032043500000024021000390000002703000039000009b70000013d000000400200043d00000c760020009c00000a5a0000213d0000004003200039000000400030043f0000000003120436000000130100002900000000001304350000013d01000039000000000101041a00000c320010009c00000a5a0000213d00000001041000390000013d05000039000000000045041b000000000050043f000000000202043300000bbf0220019700000000030304330000002003300210000000000223019f00000c610110009a000000000021041b0000000001000411000000000010043f0000003e01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000004e0000613d000000000101043b000000000101041a000000ff00100190000022ec0000613d000000140100008a00000000011000310000000201100367000000000101043b000b006000100278000000400100043d00000020021000390000000d030000290000000000320435000000000001043500000bbf0010009c00000bbf010080410000004001100210000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000112019f00000c2d011001c70000000b0200002900000c26062001970000800d02000039000000040300003900000c7704000041000000150500002900000014070000292ef62ee70000040f00000001002001900000004e0000613d00000d700000013d0000000c0200002900000c26052001980000230b0000c13d000000400100043d00000cb902000041000023280000013d0000000203000039000000000203041a00000cb102200197000000a00410021000000cb204400197000000000224019f000000000252019f000000000023041b000000400200043d000000000012043500000bbf0020009c00000bbf020080410000004001200210000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000112019f00000bc7011001c70000800d0200003900000cb3040000412ef62ee70000040f00000001002001900000004e0000613d0000000d0100002900000c2605100198000023300000c13d000000400100043d00000cb80200004100000000002104350000000402100039000000000002043500000bbf0010009c00000bbf01008041000000400110021000000c25011001c700002ef8000104300000000402000039000000000102041a00000c8701100197000000000151019f000000000012041b000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c30011001c70000800d02000039000000020300003900000cb4040000412ef62ee70000040f00000001002001900000004e0000613d00000cac010000410000016d02000039000000000012041b000000000100001900002ef70001042e00000000430104340000000001320436000000000003004b000023510000613d000000000200001900000000052100190000000006240019000000000606043300000000006504350000002002200039000000000032004b0000234a0000413d000000000231001900000000000204350000001f0230003900000cc6022001970000000001210019000000000001042d00000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b000023660000613d000000000400001900000000051400190000000006430019000000000606043300000000006504350000002004400039000000000024004b0000235f0000413d000000000321001900000000000304350000001f0220003900000cc6022001970000000001210019000000000001042d00000cca0010009c000023710000813d0000004001100039000000400010043f000000000001042d00000c2401000041000000000010043f0000004101000039000000040010043f00000c250100004100002ef8000104300000001f0220003900000cc6022001970000000001120019000000000021004b0000000002000039000000010200403900000c320010009c000023830000213d0000000100200190000023830000c13d000000400010043f000000000001042d00000c2401000041000000000010043f0000004101000039000000040010043f00000c250100004100002ef8000104300000000105000039000000000405041a000000010640019000000001024002700000007f0220618f0000001f0020008c00000000010000390000000101002039000000000016004b000023b70000c13d000000400100043d0000000003210436000000000006004b000023a40000613d000000000050043f000000000002004b000023aa0000613d00000ca30500004100000000040000190000000006430019000000000705041a000000000076043500000001055000390000002004400039000000000024004b0000239c0000413d000023ab0000013d00000cc5044001970000000000430435000000000002004b00000020040000390000000004006039000023ab0000013d00000000040000190000003f0240003900000cc6032001970000000002130019000000000032004b0000000003000039000000010300403900000c320020009c000023bd0000213d0000000100300190000023bd0000c13d000000400020043f000000000001042d00000c2401000041000000000010043f0000002201000039000000040010043f00000c250100004100002ef80001043000000c2401000041000000000010043f0000004101000039000000040010043f00000c250100004100002ef80001043000000c2602200197000000000020043f000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f0000000100200190000023d10000613d000000000101043b000000000001042d000000000100001900002ef8000104300013000000000002001300000006001d000800000005001d000700000004001d000e00000003001d000d00000002001d000900000001001d000000000010043f0000000a01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f0000000100200190000025530000613d000000400200043d000f00000002001d00000ccb0020009c0000255b0000813d000000000101043b0000000f030000290000010002300039000000400020043f000000000201041a00000000042304360000000102100039000000000202041a000600000004001d00000000002404350000000202100039000000000202041a0000004004300039000500000004001d00000000002404350000000302100039000000000202041a000000600530003900000000002504350000000402100039000000000202041a000000800630003900000000002604350000000502100039000000000202041a000000a0073000390000000000270435000000c0083000390000000602100039000000000202041a00000c260220019700000000002804350000000701100039000000000201041a0000000103200190000000010a2002700000007f0aa0618f0000001f00a0008c00000000040000390000000104002039000000000043004b0000256a0000c13d000000400900043d0000000004a90436000000000003004b0000243c0000613d000400000004001d00120000000a001d000a00000009001d000b00000008001d000c00000007001d001000000006001d001100000005001d000000000010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000bc7011001c700008010020000392ef62eec0000040f0000000100200190000025530000613d000000120a00002900000000000a004b000024420000613d000000000201043b0000000001000019000000110500002900000010060000290000000c070000290000000b080000290000000a09000029000000040b00002900000000031b0019000000000402041a0000000000430435000000010220003900000020011000390000000000a1004b000024340000413d000024480000013d00000cc501200197000000000014043500000000000a004b00000020010000390000000001006039000024480000013d0000000001000019000000110500002900000010060000290000000c070000290000000b080000290000000a090000290000003f0110003900000cc6021001970000000001920019000000000021004b0000000002000039000000010200403900000c320010009c0000255b0000213d00000001002001900000255b0000c13d000000400010043f0000000f01000029000000e001100039000000000091043500000000020704330000000001050433000c00000001001d0000000001080433000a0c260010019b0000000001060433000000000001004b000b00000002001d000025060000613d000300000001001d00000002010003670000001302100360000000000302043b0000000002000031000000130420006a0000001f0440008a00000c4f0540019700000c4f06300197000000000756013f000000000056004b000000000500001900000c4f05004041000000000043004b000000000400001900000c4f0400804100000c4f0070009c000000000504c019000000000005004b000025530000c13d0000001303300029000000000431034f000000000404043b001100000004001d00000c320040009c000025530000213d000000110400002900000005044002100000000002420049000000200630003900000c4f0320019700000c4f04600197000000000534013f000000000034004b000000000300001900000c4f03004041001000000006001d000000000026004b000000000200001900000c4f0200204100000c4f0050009c000000000302c019000000000003004b000025530000c13d0000001302000029000400600020003d0000000402100360000000000202043b00000c260020009c000025530000213d000000040400002900010040004000920000000103100360000000000303043b00020020004000920000000201100360000000000401043b0000006002200210000000400100043d00000074051000390000000000250435000000540210003900000000004204350000000d02000029000000600420021000000020021000390000000000420435000000340410003900000000003404350000006803000039000000000031043500000c450010009c0000255b0000213d000000a003100039000000400030043f00000bbf0020009c00000bbf020080410000004002200210000000000101043300000bbf0010009c00000bbf010080410000006001100210000000000121019f000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000112019f00000c30011001c700008010020000392ef62eec0000040f0000000100200190000025530000613d000000000101043b000000110000006b000024f00000613d00000000040000190000000002000019000024c70000013d0000001304000029000000000101043b0000000104400039000000110040006c000024f00000813d0000000103200210000000000002004b000024cd0000613d00000000022300d9000000020020008c000025550000c13d001200000003001d001300000004001d000000050240021000000010022000290000000202200367000000000202043b000000000021004b000024e30000a13d000000000020043f000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f0000000100200190000025530000613d000000120200002900000001022001bf000024c20000013d000000000010043f000000200020043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f0000000100200190000025530000613d0000001202000029000024c20000013d000000030010006c000025060000c13d00000002020003670000000101200360000000000101043b000000000001004b00000000030100190000000c03006029000c00000003001d001300010000003d0000000201200360000000000101043b00000cc80010009c000025070000613d0000000402200360000000000202043b00000c260020009c000025530000213d000000000002004b000b00000001001d000a00000002c01d000025070000013d001300000000001d0000000901000029000000000010043f0000000b01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f0000000100200190000025530000613d000000000101043b0000000d0200002900000c2602200197000000000020043f000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f0000000100200190000025530000613d000000070200002900000c26022001970000000a05000029000000000025004b00000008040000290000000b06000029000025700000c13d000000000046004b000025700000c13d000000000101043b000000000101041a0000000e020000290000000001210019000000000002004b000025610000613d000000000021004b000025550000413d0000000c0010006c0000000e02000029000025610000213d00000005010000290000000001010433000000000021001a000025550000413d0000000e0210002900000006010000290000000001010433000000000012004b000025800000213d0000000f010000290000000001010433001200000001001d00000c2b010000410000000000100443000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2c011001c70000800b020000392ef62eec0000040f00000001002001900000258c0000613d000000000101043b0000001204000029000000000014004b0000258d0000213d0000001301000029000000000001042d000000000100001900002ef80001043000000c2401000041000000000010043f0000001101000039000000040010043f00000c250100004100002ef80001043000000c2401000041000000000010043f0000004101000039000000040010043f00000c250100004100002ef800010430000000400200043d0000002403200039000000000013043500000c8101000041000000000012043500000004012000390000000c030000290000000000310435000025940000013d00000c2401000041000000000010043f0000002201000039000000040010043f00000c250100004100002ef800010430000000400100043d00000064031000390000000000630435000000440310003900000000005304350000002403100039000000000043043500000c820300004100000000003104350000000403100039000000000023043500000bbf0010009c00000bbf01008041000000400110021000000c41011001c700002ef800010430000000400300043d0000002404300039000000000024043500000c800200004100000000002304350000000402300039000000000012043500000bbf0030009c00000bbf03008041000000400130021000000c70011001c700002ef800010430000000000001042f000000400200043d0000002403200039000000000013043500000c7f0100004100000000001204350000000401200039000000000041043500000bbf0020009c00000bbf02008041000000400120021000000c70011001c700002ef8000104300001000000000002000000000301041a000100000002001d000000000023004b000025ab0000a13d000000000010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000bc7011001c700008010020000392ef62eec0000040f0000000100200190000025b10000613d000000000101043b0000000101100029000000000001042d00000c2401000041000000000010043f0000003201000039000000040010043f00000c250100004100002ef800010430000000000100001900002ef80001043000030000000000020000000801000039000000000201041a0000000901000039000000000101041a000000000021001a000025eb0000413d0000000001210019000100000002001d000000000021004b000025e30000a13d000000010110008a000300000001001d000000000010043f0000000a01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f0000000100200190000025e00000613d000000000101043b000000000101041a000200000001001d00000c2b010000410000000000100443000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2c011001c70000800b020000392ef62eec0000040f0000000100200190000025e20000613d000000000101043b000000020010006c00000001020000290000000301000029000025bc0000413d000000000001042d000000000100001900002ef800010430000000000001042f000000400100043d00000c6502000041000000000021043500000bbf0010009c00000bbf01008041000000400110021000000c5a011001c700002ef80001043000000c2401000041000000000010043f0000001101000039000000040010043f00000c250100004100002ef8000104300000000201000039000000000201041a00000c2601200197000000a0022002700000ffff0220018f000000000001042d0000000002010019000000400100043d00000cca0010009c000026040000813d0000004003100039000000400030043f000000000202041a00000020031000390000002004200270000000000043043500000bbf022001970000000000210435000000000001042d00000c2401000041000000000010043f0000004101000039000000040010043f00000c250100004100002ef800010430000300000000000200000c2601100198000026430000613d000200000003001d00030c260020019c0000264d0000613d000100000001001d000000000010043f0000007101000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000000303000029000026410000613d000000000101043b000000000030043f000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000003060000290000000100200190000026410000613d000000000101043b0000000202000029000000000021041b000000400100043d000000000021043500000bbf0010009c00000bbf010080410000004001100210000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000112019f00000bc7011001c70000800d02000039000000030300003900000c890400004100000001050000292ef62ee70000040f0000000100200190000026410000613d000000000001042d000000000100001900002ef800010430000000400100043d000000640210003900000c8c030000410000000000320435000000440210003900000c8d03000041000000000032043500000024021000390000002403000039000026560000013d000000400100043d000000640210003900000c8a030000410000000000320435000000440210003900000c8b03000041000000000032043500000024021000390000002203000039000000000032043500000bc202000041000000000021043500000004021000390000002003000039000000000032043500000bbf0010009c00000bbf01008041000000400110021000000c41011001c700002ef800010430000000400400043d000027110020008c0000267e0000813d00000c26051001980000268a0000613d0000000203000039000000000103041a00000cb101100197000000a00620021000000cb206600197000000000116019f000000000151019f000000000013041b000000000024043500000bbf0040009c00000bbf040080410000004001400210000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000112019f00000bc7011001c70000800d0200003900000cb3040000412ef62ee70000040f0000000100200190000026930000613d000000000001042d0000002401400039000000000021043500000cb501000041000000000014043500000004014000390000271002000039000000000021043500000bbf0040009c00000bbf04008041000000400140021000000c70011001c700002ef80001043000000cb90100004100000000001404350000000401400039000000000001043500000bbf0040009c00000bbf04008041000000400140021000000c25011001c700002ef800010430000000000100001900002ef8000104300003000000000002000100000003001d000200000002001d00000c2601100197000300000001001d000000000010043f0000007101000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f0000000100200190000026f10000613d000000000101043b000000020200002900000c2602200197000200000002001d000000000020043f000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f0000000100200190000026f10000613d000000000101043b000000000101041a00000cc80010009c000026f00000613d000000010210006c000026f30000413d000000030000006b000027040000613d000100000002001d000000020000006b0000270e0000613d0000000301000029000000000010043f0000007101000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f0000000100200190000026f10000613d000000000101043b0000000202000029000000000020043f000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f0000000100200190000026f10000613d000000000101043b0000000102000029000000000021041b000000400100043d000000000021043500000bbf0010009c00000bbf010080410000004001100210000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000112019f00000bc7011001c70000800d02000039000000030300003900000c8904000041000000030500002900000002060000292ef62ee70000040f0000000100200190000026f10000613d000000000001042d000000000100001900002ef800010430000000400100043d000000440210003900000c8e03000041000000000032043500000024021000390000001d03000039000000000032043500000bc202000041000000000021043500000004021000390000002003000039000000000032043500000bbf0010009c00000bbf01008041000000400110021000000c3e011001c700002ef800010430000000400100043d000000640210003900000c8c030000410000000000320435000000440210003900000c8d03000041000000000032043500000024021000390000002403000039000027170000013d000000400100043d000000640210003900000c8a030000410000000000320435000000440210003900000c8b03000041000000000032043500000024021000390000002203000039000000000032043500000bc202000041000000000021043500000004021000390000002003000039000000000032043500000bbf0010009c00000bbf01008041000000400110021000000c41011001c700002ef8000104300004000000000002000200000003001d00040c260010019c000027ee0000613d00030c260020019c000027f80000613d0000016d01000039000000000101041a000100000001001d000000000010043f0000000501000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f0000000100200190000027ec0000613d000000000101043b000000000000043f000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f0000000100200190000027ec0000613d000000000101043b000000000101041a000000ff00100190000027830000c13d0000000101000029000000000010043f0000000501000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f0000000100200190000027ec0000613d000000000101043b0000000402000029000000000020043f000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f0000000100200190000027ec0000613d000000000101043b000000000101041a000000ff00100190000027830000c13d0000000101000029000000000010043f0000000501000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f0000000100200190000027ec0000613d000000000101043b0000000302000029000000000020043f000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f0000000100200190000027ec0000613d000000000101043b000000000101041a000000ff00100190000028160000613d0000000401000029000000000010043f0000007001000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f0000000100200190000027ec0000613d0000007003000039000000000101043b000000000101041a0001000200100074000028020000413d0000000401000029000000000010043f000000200030043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f0000000100200190000027ec0000613d000000000101043b0000000102000029000000000021041b0000000301000029000000000010043f0000007001000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f0000000100200190000027ec0000613d000000000101043b000000000201041a00000002030000290000000002320019000000000021041b000000400100043d000000000031043500000bbf0010009c00000bbf010080410000004001100210000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000112019f00000bc7011001c70000800d02000039000000030300003900000c7304000041000000040500002900000003060000292ef62ee70000040f0000000100200190000027ec0000613d0000000401000029000000000010043f0000013b01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f0000000100200190000027ec0000613d000000000101043b000000000101041a000400000001001d0000000301000029000000000010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f0000000100200190000027ec0000613d000000000101043b000000000201041a000000040100002900000c260110019700000c260220019700000002030000292ef62b5a0000040f000000000001042d000000000100001900002ef800010430000000400100043d000000640210003900000cd1030000410000000000320435000000440210003900000cd2030000410000000000320435000000240210003900000025030000390000280b0000013d000000400100043d000000640210003900000ccf030000410000000000320435000000440210003900000cd0030000410000000000320435000000240210003900000023030000390000280b0000013d000000400100043d000000640210003900000ccc030000410000000000320435000000440210003900000ccd03000041000000000032043500000024021000390000002603000039000000000032043500000bc202000041000000000021043500000004021000390000002003000039000000000032043500000bbf0010009c00000bbf01008041000000400110021000000c41011001c700002ef800010430000000400100043d000000440210003900000cce03000041000000000032043500000024021000390000001503000039000000000032043500000bc202000041000000000021043500000004021000390000002003000039000000000032043500000bbf0010009c00000bbf01008041000000400110021000000c3e011001c700002ef8000104300002000000000002000200000002001d000100000001001d000000000010043f0000000501000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000284a0000613d000000000101043b000000020200002900000c2602200197000200000002001d000000000020043f000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f00000001002001900000284a0000613d000000000101043b000000000101041a000000ff001001900000284c0000613d000000000001042d000000000100001900002ef800010430000000400100043d00000024021000390000000103000029000000000032043500000cbf02000041000000000021043500000004021000390000000203000029000000000032043500000bbf0010009c00000bbf01008041000000400110021000000c70011001c700002ef8000104300003000000000002000200000002001d000300000001001d000000000010043f0000000501000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f0000000100200190000029030000613d000000000101043b000000020200002900000c2602200197000200000002001d000000000020043f000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f0000000100200190000029030000613d000000000101043b000000000101041a000000ff00100190000029050000613d0000000301000029000000000010043f0000000501000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f0000000100200190000029030000613d000000000101043b0000000202000029000000000020043f000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f0000000100200190000029030000613d000000000101043b000000000201041a00000cc502200197000000000021041b000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c30011001c70000800d020000390000000403000039000000000700041100000cd304000041000000030500002900000002060000292ef62ee70000040f0000000100200190000029030000613d0000000301000029000000000010043f0000000701000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f0000000100200190000029030000613d000000000101043b0000000202000029000000000020043f0000000201100039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f0000000100200190000029030000613d000000000101043b000000000101041a000100000001001d0000000301000029000000000010043f0000000701000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f0000000100200190000029030000613d000000000101043b0000000102000029000000000020043f0000000101100039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f0000000100200190000029030000613d000000000101043b000000000201041a00000c8702200197000000000021041b0000000301000029000000000010043f0000000701000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f0000000100200190000029030000613d000000000101043b0000000202000029000000000020043f0000000201100039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f0000000100200190000029030000613d000000000101043b000000000001041b000000000001042d000000000100001900002ef800010430000000400100043d00000024021000390000000303000029000000000032043500000cbf02000041000000000021043500000004021000390000000203000029000000000032043500000bbf0010009c00000bbf01008041000000400110021000000c70011001c700002ef8000104300000000104000039000000000304041a000000010530019000000001093002700000007f0990618f0000001f0090008c00000000020000390000000102002039000000000025004b000029c70000c13d000000400600043d0000000002960436000000000005004b0000292e0000613d000000000040043f000000000009004b000029340000613d00000ca30500004100000000030000190000000007320019000000000805041a000000000087043500000001055000390000002003300039000000000093004b000029260000413d000029350000013d00000cc5033001970000000000320435000000000009004b00000020030000390000000003006039000029350000013d00000000030000190000003f03300039000000200500008a000000000753016f0000000003670019000000000073004b0000000007000039000000010700403900000c320030009c000029c10000213d0000000100700190000029c10000c13d000000400030043f000000007801043400000c320080009c000029c10000213d000000200090008c000029550000413d000000000040043f0000001f0a800039000000050aa0027000000ca40aa0009a000000200080008c00000ca30a0040410000001f09900039000000050990027000000ca40990009a00000000009a004b000029550000813d00000000000a041b000000010aa0003900000000009a004b000029510000413d0000001f0080008c000029730000a13d000000000040043f000000000b5801700000297d0000613d00000ca309000041000000200a000039000000010cb0008a000000050cc0027000000ca50cc0009a000000000d1a0019000000000d0d04330000000000d9041b000000200aa0003900000001099000390000000000c9004b0000295f0000c13d00000000008b004b000029700000813d000000030b800210000000f80bb0018f00000cc80bb0027f00000cc80bb00167000000000a1a0019000000000a0a0433000000000aba016f0000000000a9041b000000010880021000000001088001bf000029830000013d000000000008004b000029820000613d000000030980021000000cc80990027f00000cc809900167000000000a07043300000000099a016f0000000108800210000000000889019f000029830000013d000000200a00003900000ca30900004100000000008b004b000029680000413d000029700000013d0000000008000019000000000084041b000000400400003900000000044304360000000006060433000000400830003900000000006804350000006008300039000000000006004b000029940000613d0000000009000019000000000a890019000000000b920019000000000b0b04330000000000ba04350000002009900039000000000069004b0000298d0000413d000000000268001900000000000204350000001f02600039000000000252016f00000000062800190000000002360049000000000024043500000000020104330000000001260436000000000002004b000029a70000613d000000000400001900000000061400190000000008470019000000000808043300000000008604350000002004400039000000000024004b000029a00000413d0000001f04200039000000000454016f000000000221001900000000000204350000000002340049000000000112001900000bbf0010009c00000bbf01008041000000600110021000000bbf0030009c00000bbf030080410000004002300210000000000121019f000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000121019f00000c30011001c70000800d02000039000000010300003900000ca6040000412ef62ee70000040f0000000100200190000029cd0000613d000000000001042d00000c2401000041000000000010043f0000004101000039000000040010043f00000c250100004100002ef80001043000000c2401000041000000000010043f0000002201000039000000040010043f00000c250100004100002ef800010430000000000100001900002ef80001043000000c2605100198000029e20000613d0000000401000039000000000201041a00000c8702200197000000000252019f000000000021041b000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c30011001c70000800d02000039000000020300003900000cb4040000412ef62ee70000040f0000000100200190000029ec0000613d000000000001042d000000400100043d00000cb80200004100000000002104350000000402100039000000000002043500000bbf0010009c00000bbf01008041000000400110021000000c25011001c700002ef800010430000000000100001900002ef8000104300004000000000002000400000002001d00000c2601100197000300000001001d000000000010043f0000013b01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f000000010020019000002a350000613d000000000101043b000000000101041a000200000001001d0000007001000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f000000010020019000002a350000613d000000000101043b000000000101041a000100000001001d0000013b01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f000000010020019000002a350000613d000000020200002900000c2606200197000000040200002900000c2607200197000000000101043b000000000201041a00000c8702200197000000000272019f000000000021041b000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c30011001c70000800d02000039000000040300003900000cd4040000410000000305000029000300000006001d2ef62ee70000040f000000010020019000002a350000613d0000000301000029000000040200002900000001030000292ef62b5a0000040f000000000001042d000000000100001900002ef80001043000000c5f0010009c00002a3a0000813d000000000001042d000000400100043d000000640210003900000c7a030000410000000000320435000000440210003900000c7b03000041000000000032043500000024021000390000002603000039000000000032043500000bc202000041000000000021043500000004021000390000002003000039000000000032043500000bbf0010009c00000bbf01008041000000400110021000000c41011001c700002ef80001043000000c940010009c00002a510000813d000000000001042d000000400100043d000000640210003900000c96030000410000000000320435000000440210003900000c9703000041000000000032043500000024021000390000002603000039000000000032043500000bc202000041000000000021043500000004021000390000002003000039000000000032043500000bbf0010009c00000bbf01008041000000400110021000000c41011001c700002ef8000104300000000001000411000000000010043f0000003e01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f000000010020019000002a7d0000613d000000000101043b000000000101041a000000ff00100190000000000100041100002a7c0000613d000000140100008a00000000011000310000000201100367000000000101043b0000006001100270000000000001042d000000000100001900002ef8000104300002000000000002000000d605000039000000000405041a000000010640019000000001024002700000007f0220618f0000001f0020008c00000000010000390000000101002039000000000016004b00002b530000c13d000000400300043d0000000001230436000000000006004b00002a9b0000613d000000000050043f000000000002004b00002aa10000613d00000c310500004100000000040000190000000006410019000000000705041a000000000076043500000001055000390000002004400039000000000024004b00002a930000413d00002aa20000013d00000cc5044001970000000000410435000000000002004b0000002004000039000000000400603900002aa20000013d00000000040000190000003f02400039000000200900008a000000000492016f0000000002340019000000000042004b0000000004000039000000010400403900000c320020009c00002b4b0000213d000000010040019000002b4b0000c13d000000400020043f0000000003030433000000000003004b00002ac60000613d00000bbf0030009c00000bbf03008041000000600230021000000bbf0010009c00000bbf010080410000004001100210000000000112019f000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000112019f00000c30011001c700008010020000392ef62eec0000040f000000010020019000002b510000613d000000400200043d000000000801043b000000200900008a00002aca0000013d000000d401000039000000000801041a000000000008004b00000c3308006041000000d705000039000000000405041a000000010640019000000001034002700000007f0330618f0000001f0030008c00000000010000390000000101002039000000000114013f000000010010019000002b530000c13d0000000001320436000000000006004b00002ae50000613d000000000050043f000000000003004b00002aeb0000613d00000c340500004100000000040000190000000006410019000000000705041a000000000076043500000001055000390000002004400039000000000034004b00002add0000413d00002aec0000013d00000cc5044001970000000000410435000000000003004b0000002004000039000000000400603900002aec0000013d00000000040000190000003f03400039000000000393016f0000000004230019000000000034004b0000000003000039000000010300403900000c320040009c00002b4b0000213d000000010030019000002b4b0000c13d000000400040043f0000000002020433000000000002004b00002b100000613d000200000008001d00000bbf0020009c00000bbf02008041000000600220021000000bbf0010009c00000bbf010080410000004001100210000000000112019f000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000112019f00000c30011001c700008010020000392ef62eec0000040f000000010020019000002b510000613d000000400400043d000000000101043b000000020800002900002b140000013d000000d501000039000000000101041a000000000001004b00000c3301006041000200000004001d0000006002400039000000000012043500000040014000390000000000810435000000200240003900000c3501000041000100000002001d000000000012043500000c36010000410000000000100443000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2c011001c70000800b020000392ef62eec0000040f000000010020019000002b590000613d000000000101043b0000000204000029000000a0024000390000000003000410000000000032043500000080024000390000000000120435000000a001000039000000000014043500000c370040009c000000000204001900002b4b0000213d000000c001200039000000400010043f000000010100002900000bbf0010009c00000bbf010080410000004001100210000000000202043300000bbf0020009c00000bbf020080410000006002200210000000000112019f000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000112019f00000c30011001c700008010020000392ef62eec0000040f000000010020019000002b510000613d000000000101043b000000000001042d00000c2401000041000000000010043f0000004101000039000000040010043f00000c250100004100002ef800010430000000000100001900002ef80001043000000c2401000041000000000010043f0000002201000039000000040010043f00000c250100004100002ef800010430000000000001042f000900000000000200000c260410019700000c2601200197000800000001001d000900000004001d000000000014004b00002cbe0000613d000000000003004b00002cbe0000613d000000090000006b000700000003001d00002c0c0000613d0000000901000029000000000010043f0000013c01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f000000010020019000002cbf0000613d000000000101043b000000000201041a000600000002001d000000000002004b00002ce70000613d000500000001001d000000000010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000bc7011001c700008010020000392ef62eec0000040f0000000100200190000000070400002900002cbf0000613d000000400200043d00000cca0020009c00002cea0000813d000000000101043b0000004003200039000000400030043f000000060300002900020001003000920000000201100029000000000101041a00000020051002700000002003200039000000000053043500000bbf01100197000400000001001d0000000000120435000300000005001d000600000045005300002cf50000413d00000c5b010000410000000000100443000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2c011001c70000800b020000392ef62eec0000040f000000010020019000002cc10000613d000000000101043b00000c940010009c00002cc20000813d000000040010006b00002bbe0000c13d000000060100002900000c270010009c00002cc90000213d0000000501000029000000000010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000bc7011001c700008010020000392ef62eec0000040f000000010020019000002cbf0000613d000000000101043b0000000201100029000000000201041a00000bbf0220019700000006040000290000002003400210000000000232019f000000000021041b00002bf70000013d00000c5b010000410000000000100443000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2c011001c70000800b020000392ef62eec0000040f000000010020019000002cc10000613d000000000101043b00000c5c0010009c00002cc20000213d00000c5f0010009c000000060300002900002cd30000813d00000c750030009c00002cc90000813d000000400400043d00000c760040009c00002cea0000213d0000004002400039000000400020043f0000000001140436000400000001001d00000000003104350000000501000029000000000101041a00000c320010009c00002cea0000213d000200000004001d000100000001001d00000001011000390000000502000029000000000012041b000000000020043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000bc7011001c700008010020000392ef62eec0000040f000000010020019000002cbf0000613d000000000101043b00000001011000290000000202000029000000000202043300000bbf02200197000000040300002900000000030304330000002003300210000000000223019f000000000021041b0000000604000029000000400100043d000000200210003900000000004204350000000302000029000000000021043500000bbf0010009c00000bbf010080410000004001100210000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000112019f00000c2d011001c70000800d02000039000000020300003900000cd50400004100000009050000292ef62ee70000040f000000010020019000002cbf0000613d000000080000006b00002cbe0000613d0000000801000029000000000010043f0000013c01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f000000010020019000002cbf0000613d000000000101043b000000000201041a000000000002004b000900000001001d00002c670000613d000600000002001d000000000010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000bc7011001c700008010020000392ef62eec0000040f0000000704000029000000010020019000002cbf0000613d000000400200043d00000c760020009c00002cea0000213d000000000101043b0000004003200039000000400030043f000000060300002900040001003000920000000401100029000000000101041a00000020051002700000002003200039000000000053043500000bbf01100197000500000001001d0000000000120435000600000005001d000000000045001a00002cf50000413d00000c5b010000410000000000100443000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2c011001c70000800b020000392ef62eec0000040f000000010020019000002cc10000613d000000000101043b00000c5c0010009c000000070300002900002cc20000213d0000000603300029000000050010006b000700000003001d00002c700000c13d00000c270030009c00002cc90000213d0000000901000029000000000010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000bc7011001c700008010020000392ef62eec0000040f0000000704000029000000010020019000002cbf0000613d000000000101043b0000000401100029000000000201041a00000bbf022001970000002003400210000000000232019f00002ca80000013d000000400100043d00000c760010009c00002cea0000213d0000004002100039000000400020043f000000200210003900000000000204350000000000010435000600000000001d00000c5b010000410000000000100443000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2c011001c70000800b020000392ef62eec0000040f000000010020019000002cc10000613d000000000101043b00000c5c0010009c000000070300002900002cc20000213d00000bbf0010009c00002cd30000213d00000c270030009c00002cc90000213d000000400400043d00000c760040009c00002cea0000213d0000004002400039000000400020043f0000000001140436000500000001001d00000000003104350000000901000029000000000101041a00000c320010009c00002cea0000213d000400000004001d000300000001001d00000001011000390000000902000029000000000012041b000000000020043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000bc7011001c700008010020000392ef62eec0000040f0000000704000029000000010020019000002cbf0000613d000000000101043b00000003011000290000000402000029000000000202043300000bbf02200197000000050300002900000000030304330000002003300210000000000223019f000000000021041b000000400100043d000000200210003900000000004204350000000602000029000000000021043500000bbf0010009c00000bbf010080410000004001100210000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000112019f00000c2d011001c70000800d02000039000000020300003900000cd50400004100000008050000292ef62ee70000040f000000010020019000002cbf0000613d000000000001042d000000000100001900002ef800010430000000000001042f000000400100043d000000640210003900000c96030000410000000000320435000000440210003900000c970300004100002cd90000013d000000400100043d000000640210003900000c78030000410000000000320435000000440210003900000c790300004100000000003204350000002402100039000000270300003900002cdc0000013d000000400100043d000000640210003900000c7a030000410000000000320435000000440210003900000c7b03000041000000000032043500000024021000390000002603000039000000000032043500000bc202000041000000000021043500000004021000390000002003000039000000000032043500000bbf0010009c00000bbf01008041000000400110021000000c41011001c700002ef800010430000000400100043d00000c760010009c00002cf00000a13d00000c2401000041000000000010043f0000004101000039000000040010043f00000c250100004100002ef8000104300000004002100039000000400020043f00000020021000390000000000020435000000000001043500000c2401000041000000000010043f0000001101000039000000040010043f00000c250100004100002ef8000104300001000000000002000100000002001d00000c2601100197000000000010043f0000013b01000039000000200010043f000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2d011001c700008010020000392ef62eec0000040f000000010020019000002d140000613d000000000101043b000000000101041a000000000000043f00000c7402000041000000000202041a00000c260110019700000c260220019700000001030000292ef62b5a0000040f000000000001042d000000000100001900002ef8000104300003000000000002000000400200043d0000013d04000039000000000304041a000000000003004b00002d480000613d000000000040043f00000cca0020009c00002d7b0000813d0000004004200039000000400040043f00000c620430009a0000002003200039000100000004001d000000000404041a0000002005400270000000000053043500000bbf03400197000200000003001d0000000000320435000300000015005300002d890000413d00000c5b010000410000000000100443000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2c011001c70000800b020000392ef62eec0000040f000000010020019000002d810000613d000000000101043b00000c940010009c00002d820000813d000000020010006b0000013d01000039000000030200002900002d520000c13d00000c270020009c00002d8f0000213d000000000010043f00000020012002100000000103000029000000000203041a00000bbf02200197000000000112019f000000000013041b000000000001042d00000c760020009c00002d7b0000213d0000004003200039000000400030043f000000200320003900000000000304350000000000020435000000000001004b000300000000001d00002d890000c13d00000c5b010000410000000000100443000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000c2c011001c70000800b020000392ef62eec0000040f000000010020019000002d810000613d000000000101043b00000c5c0010009c00002d820000213d00000c5f0010009c0000013d05000039000000030400002900002d990000813d00000c750040009c00002d8f0000813d000000400200043d00000c760020009c00002d7b0000213d0000004003200039000000400030043f00000000031204360000000000430435000000000105041a00000c320010009c00002d7b0000213d0000000104100039000000000045041b000000000050043f000000000202043300000bbf0220019700000000030304330000002003300210000000000223019f00000c610110009a000000000021041b000000000001042d00000c2401000041000000000010043f0000004101000039000000040010043f00000c250100004100002ef800010430000000000001042f000000400100043d000000640210003900000c96030000410000000000320435000000440210003900000c970300004100002d9f0000013d00000c2401000041000000000010043f0000001101000039000000040010043f00000c250100004100002ef800010430000000400100043d000000640210003900000c78030000410000000000320435000000440210003900000c790300004100000000003204350000002402100039000000270300003900002da20000013d000000400100043d000000640210003900000c7a030000410000000000320435000000440210003900000c7b03000041000000000032043500000024021000390000002603000039000000000032043500000bc202000041000000000021043500000004021000390000002003000039000000000032043500000bbf0010009c00000bbf01008041000000400110021000000c41011001c700002ef8000104300004000000000002000000400400043d00000cca0040009c00002e710000813d00000c26051001970000004001400039000000400010043f000000200140003900000cd60300004100000000003104350000002001000039000000000014043500000000230204340000000001000414000000040050008c00002de80000c13d000000010100003200002e240000613d00000c320010009c00002e710000213d0000001f0310003900000cc6033001970000003f0330003900000cc603300197000000400a00043d00000000033a00190000000000a3004b0000000004000039000000010400403900000c320030009c00002e710000213d000000010040019000002e710000c13d000000400030043f00000000051a043600000cc6021001980000001f0310018f0000000001250019000000030400036700002dda0000613d000000000604034f000000006706043c0000000005750436000000000015004b00002dd60000c13d000000000003004b00002e250000613d000000000224034f0000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f000000000021043500002e250000013d000200000004001d00000bbf0030009c00000bbf03008041000000600330021000000bbf0020009c00000bbf020080410000004002200210000000000223019f00000bbf0010009c00000bbf01008041000000c001100210000000000112019f000100000005001d00000000020500192ef62ee70000040f00030000000103550000000003010019000000600330027000010bbf0030019d00000bbf0430019800002e3c0000613d0000001f0340003900000c53033001970000003f0330003900000c5403300197000000400a00043d00000000033a00190000000000a3004b0000000005000039000000010500403900000c320030009c00002e710000213d000000010050019000002e710000c13d000000400030043f0000001f0540018f00000000034a043600000c3c06400198000000000463001900002e160000613d000000000701034f0000000008030019000000007907043c0000000008980436000000000048004b00002e120000c13d000000000005004b00002e3e0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500002e3e0000013d000000600a0000390000000002000415000000040220008a000000050220021000000000010a0433000000000001004b00002e460000c13d00020000000a001d00000bc001000041000000000010044300000004010000390000000400100443000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000bc1011001c700008002020000392ef62eec0000040f000000010020019000002ea00000613d0000000002000415000000040220008a00002e590000013d000000600a000039000000800300003900000000010a0433000000010020019000002e8d0000613d0000000002000415000000030220008a0000000502200210000000000001004b00002e490000613d000000050220027000000000020a001f00002e630000013d00020000000a001d00000bc001000041000000000010044300000001010000290000000400100443000000000100041400000bbf0010009c00000bbf01008041000000c00110021000000bc1011001c700008002020000392ef62eec0000040f000000010020019000002ea00000613d0000000002000415000000030220008a0000000502200210000000000101043b000000000001004b000000020a00002900002ea10000613d00000000010a0433000000050220027000000000020a001f000000000001004b00002e700000613d00000c630010009c00002e770000213d000000200010008c00002e770000413d0000002001a000390000000001010433000000000001004b0000000002000039000000010200c039000000000021004b00002e770000c13d000000000001004b00002e790000613d000000000001042d00000c2401000041000000000010043f0000004101000039000000040010043f00000c250100004100002ef800010430000000000100001900002ef800010430000000400100043d000000640210003900000cd7030000410000000000320435000000440210003900000cd803000041000000000032043500000024021000390000002a03000039000000000032043500000bc202000041000000000021043500000004021000390000002003000039000000000032043500000bbf0010009c00000bbf01008041000000400110021000000c41011001c700002ef800010430000000000001004b00002eb20000c13d000000400200043d000100000002001d00000bc2010000410000000000120435000000040120003900000002020000292ef623570000040f0000000102000029000000000121004900000bbf0010009c00000bbf01008041000000600110021000000bbf0020009c00000bbf020080410000004002200210000000000121019f00002ef800010430000000000001042f000000400100043d000000440210003900000c5503000041000000000032043500000024021000390000001d03000039000000000032043500000bc202000041000000000021043500000004021000390000002003000039000000000032043500000bbf0010009c00000bbf01008041000000400110021000000c3e011001c700002ef80001043000000bbf0030009c00000bbf03008041000000400230021000000bbf0010009c00000bbf010080410000006001100210000000000121019f00002ef800010430000000000001042f00000bbf0010009c00000bbf01008041000000400110021000000bbf0020009c00000bbf020080410000006002200210000000000112019f000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000112019f00000c30011001c700008010020000392ef62eec0000040f000000010020019000002ece0000613d000000000101043b000000000001042d000000000100001900002ef80001043000000000050100190000000000200443000000040030008c00002ed70000a13d00000005014002700000000001010031000000040010044300000bbf0030009c00000bbf030080410000006001300210000000000200041400000bbf0020009c00000bbf02008041000000c002200210000000000112019f00000cd9011001c700000000020500192ef62eec0000040f000000010020019000002ee60000613d000000000101043b000000000001042d000000000001042f00002eea002104210000000102000039000000000001042d0000000002000019000000000001042d00002eef002104230000000102000039000000000001042d0000000002000019000000000001042d00002ef4002104250000000102000039000000000001042d0000000002000019000000000001042d00002ef60000043200002ef70001042e00002ef80001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83020000020000000000000000000000000000002400000000000000000000000008c379a000000000000000000000000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a65640000000000000000000000000000000000000000000000000000000000000000000000000084000000800000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000002000000000000000000000000000000000000200000000000000000000000007f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024980000000200000000000000000000000000000040000001000000000000000000000000000000000000000000000000000000000000000000000000007ecebdff00000000000000000000000000000000000000000000000000000000ac9650d700000000000000000000000000000000000000000000000000000000d505acce00000000000000000000000000000000000000000000000000000000e57553d900000000000000000000000000000000000000000000000000000000f1127ed700000000000000000000000000000000000000000000000000000000f1127ed800000000000000000000000000000000000000000000000000000000f28083c300000000000000000000000000000000000000000000000000000000e57553da00000000000000000000000000000000000000000000000000000000e8a3d48500000000000000000000000000000000000000000000000000000000d637ed5800000000000000000000000000000000000000000000000000000000d637ed5900000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000d505accf00000000000000000000000000000000000000000000000000000000d547741f00000000000000000000000000000000000000000000000000000000c68907dd00000000000000000000000000000000000000000000000000000000cb2ef6f600000000000000000000000000000000000000000000000000000000cb2ef6f700000000000000000000000000000000000000000000000000000000d45573f600000000000000000000000000000000000000000000000000000000c68907de00000000000000000000000000000000000000000000000000000000ca15c87300000000000000000000000000000000000000000000000000000000b6f10c7800000000000000000000000000000000000000000000000000000000b6f10c7900000000000000000000000000000000000000000000000000000000c3cda52000000000000000000000000000000000000000000000000000000000ac9650d800000000000000000000000000000000000000000000000000000000ad1eefc500000000000000000000000000000000000000000000000000000000938e3d7a00000000000000000000000000000000000000000000000000000000a217fdde00000000000000000000000000000000000000000000000000000000a457c2d600000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000a217fddf00000000000000000000000000000000000000000000000000000000a32fa5b3000000000000000000000000000000000000000000000000000000009ab24eaf000000000000000000000000000000000000000000000000000000009ab24eb000000000000000000000000000000000000000000000000000000000a0a8e46000000000000000000000000000000000000000000000000000000000938e3d7b0000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000008e539e8b0000000000000000000000000000000000000000000000000000000091d148530000000000000000000000000000000000000000000000000000000091d148540000000000000000000000000000000000000000000000000000000091ddadf4000000000000000000000000000000000000000000000000000000008e539e8c000000000000000000000000000000000000000000000000000000009010d07c000000000000000000000000000000000000000000000000000000007ecebe000000000000000000000000000000000000000000000000000000000084b0196e0000000000000000000000000000000000000000000000000000000084bb1e42000000000000000000000000000000000000000000000000000000003f3e4c1000000000000000000000000000000000000000000000000000000000637102de0000000000000000000000000000000000000000000000000000000070a082300000000000000000000000000000000000000000000000000000000079cc678f0000000000000000000000000000000000000000000000000000000079cc6790000000000000000000000000000000000000000000000000000000007e54523c0000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000074bc7db7000000000000000000000000000000000000000000000000000000006f8934f3000000000000000000000000000000000000000000000000000000006f8934f4000000000000000000000000000000000000000000000000000000006fcfff4500000000000000000000000000000000000000000000000000000000637102df000000000000000000000000000000000000000000000000000000006f4f2837000000000000000000000000000000000000000000000000000000004bf5d7e800000000000000000000000000000000000000000000000000000000587cde1d00000000000000000000000000000000000000000000000000000000587cde1e000000000000000000000000000000000000000000000000000000005c19a95c000000000000000000000000000000000000000000000000000000004bf5d7e900000000000000000000000000000000000000000000000000000000572b6c05000000000000000000000000000000000000000000000000000000003f3e4c110000000000000000000000000000000000000000000000000000000042966c680000000000000000000000000000000000000000000000000000000049c5c5b600000000000000000000000000000000000000000000000000000000248a9ca2000000000000000000000000000000000000000000000000000000003644e51400000000000000000000000000000000000000000000000000000000395093500000000000000000000000000000000000000000000000000000000039509351000000000000000000000000000000000000000000000000000000003a46b1a8000000000000000000000000000000000000000000000000000000003644e5150000000000000000000000000000000000000000000000000000000036568abe000000000000000000000000000000000000000000000000000000002f2ff15c000000000000000000000000000000000000000000000000000000002f2ff15d00000000000000000000000000000000000000000000000000000000313ce56700000000000000000000000000000000000000000000000000000000248a9ca3000000000000000000000000000000000000000000000000000000002ab4d0520000000000000000000000000000000000000000000000000000000018160ddc0000000000000000000000000000000000000000000000000000000023a2902a0000000000000000000000000000000000000000000000000000000023a2902b0000000000000000000000000000000000000000000000000000000023b872dd0000000000000000000000000000000000000000000000000000000018160ddd000000000000000000000000000000000000000000000000000000001e7ac4880000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000079fe40e00000000000000000000000000000000000000000000000000000000095ea7b300000000000000000000000000000000000000200000008000000000000000004e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000400000008000000000000000000000000000000000000000000000000000000020000000000000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d95539132020000020000000000000000000000000000000400000000000000000000000002000000000000000000000000000000000000400000000000000000000000006e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9000000000000000000000000000000000000000000000000ffffffffffffff1f0200000000000000000000000000000000000000000000000000000000000000e767803f8ecf1dee6bb0345811f7312cda556058b19db6389ad9ae3568643ddd000000000000000000000000000000000000000000000000ffffffffffffffffc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708a012a6de2943a5aa4d77acf5e695d4456760a3f1f30a5d6dc2079599187a0718b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f9a8a0592ac89c5ad3bc6df8224c17b485976f597df104ee20d0df415241f670b000000000000000000000000000000000000000000000000ffffffffffffff3f190100000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000420000000000000000000000007fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffe045524332305065726d69743a20696e76616c6964207369676e617475726500000000000000000000000000000000000000000064000000000000000000000000756500000000000000000000000000000000000000000000000000000000000045434453413a20696e76616c6964207369676e6174757265202773272076616c000000000000000000000000000000000000008400000000000000000000000045524332305065726d69743a206578706972656420646561646c696e6500000044726f7045524332300000000000000000000000000000000000000000000000e48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf000000000000000000000000000000000000000000000000ffffffffffffff5f4552433230566f7465733a20696e76616c6964206e6f6e63650000000000000045434453413a20696e76616c6964207369676e617475726500000000000000004552433230566f7465733a207369676e6174757265206578706972656400000005b8ccbb9d4d8fb16ea74ce3c29a41f1b461fbdaff4714a0d9a8eb05499746bc000000000000000000ff00000000000000000000000000000000000000000000ffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffd246da9440709ce0dd3f4fd669abc85ada012ab9774b8ecdcc5059ba1486b9c17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0000000000000000000000000000000000000000000000000ffffffffffffff7f8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff9f206661696c656400000000000000000000000000000000000000000000000000416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000003ffffffe0416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f7719a0b39aa25ac793b5f6e9a0534364cc0b3fd1ea9b651e79c7f50a59d48ef8139f7f092500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000042cbb15ccdc3cad6266b0e7a08c0454b23bf29dc2df74b6f3c209e9336465bd10000000000000000000000000000000000000000000000000000ffffffffffff0000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000010000cee9e8190d541ff356d4f25a93feb7d77e8fb6187bbe30fcb1b22b0145ad69dbcee9e8190d541ff356d4f25a93feb7d77e8fb6187bbe30fcb1b22b0145ad69dc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff657863656564206d617820746f74616c20737570706c792e0000000000000000f40f1cc000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fffffffffffffeff0000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000000de0b6b3a763ffff0000000000000000000000000000000000000000000000056bc75e2d63100000000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee496e76616c6964206d73672076616c75650000000000000000000000000000000000000000000000000000001af20c6b23373350ad464700b5965ce4b0d2ad9423b872dd00000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000bfb89d820000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000440000000000000000000000007175616e7469747920746f6f206c6f77000000000000000000000000000000002156616c75650000000000000000000000000000000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efe9c6339e50d82ea276bb06154c56fd08967acab075be620a24938e0e5b084c430000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffbffa76a4010d9533e3e964f2930a65fb6042a12fa6ff5b08281837a10b0be7321e323420626974730000000000000000000000000000000000000000000000000053616665436173743a2076616c756520646f65736e27742066697420696e2032322062697473000000000000000000000000000000000000000000000000000053616665436173743a2076616c756520646f65736e27742066697420696e2033766572666c6f77696e6720766f746573000000000000000000000000000000004552433230566f7465733a20746f74616c20737570706c79207269736b73206f45524332303a206d696e7420746f20746865207a65726f2061646472657373004562091e00000000000000000000000000000000000000000000000000000000fe381cc9000000000000000000000000000000000000000000000000000000009e7762db00000000000000000000000000000000000000000000000000000000f13474e9000000000000000000000000000000000000000000000000000000004549503731323a20556e696e697469616c697a656400000000000000000000000000000000000000000000000000000000000064000000800000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdf0f00000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000f8086cee80709bd44c82f89dbca54115ebd05e840a88ab81df9cf5be9754eb638c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f2061646445524332303a20696e73756666696369656e7420616c6c6f77616e636500000053540000000000000000000000000000000000000000000000000000000000000656a73e00000000000000000000000000000000000000000000000000000000bf4016fceeaaa4ac5cf4be865b559ff85825ab4ca7aa7b661d16e2f544c0309856c4ef51000000000000000000000000000000000000000000000000000000007260843c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000006d6f64653d626c6f636b6e756d6265722666726f6d3d64656661756c74000000382062697473000000000000000000000000000000000000000000000000000053616665436173743a2076616c756520646f65736e27742066697420696e203400000000000000000000000000000000ffffffffffffffffffffffffffffffff310000000000000000000000000000000000000000000000000000000000000018987fc07130e211944fcba7ee08ced325aa9fa74e6249c7652651ca979bc22318987fc07130e211944fcba7ee08ced325aa9fa74e6249c7652651ca979bc22275fed5921d6bc5a55b288530a196a2bba989f5c0e0cf5a2923df86a66e785f8f75fed5921d6bc5a55b288530a196a2bba989f5c0e0cf5a2923df86a66e785f8e0864216222e869c14319082fde29f2183d42f246bb2dc36ff3f3f188a0acffaef79bde9ddd17963ebce6f7d021d60de7c2bd0db944d23c900c0c0e775f5300520864216222e869c14319082fde29f2183d42f246bb2dc36ff3f3f188a0acffade65f4c655da5386c4a09165facbc9b33f4c02e15649ae186380af5a62b7107ede65f4c655da5386c4a09165facbc9b33f4c02e15649ae186380af5a62b7107ecb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf64ef1d2ad89edf8c4d91132028e8195cdf30bb4b5053d4f8cd260341d4805f30a4ef1d2ad89edf8c4d91132028e8195cdf30bb4b5053d4f8cd260341d4805f309c9c7c3fe08b88b4df9d4d47ef47d2c43d55c025a0ba88ca442580ed9e7348a162f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d6d5257204ebe7d88fd91ae87941cb2dd9d8062b64ae5a2bd2d28ec40b9fbf6df6d5257204ebe7d88fd91ae87941cb2dd9d8062b64ae5a2bd2d28ec40b9fbf6e06d5257204ebe7d88fd91ae87941cb2dd9d8062b64ae5a2bd2d28ec40b9fbf6e1e72e45a3e5275b3f35f16fbdab8d4522d606d79d5331adf9f6caf35a53e32ae88502233096d909befbda0999bb8ea2f3a6be3c138b9fbf003752a4c8bce86f6c9afcab0fae2fb705da822c6771c2bbcbe1234a728ab215d9d69e4df90aa5823b9afcab0fae2fb705da822c6771c2bbcbe1234a728ab215d9d69e4df90aa5823c9afcab0fae2fb705da822c6771c2bbcbe1234a728ab215d9d69e4df90aa5823dbc2ff1a89023e6d95a3a1a792e9c5e8d456c72d9edd9b05bd4c4ae7e72025628ffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffff0000000000000000000000000000000000000000e2497bd806ec41a6e0dd992c29a72efc0ef8fec9092d1978fd4a1e00b2f18304299d17e95023f496e0ffc4909cff1a61f74bb5eb18de6f900f4155bfa1b3b33338343fd2000000000000000000000000000000000000000000000000000000006e697469616c697a696e67000000000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e7472616374206973206e6f7420693df2b0dc00000000000000000000000000000000000000000000000000000000d315d8ec00000000000000000000000000000000000000000000000000000000636500000000000000000000000000000000000000000000000000000000000045524332303a206275726e20616d6f756e7420657863656564732062616c616e730000000000000000000000000000000000000000000000000000000000000045524332303a206275726e2066726f6d20746865207a65726f20616464726573f2672935fc79f5237559e2e2999dbe743bf65430894ac2b37666890e7c69e1af0878b106000000000000000000000000000000000000000000000000000000004552433230566f7465733a20667574757265206c6f6f6b7570000000000000004169c622000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044000000800000000000000000d49c166a0000000000000000000000000000000000000000000000000000000087d20a6d00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0001ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff000000000000000000000000000000000000000000000000ffffffffffffffc0000000000000000000000000000000000000000000000000ffffffffffffff00616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e74206578636565647320627472616e736665727320726573747269637465642e0000000000000000000000657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f206164f6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7245361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65646f742073756363656564000000000000000000000000000000000000000000005361666545524332303a204552433230206f7065726174696f6e20646964206e020000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1646970667358221220c006592fea9dfb33af980477fc8b1b38e97aa7ab5283a0fe62ee680bc2fdd2cc002a
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.