CRC-721
Overview
Max Total Supply
2,041 Jarheads
Holders
82
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Balance
3 JarheadsLoading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
Jarheads
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at cronoscan.com on 2022-08-31 */ /** *Submitted for verification at cronoscan.com on 2022-08-21 */ // SPDX-License-Identifier: GPL-3.0 // File: @openzeppelin/contracts/utils/Counters.sol // 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 Counters { 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; } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @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); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * 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 ERC20 is Context, IERC20, IERC20Metadata { 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}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _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 value {ERC20} uses, unless this function is * 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; } _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; _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; } _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 {} } // File: Jarheads.sol /** *Submitted for verification at cronoscan.com on 2022-07-05 */ // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File contracts/WithLimitedSupply.sol // pragma solidity ^0.8.4; /// @author Modified version of original code by 1001.digital /// @title A token tracker that limits the token supply and increments token IDs on each new mint. abstract contract WithLimitedSupply { // Keeps track of how many we have minted uint256 private _tokenCount; /// @dev The maximum count of tokens this token tracker will issue. uint256 private immutable _maxAvailableSupply; /// Instanciate the contract /// @param maxSupply_ how many tokens this collection should hold constructor(uint256 maxSupply_, uint256 reserved_) { _maxAvailableSupply = maxSupply_ - reserved_; } function maxAvailableSupply() public view returns (uint256) { return _maxAvailableSupply; } /// @dev Get the current token count /// @return the created token count /// TODO: if this is not required externally, does making it `public view` use unneccary gas? function tokenCount() public view returns (uint256) { return _tokenCount; } /// @dev Check whether tokens are still available /// @return the available token count function availableTokenCount() public view returns (uint256) { return maxAvailableSupply() - tokenCount(); } /// @dev Increment the token count and fetch the latest count /// @return the next token id function nextToken() internal virtual ensureAvailability returns (uint256) { return _tokenCount++; } /// @dev Check whether another token is still available modifier ensureAvailability() { require(availableTokenCount() > 0, 'No more tokens available'); _; } /// @param amount Check whether number of tokens are still available /// @dev Check whether tokens are still available modifier ensureAvailabilityFor(uint256 amount) { require( availableTokenCount() >= amount, 'Requested number of tokens not available' ); _; } } // File contracts/RandomlyAssigned.sol // pragma solidity ^0.8.4; /// @author Modified version of original code by 1001.digital /// @title Randomly assign tokenIDs from a given set of tokens. abstract contract RandomlyAssigned is WithLimitedSupply { // Used for random index assignment mapping(uint256 => uint256) private tokenMatrix; // The initial token ID uint256 private immutable startFrom; /// Instanciate the contract /// @param maxSupply_ how many tokens this collection should hold /// @param numReserved_ the number of tokens reserved whose IDs dont come from the randomizer constructor(uint256 maxSupply_, uint256 numReserved_) WithLimitedSupply(maxSupply_, numReserved_) { startFrom = numReserved_ + 1; } /// Get the next token ID /// @dev Randomly gets a new token ID and keeps track of the ones that are still available. /// @return the next token ID function nextToken() internal override returns (uint256) { uint256 maxIndex = maxAvailableSupply() - tokenCount(); uint256 random = uint256( keccak256( abi.encodePacked( msg.sender, block.coinbase, block.difficulty, block.gaslimit, block.timestamp ) ) ) % maxIndex; uint256 value = 0; if (tokenMatrix[random] == 0) { // If this matrix position is empty, set the value to the generated random number. value = random; } else { // Otherwise, use the previously stored number from the matrix. value = tokenMatrix[random]; } // If the last available tokenID is still unused... if (tokenMatrix[maxIndex - 1] == 0) { // ...store that ID in the current matrix position. tokenMatrix[random] = maxIndex - 1; } else { // ...otherwise copy over the stored number to the current matrix position. tokenMatrix[random] = tokenMatrix[maxIndex - 1]; } // Increment counts (ie. qty minted) super.nextToken(); return value + startFrom; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [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://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @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. * - `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 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: contracts/CroArmyJackals3.sol abstract contract Army { function isMember(address user) public view virtual returns (bool); } pragma solidity ^0.8.0; contract Jarheads is ERC721Enumerable, Ownable, RandomlyAssigned { using Strings for uint256; using Counters for Counters.Counter; string public baseURI = "ipfs://QmdaGmrh7etPhjXMfJYCYUWW1YTo5D4Xr2XhymCFMjHP8M/"; string public baseExtension = ".json"; string public notRevealedUri; ERC721 public memberships; ERC721 public memberships1; uint256 public memberPrice = 200 ether; uint256 public whitelistPrice = 200 ether; uint256 public normalPrice = 250 ether; uint256 public maxSupply = 2041; uint256 public numReserved; Counters.Counter public _tokenIdCounter; bool public paused = false; bool public revealed = true; mapping(address => bool) whitelist; address private armyContract; address private armySoldier; address private armyCoalition; // Pass the token address constructor(address _armySoldier, address _armyContract, address _armyCoalition) ERC721("CroArmy Jarheads", "Jarheads") RandomlyAssigned(maxSupply, numReserved){ memberships = ERC721(_armySoldier); memberships1 = ERC721(_armyCoalition); armyContract = _armyContract; } function isArmySoldier(address _address) private view returns (bool) { return memberships.balanceOf(_address) > 0; } function isArmyCoalition(address _address) private view returns (bool) { return memberships1.balanceOf(_address) > 0; } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function mintCost(address _address) public view returns (uint256) { require(_address != address(0), "not address 0"); if (whitelistPrice <= memberPrice) { if (isWhiteList(_address)) { return whitelistPrice; } else if (isDiscount(_address)) { return memberPrice; } else { return normalPrice; } } else if (isDiscount(_address)) { return memberPrice; } else if (isWhiteList(_address)) { return whitelistPrice; } else { return normalPrice; } } // public function mint(uint256 _count) public payable { require(!paused, "the contract is paused"); require(_count > 0, "need to mint at least 1 NFT"); uint256 cost; cost = mintCost(msg.sender); if (msg.sender != owner()) { uint amountDue = cost * _count; require(msg.value >= amountDue, "insufficient funds"); } for (uint256 i = 1; i <= _count; i++) { _mintRandomId(msg.sender); } } function safeMint(address _to) internal { uint256 tokenId; _tokenIdCounter.increment(); tokenId = _tokenIdCounter.current(); require(tokenId <= maxSupply, "max NFT limit exceeded"); _safeMint(_to, tokenId); } // Checks is specific address is on the WL and returns a boolean value function isWhiteList(address _address) public view returns(bool) { return whitelist[_address]; } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function _mintRandomId(address to) private { uint256 id = nextToken(); require(id > 0 && id <= maxSupply, "Mint not possible"); _safeMint(to, id); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if(revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } //only owner function reveal() public onlyOwner { revealed = true; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function pause(bool _state) public onlyOwner { paused = _state; } function addWhiteList(address[] calldata addresses) public onlyOwner { for (uint i = 0; i < addresses.length; i++) { whitelist[addresses[i]] = true; } } function removeWhiteList(address[] calldata addresses) public onlyOwner { for (uint i = 0; i < addresses.length; i++) { whitelist[addresses[i]] = false; } } // Checks if a specified address should receive a discount function isDiscount(address _address) public view returns (bool) { if (isArmySoldier(_address) || hasArmy(_address) || isArmyCoalition(_address)) { return true; } else { return false; } } function setnormalPrice(uint256 _cost) external onlyOwner { normalPrice = _cost; } function setmemberPrice(uint256 _cost) external onlyOwner { memberPrice = _cost; } function setwhitelistPrice(uint256 _cost) external onlyOwner { whitelistPrice = _cost; } function hasArmy(address _address) internal view returns (bool) { uint balance = ERC20(armyContract).balanceOf(_address); if (balance >= 100000) { return true; } else { return false; } } function withdraw() public payable onlyOwner { // This will payout the owner the contract balance. // Do not remove this otherwise you will not be able to withdraw the funds. // ============================================================================= (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); // ============================================================================= } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_armySoldier","type":"address"},{"internalType":"address","name":"_armyContract","type":"address"},{"internalType":"address","name":"_armyCoalition","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_tokenIdCounter","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"availableTokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isDiscount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isWhiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAvailableSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"memberPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"memberships","outputs":[{"internalType":"contract ERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"memberships1","outputs":[{"internalType":"contract ERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"mintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"normalPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numReserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setmemberPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setnormalPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setwhitelistPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60c060405260405180606001604052806036815260200162005d7260369139600d908051906020019062000035929190620003ab565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600e908051906020019062000083929190620003ab565b50680ad78ebc5ac6200000601255680ad78ebc5ac6200000601355680d8d726b7177a800006014556107f96015556000601860006101000a81548160ff0219169083151502179055506001601860016101000a81548160ff021916908315150217905550348015620000f457600080fd5b5060405162005da838038062005da883398181016040528101906200011a919062000472565b60155460165481816040518060400160405280601081526020017f43726f41726d79204a61726865616473000000000000000000000000000000008152506040518060400160405280600881526020017f4a617268656164730000000000000000000000000000000000000000000000008152508160009080519060200190620001a6929190620003ab565b508060019080519060200190620001bf929190620003ab565b505050620001e2620001d6620002dd60201b60201c565b620002e560201b60201c565b8082620001f091906200052b565b608081815250505050600181620002089190620004ce565b60a08181525050505082601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505062000657565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003b990620005a4565b90600052602060002090601f016020900481019282620003dd576000855562000429565b82601f10620003f857805160ff191683800117855562000429565b8280016001018555821562000429579182015b82811115620004285782518255916020019190600101906200040b565b5b5090506200043891906200043c565b5090565b5b80821115620004575760008160009055506001016200043d565b5090565b6000815190506200046c816200063d565b92915050565b6000806000606084860312156200048e576200048d62000638565b5b60006200049e868287016200045b565b9350506020620004b1868287016200045b565b9250506040620004c4868287016200045b565b9150509250925092565b6000620004db826200059a565b9150620004e8836200059a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000520576200051f620005da565b5b828201905092915050565b600062000538826200059a565b915062000545836200059a565b9250828210156200055b576200055a620005da565b5b828203905092915050565b600062000573826200057a565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006002820490506001821680620005bd57607f821691505b60208210811415620005d457620005d362000609565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b620006488162000566565b81146200065457600080fd5b50565b60805160a0516156f56200067d600039600061335501526000610fb001526156f56000f3fe6080604052600436106102e45760003560e01c8063715018a611610190578063b88d4fde116100dc578063da3ef23f11610095578063f2c4ce1e1161006f578063f2c4ce1e14610b22578063f2fde38b14610b4b578063f99031a714610b74578063fc1a1c3614610bb1576102e4565b8063da3ef23f14610a91578063e14ca35314610aba578063e985e9c514610ae5576102e4565b8063b88d4fde14610981578063b88fe6a3146109aa578063bcb96f52146109d5578063c6682862146109fe578063c87b56dd14610a29578063d5abeb0114610a66576102e4565b80639f181b5e11610149578063a22cb46511610123578063a22cb465146108d9578063a475b5dd14610902578063a526c5d914610919578063b150a6f614610956576102e4565b80639f181b5e14610869578063a029564414610894578063a0712d68146108bd576102e4565b8063715018a61461077d57806384c4bd4b146107945780638da5cb5b146107bf5780638dd94bba146107ea578063945ec9dd1461081357806395d89b411461083e576102e4565b80633ccfd60b1161024f5780635c975abb11610208578063636e746b116101e2578063636e746b146106bf5780636b150b13146106ea5780636c0360eb1461071557806370a0823114610740576102e4565b80635c975abb1461062e5780635e1045ec146106595780636352211e14610682576102e4565b80633ccfd60b1461052d57806342842e0e14610537578063438b6300146105605780634f6ccce71461059d57806351830227146105da57806355f804b314610605576102e4565b806315f91c18116102a157806315f91c181461040b57806318160ddd1461043657806323b872dd146104615780632acc659e1461048a5780632f745c59146104c75780633974579114610504576102e4565b806301ffc9a7146102e957806302329a291461032657806306fdde031461034f578063081812fc1461037a578063081c8c44146103b7578063095ea7b3146103e2575b600080fd5b3480156102f557600080fd5b50610310600480360381019061030b9190613f9a565b610bdc565b60405161031d9190614758565b60405180910390f35b34801561033257600080fd5b5061034d60048036038101906103489190613f6d565b610c56565b005b34801561035b57600080fd5b50610364610cef565b604051610371919061478e565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c919061403d565b610d81565b6040516103ae91906146cf565b60405180910390f35b3480156103c357600080fd5b506103cc610e06565b6040516103d9919061478e565b60405180910390f35b3480156103ee57600080fd5b5061040960048036038101906104049190613ee0565b610e94565b005b34801561041757600080fd5b50610420610fac565b60405161042d9190614ab0565b60405180910390f35b34801561044257600080fd5b5061044b610fd4565b6040516104589190614ab0565b60405180910390f35b34801561046d57600080fd5b5061048860048036038101906104839190613dca565b610fe1565b005b34801561049657600080fd5b506104b160048036038101906104ac9190613d5d565b611041565b6040516104be9190614ab0565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e99190613ee0565b611132565b6040516104fb9190614ab0565b60405180910390f35b34801561051057600080fd5b5061052b60048036038101906105269190613f20565b6111d7565b005b6105356112f8565b005b34801561054357600080fd5b5061055e60048036038101906105599190613dca565b6113f4565b005b34801561056c57600080fd5b5061058760048036038101906105829190613d5d565b611414565b6040516105949190614736565b60405180910390f35b3480156105a957600080fd5b506105c460048036038101906105bf919061403d565b6114c2565b6040516105d19190614ab0565b60405180910390f35b3480156105e657600080fd5b506105ef611533565b6040516105fc9190614758565b60405180910390f35b34801561061157600080fd5b5061062c60048036038101906106279190613ff4565b611546565b005b34801561063a57600080fd5b506106436115dc565b6040516106509190614758565b60405180910390f35b34801561066557600080fd5b50610680600480360381019061067b9190613f20565b6115ef565b005b34801561068e57600080fd5b506106a960048036038101906106a4919061403d565b611710565b6040516106b691906146cf565b60405180910390f35b3480156106cb57600080fd5b506106d46117c2565b6040516106e19190614ab0565b60405180910390f35b3480156106f657600080fd5b506106ff6117c8565b60405161070c9190614773565b60405180910390f35b34801561072157600080fd5b5061072a6117ee565b604051610737919061478e565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190613d5d565b61187c565b6040516107749190614ab0565b60405180910390f35b34801561078957600080fd5b50610792611934565b005b3480156107a057600080fd5b506107a96119bc565b6040516107b69190614ab0565b60405180910390f35b3480156107cb57600080fd5b506107d46119c8565b6040516107e191906146cf565b60405180910390f35b3480156107f657600080fd5b50610811600480360381019061080c919061403d565b6119f2565b005b34801561081f57600080fd5b50610828611a78565b6040516108359190614ab0565b60405180910390f35b34801561084a57600080fd5b50610853611a7e565b604051610860919061478e565b60405180910390f35b34801561087557600080fd5b5061087e611b10565b60405161088b9190614ab0565b60405180910390f35b3480156108a057600080fd5b506108bb60048036038101906108b6919061403d565b611b1a565b005b6108d760048036038101906108d2919061403d565b611ba0565b005b3480156108e557600080fd5b5061090060048036038101906108fb9190613ea0565b611cfe565b005b34801561090e57600080fd5b50610917611d14565b005b34801561092557600080fd5b50610940600480360381019061093b9190613d5d565b611dad565b60405161094d9190614758565b60405180910390f35b34801561096257600080fd5b5061096b611df0565b6040516109789190614ab0565b60405180910390f35b34801561098d57600080fd5b506109a860048036038101906109a39190613e1d565b611df6565b005b3480156109b657600080fd5b506109bf611e58565b6040516109cc9190614773565b60405180910390f35b3480156109e157600080fd5b506109fc60048036038101906109f7919061403d565b611e7e565b005b348015610a0a57600080fd5b50610a13611f04565b604051610a20919061478e565b60405180910390f35b348015610a3557600080fd5b50610a506004803603810190610a4b919061403d565b611f92565b604051610a5d919061478e565b60405180910390f35b348015610a7257600080fd5b50610a7b6120eb565b604051610a889190614ab0565b60405180910390f35b348015610a9d57600080fd5b50610ab86004803603810190610ab39190613ff4565b6120f1565b005b348015610ac657600080fd5b50610acf612187565b604051610adc9190614ab0565b60405180910390f35b348015610af157600080fd5b50610b0c6004803603810190610b079190613d8a565b6121a8565b604051610b199190614758565b60405180910390f35b348015610b2e57600080fd5b50610b496004803603810190610b449190613ff4565b61223c565b005b348015610b5757600080fd5b50610b726004803603810190610b6d9190613d5d565b6122d2565b005b348015610b8057600080fd5b50610b9b6004803603810190610b969190613d5d565b6123ca565b604051610ba89190614758565b60405180910390f35b348015610bbd57600080fd5b50610bc6612420565b604051610bd39190614ab0565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c4f5750610c4e82612426565b5b9050919050565b610c5e612508565b73ffffffffffffffffffffffffffffffffffffffff16610c7c6119c8565b73ffffffffffffffffffffffffffffffffffffffff1614610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc990614990565b60405180910390fd5b80601860006101000a81548160ff02191690831515021790555050565b606060008054610cfe90614e01565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2a90614e01565b8015610d775780601f10610d4c57610100808354040283529160200191610d77565b820191906000526020600020905b815481529060010190602001808311610d5a57829003601f168201915b5050505050905090565b6000610d8c82612510565b610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc290614970565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600f8054610e1390614e01565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3f90614e01565b8015610e8c5780601f10610e6157610100808354040283529160200191610e8c565b820191906000526020600020905b815481529060010190602001808311610e6f57829003601f168201915b505050505081565b6000610e9f82611710565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0790614a10565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f2f612508565b73ffffffffffffffffffffffffffffffffffffffff161480610f5e5750610f5d81610f58612508565b6121a8565b5b610f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f94906148d0565b60405180910390fd5b610fa7838361257c565b505050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6000600880549050905090565b610ff2610fec612508565b82612635565b611031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102890614a50565b60405180910390fd5b61103c838383612713565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a9906149f0565b60405180910390fd5b601254601354116110f7576110c6826123ca565b156110d557601354905061112d565b6110de82611dad565b156110ed57601254905061112d565b601454905061112d565b61110082611dad565b1561110f57601254905061112d565b611118826123ca565b1561112757601354905061112d565b60145490505b919050565b600061113d8361187c565b821061117e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611175906147b0565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6111df612508565b73ffffffffffffffffffffffffffffffffffffffff166111fd6119c8565b73ffffffffffffffffffffffffffffffffffffffff1614611253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124a90614990565b60405180910390fd5b60005b828290508110156112f35760006019600085858581811061127a57611279614fda565b5b905060200201602081019061128f9190613d5d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806112eb90614e64565b915050611256565b505050565b611300612508565b73ffffffffffffffffffffffffffffffffffffffff1661131e6119c8565b73ffffffffffffffffffffffffffffffffffffffff1614611374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136b90614990565b60405180910390fd5b600061137e6119c8565b73ffffffffffffffffffffffffffffffffffffffff16476040516113a1906146ba565b60006040518083038185875af1925050503d80600081146113de576040519150601f19603f3d011682016040523d82523d6000602084013e6113e3565b606091505b50509050806113f157600080fd5b50565b61140f83838360405180602001604052806000815250611df6565b505050565b606060006114218361187c565b905060008167ffffffffffffffff81111561143f5761143e615009565b5b60405190808252806020026020018201604052801561146d5781602001602082028036833780820191505090505b50905060005b828110156114b7576114858582611132565b82828151811061149857611497614fda565b5b60200260200101818152505080806114af90614e64565b915050611473565b508092505050919050565b60006114cc610fd4565b821061150d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150490614a70565b60405180910390fd5b6008828154811061152157611520614fda565b5b90600052602060002001549050919050565b601860019054906101000a900460ff1681565b61154e612508565b73ffffffffffffffffffffffffffffffffffffffff1661156c6119c8565b73ffffffffffffffffffffffffffffffffffffffff16146115c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b990614990565b60405180910390fd5b80600d90805190602001906115d8929190613b06565b5050565b601860009054906101000a900460ff1681565b6115f7612508565b73ffffffffffffffffffffffffffffffffffffffff166116156119c8565b73ffffffffffffffffffffffffffffffffffffffff161461166b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166290614990565b60405180910390fd5b60005b8282905081101561170b5760016019600085858581811061169257611691614fda565b5b90506020020160208101906116a79190613d5d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061170390614e64565b91505061166e565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b090614930565b60405180910390fd5b80915050919050565b60125481565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d80546117fb90614e01565b80601f016020809104026020016040519081016040528092919081815260200182805461182790614e01565b80156118745780601f1061184957610100808354040283529160200191611874565b820191906000526020600020905b81548152906001019060200180831161185757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e490614910565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61193c612508565b73ffffffffffffffffffffffffffffffffffffffff1661195a6119c8565b73ffffffffffffffffffffffffffffffffffffffff16146119b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a790614990565b60405180910390fd5b6119ba600061297a565b565b60178060000154905081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119fa612508565b73ffffffffffffffffffffffffffffffffffffffff16611a186119c8565b73ffffffffffffffffffffffffffffffffffffffff1614611a6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6590614990565b60405180910390fd5b8060128190555050565b60145481565b606060018054611a8d90614e01565b80601f0160208091040260200160405190810160405280929190818152602001828054611ab990614e01565b8015611b065780601f10611adb57610100808354040283529160200191611b06565b820191906000526020600020905b815481529060010190602001808311611ae957829003601f168201915b5050505050905090565b6000600b54905090565b611b22612508565b73ffffffffffffffffffffffffffffffffffffffff16611b406119c8565b73ffffffffffffffffffffffffffffffffffffffff1614611b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8d90614990565b60405180910390fd5b8060138190555050565b601860009054906101000a900460ff1615611bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be7906149b0565b60405180910390fd5b60008111611c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2a90614a90565b60405180910390fd5b6000611c3e33611041565b9050611c486119c8565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ccf5760008282611c889190614c75565b905080341015611ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc490614a30565b60405180910390fd5b505b6000600190505b828111611cf957611ce633612a40565b8080611cf190614e64565b915050611cd6565b505050565b611d10611d09612508565b8383612aab565b5050565b611d1c612508565b73ffffffffffffffffffffffffffffffffffffffff16611d3a6119c8565b73ffffffffffffffffffffffffffffffffffffffff1614611d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8790614990565b60405180910390fd5b6001601860016101000a81548160ff021916908315150217905550565b6000611db882612c18565b80611dc85750611dc782612cce565b5b80611dd85750611dd782612d9d565b5b15611de65760019050611deb565b600090505b919050565b60165481565b611e07611e01612508565b83612635565b611e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3d90614a50565b60405180910390fd5b611e5284848484612e53565b50505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611e86612508565b73ffffffffffffffffffffffffffffffffffffffff16611ea46119c8565b73ffffffffffffffffffffffffffffffffffffffff1614611efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef190614990565b60405180910390fd5b8060148190555050565b600e8054611f1190614e01565b80601f0160208091040260200160405190810160405280929190818152602001828054611f3d90614e01565b8015611f8a5780601f10611f5f57610100808354040283529160200191611f8a565b820191906000526020600020905b815481529060010190602001808311611f6d57829003601f168201915b505050505081565b6060611f9d82612510565b611fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd3906149d0565b60405180910390fd5b60001515601860019054906101000a900460ff161515141561208a57600f805461200590614e01565b80601f016020809104026020016040519081016040528092919081815260200182805461203190614e01565b801561207e5780601f106120535761010080835404028352916020019161207e565b820191906000526020600020905b81548152906001019060200180831161206157829003601f168201915b505050505090506120e6565b6000612094612eaf565b905060008151116120b457604051806020016040528060008152506120e2565b806120be84612f41565b600e6040516020016120d293929190614689565b6040516020818303038152906040525b9150505b919050565b60155481565b6120f9612508565b73ffffffffffffffffffffffffffffffffffffffff166121176119c8565b73ffffffffffffffffffffffffffffffffffffffff161461216d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216490614990565b60405180910390fd5b80600e9080519060200190612183929190613b06565b5050565b6000612191611b10565b612199610fac565b6121a39190614ccf565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612244612508565b73ffffffffffffffffffffffffffffffffffffffff166122626119c8565b73ffffffffffffffffffffffffffffffffffffffff16146122b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122af90614990565b60405180910390fd5b80600f90805190602001906122ce929190613b06565b5050565b6122da612508565b73ffffffffffffffffffffffffffffffffffffffff166122f86119c8565b73ffffffffffffffffffffffffffffffffffffffff161461234e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234590614990565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b5906147f0565b60405180910390fd5b6123c78161297a565b50565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60135481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806124f157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806125015750612500826130a2565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166125ef83611710565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061264082612510565b61267f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612676906148b0565b60405180910390fd5b600061268a83611710565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806126cc57506126cb81856121a8565b5b8061270a57508373ffffffffffffffffffffffffffffffffffffffff166126f284610d81565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661273382611710565b73ffffffffffffffffffffffffffffffffffffffff1614612789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278090614810565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f090614850565b60405180910390fd5b61280483838361310c565b61280f60008261257c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461285f9190614ccf565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128b69190614bee565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612975838383613220565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612a4a613225565b9050600081118015612a5e57506015548111155b612a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a94906148f0565b60405180910390fd5b612aa78282613387565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1190614870565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612c0b9190614758565b60405180910390a3505050565b600080601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401612c7691906146cf565b60206040518083038186803b158015612c8e57600080fd5b505afa158015612ca2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cc6919061406a565b119050919050565b600080601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401612d2c91906146cf565b60206040518083038186803b158015612d4457600080fd5b505afa158015612d58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d7c919061406a565b9050620186a08110612d92576001915050612d98565b60009150505b919050565b600080601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401612dfb91906146cf565b60206040518083038186803b158015612e1357600080fd5b505afa158015612e27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e4b919061406a565b119050919050565b612e5e848484612713565b612e6a848484846133a5565b612ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea0906147d0565b60405180910390fd5b50505050565b6060600d8054612ebe90614e01565b80601f0160208091040260200160405190810160405280929190818152602001828054612eea90614e01565b8015612f375780601f10612f0c57610100808354040283529160200191612f37565b820191906000526020600020905b815481529060010190602001808311612f1a57829003601f168201915b5050505050905090565b60606000821415612f89576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061309d565b600082905060005b60008214612fbb578080612fa490614e64565b915050600a82612fb49190614c44565b9150612f91565b60008167ffffffffffffffff811115612fd757612fd6615009565b5b6040519080825280601f01601f1916602001820160405280156130095781602001600182028036833780820191505090505b5090505b60008514613096576001826130229190614ccf565b9150600a856130319190614eed565b603061303d9190614bee565b60f81b81838151811061305357613052614fda565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561308f9190614c44565b945061300d565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61311783838361353c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561315a5761315581613541565b613199565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461319857613197838261358a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131dc576131d7816136f7565b61321b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461321a5761321982826137c8565b5b5b505050565b505050565b600080613230611b10565b613238610fac565b6132429190614ccf565b9050600081334144454260405160200161326095949392919061462a565b6040516020818303038152906040528051906020012060001c6132839190614eed565b9050600080600c60008481526020019081526020016000205414156132aa578190506132c1565b600c60008381526020019081526020016000205490505b6000600c60006001866132d49190614ccf565b8152602001908152602001600020541415613312576001836132f69190614ccf565b600c60008481526020019081526020016000208190555061334a565b600c60006001856133239190614ccf565b815260200190815260200160002054600c6000848152602001908152602001600020819055505b613352613847565b507f00000000000000000000000000000000000000000000000000000000000000008161337f9190614bee565b935050505090565b6133a18282604051806020016040528060008152506138ae565b5050565b60006133c68473ffffffffffffffffffffffffffffffffffffffff16613909565b1561352f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133ef612508565b8786866040518563ffffffff1660e01b815260040161341194939291906146ea565b602060405180830381600087803b15801561342b57600080fd5b505af192505050801561345c57506040513d601f19601f820116820180604052508101906134599190613fc7565b60015b6134df573d806000811461348c576040519150601f19603f3d011682016040523d82523d6000602084013e613491565b606091505b506000815114156134d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134ce906147d0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613534565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016135978461187c565b6135a19190614ccf565b9050600060076000848152602001908152602001600020549050818114613686576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061370b9190614ccf565b905060006009600084815260200190815260200160002054905060006008838154811061373b5761373a614fda565b5b90600052602060002001549050806008838154811061375d5761375c614fda565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806137ac576137ab614fab565b5b6001900381819060005260206000200160009055905550505050565b60006137d38361187c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080613852612187565b11613892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161388990614890565b60405180910390fd5b600b60008154809291906138a590614e64565b91905055905090565b6138b8838361392c565b6138c560008484846133a5565b613904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138fb906147d0565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561399c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161399390614950565b60405180910390fd5b6139a581612510565b156139e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139dc90614830565b60405180910390fd5b6139f16000838361310c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a419190614bee565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613b0260008383613220565b5050565b828054613b1290614e01565b90600052602060002090601f016020900481019282613b345760008555613b7b565b82601f10613b4d57805160ff1916838001178555613b7b565b82800160010185558215613b7b579182015b82811115613b7a578251825591602001919060010190613b5f565b5b509050613b889190613b8c565b5090565b5b80821115613ba5576000816000905550600101613b8d565b5090565b6000613bbc613bb784614af0565b614acb565b905082815260208101848484011115613bd857613bd7615047565b5b613be3848285614dbf565b509392505050565b6000613bfe613bf984614b21565b614acb565b905082815260208101848484011115613c1a57613c19615047565b5b613c25848285614dbf565b509392505050565b600081359050613c3c81615663565b92915050565b60008083601f840112613c5857613c5761503d565b5b8235905067ffffffffffffffff811115613c7557613c74615038565b5b602083019150836020820283011115613c9157613c90615042565b5b9250929050565b600081359050613ca78161567a565b92915050565b600081359050613cbc81615691565b92915050565b600081519050613cd181615691565b92915050565b600082601f830112613cec57613ceb61503d565b5b8135613cfc848260208601613ba9565b91505092915050565b600082601f830112613d1a57613d1961503d565b5b8135613d2a848260208601613beb565b91505092915050565b600081359050613d42816156a8565b92915050565b600081519050613d57816156a8565b92915050565b600060208284031215613d7357613d72615051565b5b6000613d8184828501613c2d565b91505092915050565b60008060408385031215613da157613da0615051565b5b6000613daf85828601613c2d565b9250506020613dc085828601613c2d565b9150509250929050565b600080600060608486031215613de357613de2615051565b5b6000613df186828701613c2d565b9350506020613e0286828701613c2d565b9250506040613e1386828701613d33565b9150509250925092565b60008060008060808587031215613e3757613e36615051565b5b6000613e4587828801613c2d565b9450506020613e5687828801613c2d565b9350506040613e6787828801613d33565b925050606085013567ffffffffffffffff811115613e8857613e8761504c565b5b613e9487828801613cd7565b91505092959194509250565b60008060408385031215613eb757613eb6615051565b5b6000613ec585828601613c2d565b9250506020613ed685828601613c98565b9150509250929050565b60008060408385031215613ef757613ef6615051565b5b6000613f0585828601613c2d565b9250506020613f1685828601613d33565b9150509250929050565b60008060208385031215613f3757613f36615051565b5b600083013567ffffffffffffffff811115613f5557613f5461504c565b5b613f6185828601613c42565b92509250509250929050565b600060208284031215613f8357613f82615051565b5b6000613f9184828501613c98565b91505092915050565b600060208284031215613fb057613faf615051565b5b6000613fbe84828501613cad565b91505092915050565b600060208284031215613fdd57613fdc615051565b5b6000613feb84828501613cc2565b91505092915050565b60006020828403121561400a57614009615051565b5b600082013567ffffffffffffffff8111156140285761402761504c565b5b61403484828501613d05565b91505092915050565b60006020828403121561405357614052615051565b5b600061406184828501613d33565b91505092915050565b6000602082840312156140805761407f615051565b5b600061408e84828501613d48565b91505092915050565b60006140a383836145f5565b60208301905092915050565b6140c06140bb82614d15565b614ebf565b82525050565b6140cf81614d03565b82525050565b6140e66140e182614d03565b614ead565b82525050565b60006140f782614b77565b6141018185614ba5565b935061410c83614b52565b8060005b8381101561413d5781516141248882614097565b975061412f83614b98565b925050600181019050614110565b5085935050505092915050565b61415381614d27565b82525050565b600061416482614b82565b61416e8185614bb6565b935061417e818560208601614dce565b61418781615056565b840191505092915050565b61419b81614d89565b82525050565b60006141ac82614b8d565b6141b68185614bd2565b93506141c6818560208601614dce565b6141cf81615056565b840191505092915050565b60006141e582614b8d565b6141ef8185614be3565b93506141ff818560208601614dce565b80840191505092915050565b6000815461421881614e01565b6142228186614be3565b9450600182166000811461423d576001811461424e57614281565b60ff19831686528186019350614281565b61425785614b62565b60005b838110156142795781548189015260018201915060208101905061425a565b838801955050505b50505092915050565b6000614297602b83614bd2565b91506142a282615074565b604082019050919050565b60006142ba603283614bd2565b91506142c5826150c3565b604082019050919050565b60006142dd602683614bd2565b91506142e882615112565b604082019050919050565b6000614300602583614bd2565b915061430b82615161565b604082019050919050565b6000614323601c83614bd2565b915061432e826151b0565b602082019050919050565b6000614346602483614bd2565b9150614351826151d9565b604082019050919050565b6000614369601983614bd2565b915061437482615228565b602082019050919050565b600061438c601883614bd2565b915061439782615251565b602082019050919050565b60006143af602c83614bd2565b91506143ba8261527a565b604082019050919050565b60006143d2603883614bd2565b91506143dd826152c9565b604082019050919050565b60006143f5601183614bd2565b915061440082615318565b602082019050919050565b6000614418602a83614bd2565b915061442382615341565b604082019050919050565b600061443b602983614bd2565b915061444682615390565b604082019050919050565b600061445e602083614bd2565b9150614469826153df565b602082019050919050565b6000614481602c83614bd2565b915061448c82615408565b604082019050919050565b60006144a4602083614bd2565b91506144af82615457565b602082019050919050565b60006144c7601683614bd2565b91506144d282615480565b602082019050919050565b60006144ea602f83614bd2565b91506144f5826154a9565b604082019050919050565b600061450d600d83614bd2565b9150614518826154f8565b602082019050919050565b6000614530602183614bd2565b915061453b82615521565b604082019050919050565b6000614553600083614bc7565b915061455e82615570565b600082019050919050565b6000614576601283614bd2565b915061458182615573565b602082019050919050565b6000614599603183614bd2565b91506145a48261559c565b604082019050919050565b60006145bc602c83614bd2565b91506145c7826155eb565b604082019050919050565b60006145df601b83614bd2565b91506145ea8261563a565b602082019050919050565b6145fe81614d7f565b82525050565b61460d81614d7f565b82525050565b61462461461f82614d7f565b614ee3565b82525050565b600061463682886140d5565b60148201915061464682876140af565b6014820191506146568286614613565b6020820191506146668285614613565b6020820191506146768284614613565b6020820191508190509695505050505050565b600061469582866141da565b91506146a182856141da565b91506146ad828461420b565b9150819050949350505050565b60006146c582614546565b9150819050919050565b60006020820190506146e460008301846140c6565b92915050565b60006080820190506146ff60008301876140c6565b61470c60208301866140c6565b6147196040830185614604565b818103606083015261472b8184614159565b905095945050505050565b6000602082019050818103600083015261475081846140ec565b905092915050565b600060208201905061476d600083018461414a565b92915050565b60006020820190506147886000830184614192565b92915050565b600060208201905081810360008301526147a881846141a1565b905092915050565b600060208201905081810360008301526147c98161428a565b9050919050565b600060208201905081810360008301526147e9816142ad565b9050919050565b60006020820190508181036000830152614809816142d0565b9050919050565b60006020820190508181036000830152614829816142f3565b9050919050565b6000602082019050818103600083015261484981614316565b9050919050565b6000602082019050818103600083015261486981614339565b9050919050565b600060208201905081810360008301526148898161435c565b9050919050565b600060208201905081810360008301526148a98161437f565b9050919050565b600060208201905081810360008301526148c9816143a2565b9050919050565b600060208201905081810360008301526148e9816143c5565b9050919050565b60006020820190508181036000830152614909816143e8565b9050919050565b600060208201905081810360008301526149298161440b565b9050919050565b600060208201905081810360008301526149498161442e565b9050919050565b6000602082019050818103600083015261496981614451565b9050919050565b6000602082019050818103600083015261498981614474565b9050919050565b600060208201905081810360008301526149a981614497565b9050919050565b600060208201905081810360008301526149c9816144ba565b9050919050565b600060208201905081810360008301526149e9816144dd565b9050919050565b60006020820190508181036000830152614a0981614500565b9050919050565b60006020820190508181036000830152614a2981614523565b9050919050565b60006020820190508181036000830152614a4981614569565b9050919050565b60006020820190508181036000830152614a698161458c565b9050919050565b60006020820190508181036000830152614a89816145af565b9050919050565b60006020820190508181036000830152614aa9816145d2565b9050919050565b6000602082019050614ac56000830184614604565b92915050565b6000614ad5614ae6565b9050614ae18282614e33565b919050565b6000604051905090565b600067ffffffffffffffff821115614b0b57614b0a615009565b5b614b1482615056565b9050602081019050919050565b600067ffffffffffffffff821115614b3c57614b3b615009565b5b614b4582615056565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614bf982614d7f565b9150614c0483614d7f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c3957614c38614f1e565b5b828201905092915050565b6000614c4f82614d7f565b9150614c5a83614d7f565b925082614c6a57614c69614f4d565b5b828204905092915050565b6000614c8082614d7f565b9150614c8b83614d7f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614cc457614cc3614f1e565b5b828202905092915050565b6000614cda82614d7f565b9150614ce583614d7f565b925082821015614cf857614cf7614f1e565b5b828203905092915050565b6000614d0e82614d5f565b9050919050565b6000614d2082614d5f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000614d9482614d9b565b9050919050565b6000614da682614dad565b9050919050565b6000614db882614d5f565b9050919050565b82818337600083830152505050565b60005b83811015614dec578082015181840152602081019050614dd1565b83811115614dfb576000848401525b50505050565b60006002820490506001821680614e1957607f821691505b60208210811415614e2d57614e2c614f7c565b5b50919050565b614e3c82615056565b810181811067ffffffffffffffff82111715614e5b57614e5a615009565b5b80604052505050565b6000614e6f82614d7f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614ea257614ea1614f1e565b5b600182019050919050565b6000614eb882614ed1565b9050919050565b6000614eca82614ed1565b9050919050565b6000614edc82615067565b9050919050565b6000819050919050565b6000614ef882614d7f565b9150614f0383614d7f565b925082614f1357614f12614f4d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e6f206d6f726520746f6b656e7320617661696c61626c650000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4d696e74206e6f7420706f737369626c65000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f6e6f742061646472657373203000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b61566c81614d03565b811461567757600080fd5b50565b61568381614d27565b811461568e57600080fd5b50565b61569a81614d33565b81146156a557600080fd5b50565b6156b181614d7f565b81146156bc57600080fd5b5056fea26469706673582212208e1cbed97d4f5ccff2ad057c10d9fafa9df2e02008428990c397f618b61aa84664736f6c63430008070033697066733a2f2f516d6461476d726837657450686a584d664a5943595557573159546f3544345872325868796d43464d6a4850384d2f000000000000000000000000e4a36aa88d8380db252558104dbe0d71505af7a5000000000000000000000000b20115b8b176d72f077c4f93e95492870240a0b200000000000000000000000085ac0eac55a62840121c5bc75368987a52267086
Deployed Bytecode
0x6080604052600436106102e45760003560e01c8063715018a611610190578063b88d4fde116100dc578063da3ef23f11610095578063f2c4ce1e1161006f578063f2c4ce1e14610b22578063f2fde38b14610b4b578063f99031a714610b74578063fc1a1c3614610bb1576102e4565b8063da3ef23f14610a91578063e14ca35314610aba578063e985e9c514610ae5576102e4565b8063b88d4fde14610981578063b88fe6a3146109aa578063bcb96f52146109d5578063c6682862146109fe578063c87b56dd14610a29578063d5abeb0114610a66576102e4565b80639f181b5e11610149578063a22cb46511610123578063a22cb465146108d9578063a475b5dd14610902578063a526c5d914610919578063b150a6f614610956576102e4565b80639f181b5e14610869578063a029564414610894578063a0712d68146108bd576102e4565b8063715018a61461077d57806384c4bd4b146107945780638da5cb5b146107bf5780638dd94bba146107ea578063945ec9dd1461081357806395d89b411461083e576102e4565b80633ccfd60b1161024f5780635c975abb11610208578063636e746b116101e2578063636e746b146106bf5780636b150b13146106ea5780636c0360eb1461071557806370a0823114610740576102e4565b80635c975abb1461062e5780635e1045ec146106595780636352211e14610682576102e4565b80633ccfd60b1461052d57806342842e0e14610537578063438b6300146105605780634f6ccce71461059d57806351830227146105da57806355f804b314610605576102e4565b806315f91c18116102a157806315f91c181461040b57806318160ddd1461043657806323b872dd146104615780632acc659e1461048a5780632f745c59146104c75780633974579114610504576102e4565b806301ffc9a7146102e957806302329a291461032657806306fdde031461034f578063081812fc1461037a578063081c8c44146103b7578063095ea7b3146103e2575b600080fd5b3480156102f557600080fd5b50610310600480360381019061030b9190613f9a565b610bdc565b60405161031d9190614758565b60405180910390f35b34801561033257600080fd5b5061034d60048036038101906103489190613f6d565b610c56565b005b34801561035b57600080fd5b50610364610cef565b604051610371919061478e565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c919061403d565b610d81565b6040516103ae91906146cf565b60405180910390f35b3480156103c357600080fd5b506103cc610e06565b6040516103d9919061478e565b60405180910390f35b3480156103ee57600080fd5b5061040960048036038101906104049190613ee0565b610e94565b005b34801561041757600080fd5b50610420610fac565b60405161042d9190614ab0565b60405180910390f35b34801561044257600080fd5b5061044b610fd4565b6040516104589190614ab0565b60405180910390f35b34801561046d57600080fd5b5061048860048036038101906104839190613dca565b610fe1565b005b34801561049657600080fd5b506104b160048036038101906104ac9190613d5d565b611041565b6040516104be9190614ab0565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e99190613ee0565b611132565b6040516104fb9190614ab0565b60405180910390f35b34801561051057600080fd5b5061052b60048036038101906105269190613f20565b6111d7565b005b6105356112f8565b005b34801561054357600080fd5b5061055e60048036038101906105599190613dca565b6113f4565b005b34801561056c57600080fd5b5061058760048036038101906105829190613d5d565b611414565b6040516105949190614736565b60405180910390f35b3480156105a957600080fd5b506105c460048036038101906105bf919061403d565b6114c2565b6040516105d19190614ab0565b60405180910390f35b3480156105e657600080fd5b506105ef611533565b6040516105fc9190614758565b60405180910390f35b34801561061157600080fd5b5061062c60048036038101906106279190613ff4565b611546565b005b34801561063a57600080fd5b506106436115dc565b6040516106509190614758565b60405180910390f35b34801561066557600080fd5b50610680600480360381019061067b9190613f20565b6115ef565b005b34801561068e57600080fd5b506106a960048036038101906106a4919061403d565b611710565b6040516106b691906146cf565b60405180910390f35b3480156106cb57600080fd5b506106d46117c2565b6040516106e19190614ab0565b60405180910390f35b3480156106f657600080fd5b506106ff6117c8565b60405161070c9190614773565b60405180910390f35b34801561072157600080fd5b5061072a6117ee565b604051610737919061478e565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190613d5d565b61187c565b6040516107749190614ab0565b60405180910390f35b34801561078957600080fd5b50610792611934565b005b3480156107a057600080fd5b506107a96119bc565b6040516107b69190614ab0565b60405180910390f35b3480156107cb57600080fd5b506107d46119c8565b6040516107e191906146cf565b60405180910390f35b3480156107f657600080fd5b50610811600480360381019061080c919061403d565b6119f2565b005b34801561081f57600080fd5b50610828611a78565b6040516108359190614ab0565b60405180910390f35b34801561084a57600080fd5b50610853611a7e565b604051610860919061478e565b60405180910390f35b34801561087557600080fd5b5061087e611b10565b60405161088b9190614ab0565b60405180910390f35b3480156108a057600080fd5b506108bb60048036038101906108b6919061403d565b611b1a565b005b6108d760048036038101906108d2919061403d565b611ba0565b005b3480156108e557600080fd5b5061090060048036038101906108fb9190613ea0565b611cfe565b005b34801561090e57600080fd5b50610917611d14565b005b34801561092557600080fd5b50610940600480360381019061093b9190613d5d565b611dad565b60405161094d9190614758565b60405180910390f35b34801561096257600080fd5b5061096b611df0565b6040516109789190614ab0565b60405180910390f35b34801561098d57600080fd5b506109a860048036038101906109a39190613e1d565b611df6565b005b3480156109b657600080fd5b506109bf611e58565b6040516109cc9190614773565b60405180910390f35b3480156109e157600080fd5b506109fc60048036038101906109f7919061403d565b611e7e565b005b348015610a0a57600080fd5b50610a13611f04565b604051610a20919061478e565b60405180910390f35b348015610a3557600080fd5b50610a506004803603810190610a4b919061403d565b611f92565b604051610a5d919061478e565b60405180910390f35b348015610a7257600080fd5b50610a7b6120eb565b604051610a889190614ab0565b60405180910390f35b348015610a9d57600080fd5b50610ab86004803603810190610ab39190613ff4565b6120f1565b005b348015610ac657600080fd5b50610acf612187565b604051610adc9190614ab0565b60405180910390f35b348015610af157600080fd5b50610b0c6004803603810190610b079190613d8a565b6121a8565b604051610b199190614758565b60405180910390f35b348015610b2e57600080fd5b50610b496004803603810190610b449190613ff4565b61223c565b005b348015610b5757600080fd5b50610b726004803603810190610b6d9190613d5d565b6122d2565b005b348015610b8057600080fd5b50610b9b6004803603810190610b969190613d5d565b6123ca565b604051610ba89190614758565b60405180910390f35b348015610bbd57600080fd5b50610bc6612420565b604051610bd39190614ab0565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c4f5750610c4e82612426565b5b9050919050565b610c5e612508565b73ffffffffffffffffffffffffffffffffffffffff16610c7c6119c8565b73ffffffffffffffffffffffffffffffffffffffff1614610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc990614990565b60405180910390fd5b80601860006101000a81548160ff02191690831515021790555050565b606060008054610cfe90614e01565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2a90614e01565b8015610d775780601f10610d4c57610100808354040283529160200191610d77565b820191906000526020600020905b815481529060010190602001808311610d5a57829003601f168201915b5050505050905090565b6000610d8c82612510565b610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc290614970565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600f8054610e1390614e01565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3f90614e01565b8015610e8c5780601f10610e6157610100808354040283529160200191610e8c565b820191906000526020600020905b815481529060010190602001808311610e6f57829003601f168201915b505050505081565b6000610e9f82611710565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0790614a10565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f2f612508565b73ffffffffffffffffffffffffffffffffffffffff161480610f5e5750610f5d81610f58612508565b6121a8565b5b610f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f94906148d0565b60405180910390fd5b610fa7838361257c565b505050565b60007f00000000000000000000000000000000000000000000000000000000000007f9905090565b6000600880549050905090565b610ff2610fec612508565b82612635565b611031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102890614a50565b60405180910390fd5b61103c838383612713565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a9906149f0565b60405180910390fd5b601254601354116110f7576110c6826123ca565b156110d557601354905061112d565b6110de82611dad565b156110ed57601254905061112d565b601454905061112d565b61110082611dad565b1561110f57601254905061112d565b611118826123ca565b1561112757601354905061112d565b60145490505b919050565b600061113d8361187c565b821061117e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611175906147b0565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6111df612508565b73ffffffffffffffffffffffffffffffffffffffff166111fd6119c8565b73ffffffffffffffffffffffffffffffffffffffff1614611253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124a90614990565b60405180910390fd5b60005b828290508110156112f35760006019600085858581811061127a57611279614fda565b5b905060200201602081019061128f9190613d5d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806112eb90614e64565b915050611256565b505050565b611300612508565b73ffffffffffffffffffffffffffffffffffffffff1661131e6119c8565b73ffffffffffffffffffffffffffffffffffffffff1614611374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136b90614990565b60405180910390fd5b600061137e6119c8565b73ffffffffffffffffffffffffffffffffffffffff16476040516113a1906146ba565b60006040518083038185875af1925050503d80600081146113de576040519150601f19603f3d011682016040523d82523d6000602084013e6113e3565b606091505b50509050806113f157600080fd5b50565b61140f83838360405180602001604052806000815250611df6565b505050565b606060006114218361187c565b905060008167ffffffffffffffff81111561143f5761143e615009565b5b60405190808252806020026020018201604052801561146d5781602001602082028036833780820191505090505b50905060005b828110156114b7576114858582611132565b82828151811061149857611497614fda565b5b60200260200101818152505080806114af90614e64565b915050611473565b508092505050919050565b60006114cc610fd4565b821061150d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150490614a70565b60405180910390fd5b6008828154811061152157611520614fda565b5b90600052602060002001549050919050565b601860019054906101000a900460ff1681565b61154e612508565b73ffffffffffffffffffffffffffffffffffffffff1661156c6119c8565b73ffffffffffffffffffffffffffffffffffffffff16146115c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b990614990565b60405180910390fd5b80600d90805190602001906115d8929190613b06565b5050565b601860009054906101000a900460ff1681565b6115f7612508565b73ffffffffffffffffffffffffffffffffffffffff166116156119c8565b73ffffffffffffffffffffffffffffffffffffffff161461166b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166290614990565b60405180910390fd5b60005b8282905081101561170b5760016019600085858581811061169257611691614fda565b5b90506020020160208101906116a79190613d5d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061170390614e64565b91505061166e565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b090614930565b60405180910390fd5b80915050919050565b60125481565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d80546117fb90614e01565b80601f016020809104026020016040519081016040528092919081815260200182805461182790614e01565b80156118745780601f1061184957610100808354040283529160200191611874565b820191906000526020600020905b81548152906001019060200180831161185757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e490614910565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61193c612508565b73ffffffffffffffffffffffffffffffffffffffff1661195a6119c8565b73ffffffffffffffffffffffffffffffffffffffff16146119b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a790614990565b60405180910390fd5b6119ba600061297a565b565b60178060000154905081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119fa612508565b73ffffffffffffffffffffffffffffffffffffffff16611a186119c8565b73ffffffffffffffffffffffffffffffffffffffff1614611a6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6590614990565b60405180910390fd5b8060128190555050565b60145481565b606060018054611a8d90614e01565b80601f0160208091040260200160405190810160405280929190818152602001828054611ab990614e01565b8015611b065780601f10611adb57610100808354040283529160200191611b06565b820191906000526020600020905b815481529060010190602001808311611ae957829003601f168201915b5050505050905090565b6000600b54905090565b611b22612508565b73ffffffffffffffffffffffffffffffffffffffff16611b406119c8565b73ffffffffffffffffffffffffffffffffffffffff1614611b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8d90614990565b60405180910390fd5b8060138190555050565b601860009054906101000a900460ff1615611bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be7906149b0565b60405180910390fd5b60008111611c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2a90614a90565b60405180910390fd5b6000611c3e33611041565b9050611c486119c8565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ccf5760008282611c889190614c75565b905080341015611ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc490614a30565b60405180910390fd5b505b6000600190505b828111611cf957611ce633612a40565b8080611cf190614e64565b915050611cd6565b505050565b611d10611d09612508565b8383612aab565b5050565b611d1c612508565b73ffffffffffffffffffffffffffffffffffffffff16611d3a6119c8565b73ffffffffffffffffffffffffffffffffffffffff1614611d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8790614990565b60405180910390fd5b6001601860016101000a81548160ff021916908315150217905550565b6000611db882612c18565b80611dc85750611dc782612cce565b5b80611dd85750611dd782612d9d565b5b15611de65760019050611deb565b600090505b919050565b60165481565b611e07611e01612508565b83612635565b611e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3d90614a50565b60405180910390fd5b611e5284848484612e53565b50505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611e86612508565b73ffffffffffffffffffffffffffffffffffffffff16611ea46119c8565b73ffffffffffffffffffffffffffffffffffffffff1614611efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef190614990565b60405180910390fd5b8060148190555050565b600e8054611f1190614e01565b80601f0160208091040260200160405190810160405280929190818152602001828054611f3d90614e01565b8015611f8a5780601f10611f5f57610100808354040283529160200191611f8a565b820191906000526020600020905b815481529060010190602001808311611f6d57829003601f168201915b505050505081565b6060611f9d82612510565b611fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd3906149d0565b60405180910390fd5b60001515601860019054906101000a900460ff161515141561208a57600f805461200590614e01565b80601f016020809104026020016040519081016040528092919081815260200182805461203190614e01565b801561207e5780601f106120535761010080835404028352916020019161207e565b820191906000526020600020905b81548152906001019060200180831161206157829003601f168201915b505050505090506120e6565b6000612094612eaf565b905060008151116120b457604051806020016040528060008152506120e2565b806120be84612f41565b600e6040516020016120d293929190614689565b6040516020818303038152906040525b9150505b919050565b60155481565b6120f9612508565b73ffffffffffffffffffffffffffffffffffffffff166121176119c8565b73ffffffffffffffffffffffffffffffffffffffff161461216d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216490614990565b60405180910390fd5b80600e9080519060200190612183929190613b06565b5050565b6000612191611b10565b612199610fac565b6121a39190614ccf565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612244612508565b73ffffffffffffffffffffffffffffffffffffffff166122626119c8565b73ffffffffffffffffffffffffffffffffffffffff16146122b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122af90614990565b60405180910390fd5b80600f90805190602001906122ce929190613b06565b5050565b6122da612508565b73ffffffffffffffffffffffffffffffffffffffff166122f86119c8565b73ffffffffffffffffffffffffffffffffffffffff161461234e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234590614990565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b5906147f0565b60405180910390fd5b6123c78161297a565b50565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60135481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806124f157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806125015750612500826130a2565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166125ef83611710565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061264082612510565b61267f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612676906148b0565b60405180910390fd5b600061268a83611710565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806126cc57506126cb81856121a8565b5b8061270a57508373ffffffffffffffffffffffffffffffffffffffff166126f284610d81565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661273382611710565b73ffffffffffffffffffffffffffffffffffffffff1614612789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278090614810565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f090614850565b60405180910390fd5b61280483838361310c565b61280f60008261257c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461285f9190614ccf565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128b69190614bee565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612975838383613220565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612a4a613225565b9050600081118015612a5e57506015548111155b612a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a94906148f0565b60405180910390fd5b612aa78282613387565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1190614870565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612c0b9190614758565b60405180910390a3505050565b600080601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401612c7691906146cf565b60206040518083038186803b158015612c8e57600080fd5b505afa158015612ca2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cc6919061406a565b119050919050565b600080601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401612d2c91906146cf565b60206040518083038186803b158015612d4457600080fd5b505afa158015612d58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d7c919061406a565b9050620186a08110612d92576001915050612d98565b60009150505b919050565b600080601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401612dfb91906146cf565b60206040518083038186803b158015612e1357600080fd5b505afa158015612e27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e4b919061406a565b119050919050565b612e5e848484612713565b612e6a848484846133a5565b612ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea0906147d0565b60405180910390fd5b50505050565b6060600d8054612ebe90614e01565b80601f0160208091040260200160405190810160405280929190818152602001828054612eea90614e01565b8015612f375780601f10612f0c57610100808354040283529160200191612f37565b820191906000526020600020905b815481529060010190602001808311612f1a57829003601f168201915b5050505050905090565b60606000821415612f89576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061309d565b600082905060005b60008214612fbb578080612fa490614e64565b915050600a82612fb49190614c44565b9150612f91565b60008167ffffffffffffffff811115612fd757612fd6615009565b5b6040519080825280601f01601f1916602001820160405280156130095781602001600182028036833780820191505090505b5090505b60008514613096576001826130229190614ccf565b9150600a856130319190614eed565b603061303d9190614bee565b60f81b81838151811061305357613052614fda565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561308f9190614c44565b945061300d565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61311783838361353c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561315a5761315581613541565b613199565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461319857613197838261358a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131dc576131d7816136f7565b61321b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461321a5761321982826137c8565b5b5b505050565b505050565b600080613230611b10565b613238610fac565b6132429190614ccf565b9050600081334144454260405160200161326095949392919061462a565b6040516020818303038152906040528051906020012060001c6132839190614eed565b9050600080600c60008481526020019081526020016000205414156132aa578190506132c1565b600c60008381526020019081526020016000205490505b6000600c60006001866132d49190614ccf565b8152602001908152602001600020541415613312576001836132f69190614ccf565b600c60008481526020019081526020016000208190555061334a565b600c60006001856133239190614ccf565b815260200190815260200160002054600c6000848152602001908152602001600020819055505b613352613847565b507f00000000000000000000000000000000000000000000000000000000000000018161337f9190614bee565b935050505090565b6133a18282604051806020016040528060008152506138ae565b5050565b60006133c68473ffffffffffffffffffffffffffffffffffffffff16613909565b1561352f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133ef612508565b8786866040518563ffffffff1660e01b815260040161341194939291906146ea565b602060405180830381600087803b15801561342b57600080fd5b505af192505050801561345c57506040513d601f19601f820116820180604052508101906134599190613fc7565b60015b6134df573d806000811461348c576040519150601f19603f3d011682016040523d82523d6000602084013e613491565b606091505b506000815114156134d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134ce906147d0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613534565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016135978461187c565b6135a19190614ccf565b9050600060076000848152602001908152602001600020549050818114613686576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061370b9190614ccf565b905060006009600084815260200190815260200160002054905060006008838154811061373b5761373a614fda565b5b90600052602060002001549050806008838154811061375d5761375c614fda565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806137ac576137ab614fab565b5b6001900381819060005260206000200160009055905550505050565b60006137d38361187c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080613852612187565b11613892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161388990614890565b60405180910390fd5b600b60008154809291906138a590614e64565b91905055905090565b6138b8838361392c565b6138c560008484846133a5565b613904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138fb906147d0565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561399c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161399390614950565b60405180910390fd5b6139a581612510565b156139e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139dc90614830565b60405180910390fd5b6139f16000838361310c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a419190614bee565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613b0260008383613220565b5050565b828054613b1290614e01565b90600052602060002090601f016020900481019282613b345760008555613b7b565b82601f10613b4d57805160ff1916838001178555613b7b565b82800160010185558215613b7b579182015b82811115613b7a578251825591602001919060010190613b5f565b5b509050613b889190613b8c565b5090565b5b80821115613ba5576000816000905550600101613b8d565b5090565b6000613bbc613bb784614af0565b614acb565b905082815260208101848484011115613bd857613bd7615047565b5b613be3848285614dbf565b509392505050565b6000613bfe613bf984614b21565b614acb565b905082815260208101848484011115613c1a57613c19615047565b5b613c25848285614dbf565b509392505050565b600081359050613c3c81615663565b92915050565b60008083601f840112613c5857613c5761503d565b5b8235905067ffffffffffffffff811115613c7557613c74615038565b5b602083019150836020820283011115613c9157613c90615042565b5b9250929050565b600081359050613ca78161567a565b92915050565b600081359050613cbc81615691565b92915050565b600081519050613cd181615691565b92915050565b600082601f830112613cec57613ceb61503d565b5b8135613cfc848260208601613ba9565b91505092915050565b600082601f830112613d1a57613d1961503d565b5b8135613d2a848260208601613beb565b91505092915050565b600081359050613d42816156a8565b92915050565b600081519050613d57816156a8565b92915050565b600060208284031215613d7357613d72615051565b5b6000613d8184828501613c2d565b91505092915050565b60008060408385031215613da157613da0615051565b5b6000613daf85828601613c2d565b9250506020613dc085828601613c2d565b9150509250929050565b600080600060608486031215613de357613de2615051565b5b6000613df186828701613c2d565b9350506020613e0286828701613c2d565b9250506040613e1386828701613d33565b9150509250925092565b60008060008060808587031215613e3757613e36615051565b5b6000613e4587828801613c2d565b9450506020613e5687828801613c2d565b9350506040613e6787828801613d33565b925050606085013567ffffffffffffffff811115613e8857613e8761504c565b5b613e9487828801613cd7565b91505092959194509250565b60008060408385031215613eb757613eb6615051565b5b6000613ec585828601613c2d565b9250506020613ed685828601613c98565b9150509250929050565b60008060408385031215613ef757613ef6615051565b5b6000613f0585828601613c2d565b9250506020613f1685828601613d33565b9150509250929050565b60008060208385031215613f3757613f36615051565b5b600083013567ffffffffffffffff811115613f5557613f5461504c565b5b613f6185828601613c42565b92509250509250929050565b600060208284031215613f8357613f82615051565b5b6000613f9184828501613c98565b91505092915050565b600060208284031215613fb057613faf615051565b5b6000613fbe84828501613cad565b91505092915050565b600060208284031215613fdd57613fdc615051565b5b6000613feb84828501613cc2565b91505092915050565b60006020828403121561400a57614009615051565b5b600082013567ffffffffffffffff8111156140285761402761504c565b5b61403484828501613d05565b91505092915050565b60006020828403121561405357614052615051565b5b600061406184828501613d33565b91505092915050565b6000602082840312156140805761407f615051565b5b600061408e84828501613d48565b91505092915050565b60006140a383836145f5565b60208301905092915050565b6140c06140bb82614d15565b614ebf565b82525050565b6140cf81614d03565b82525050565b6140e66140e182614d03565b614ead565b82525050565b60006140f782614b77565b6141018185614ba5565b935061410c83614b52565b8060005b8381101561413d5781516141248882614097565b975061412f83614b98565b925050600181019050614110565b5085935050505092915050565b61415381614d27565b82525050565b600061416482614b82565b61416e8185614bb6565b935061417e818560208601614dce565b61418781615056565b840191505092915050565b61419b81614d89565b82525050565b60006141ac82614b8d565b6141b68185614bd2565b93506141c6818560208601614dce565b6141cf81615056565b840191505092915050565b60006141e582614b8d565b6141ef8185614be3565b93506141ff818560208601614dce565b80840191505092915050565b6000815461421881614e01565b6142228186614be3565b9450600182166000811461423d576001811461424e57614281565b60ff19831686528186019350614281565b61425785614b62565b60005b838110156142795781548189015260018201915060208101905061425a565b838801955050505b50505092915050565b6000614297602b83614bd2565b91506142a282615074565b604082019050919050565b60006142ba603283614bd2565b91506142c5826150c3565b604082019050919050565b60006142dd602683614bd2565b91506142e882615112565b604082019050919050565b6000614300602583614bd2565b915061430b82615161565b604082019050919050565b6000614323601c83614bd2565b915061432e826151b0565b602082019050919050565b6000614346602483614bd2565b9150614351826151d9565b604082019050919050565b6000614369601983614bd2565b915061437482615228565b602082019050919050565b600061438c601883614bd2565b915061439782615251565b602082019050919050565b60006143af602c83614bd2565b91506143ba8261527a565b604082019050919050565b60006143d2603883614bd2565b91506143dd826152c9565b604082019050919050565b60006143f5601183614bd2565b915061440082615318565b602082019050919050565b6000614418602a83614bd2565b915061442382615341565b604082019050919050565b600061443b602983614bd2565b915061444682615390565b604082019050919050565b600061445e602083614bd2565b9150614469826153df565b602082019050919050565b6000614481602c83614bd2565b915061448c82615408565b604082019050919050565b60006144a4602083614bd2565b91506144af82615457565b602082019050919050565b60006144c7601683614bd2565b91506144d282615480565b602082019050919050565b60006144ea602f83614bd2565b91506144f5826154a9565b604082019050919050565b600061450d600d83614bd2565b9150614518826154f8565b602082019050919050565b6000614530602183614bd2565b915061453b82615521565b604082019050919050565b6000614553600083614bc7565b915061455e82615570565b600082019050919050565b6000614576601283614bd2565b915061458182615573565b602082019050919050565b6000614599603183614bd2565b91506145a48261559c565b604082019050919050565b60006145bc602c83614bd2565b91506145c7826155eb565b604082019050919050565b60006145df601b83614bd2565b91506145ea8261563a565b602082019050919050565b6145fe81614d7f565b82525050565b61460d81614d7f565b82525050565b61462461461f82614d7f565b614ee3565b82525050565b600061463682886140d5565b60148201915061464682876140af565b6014820191506146568286614613565b6020820191506146668285614613565b6020820191506146768284614613565b6020820191508190509695505050505050565b600061469582866141da565b91506146a182856141da565b91506146ad828461420b565b9150819050949350505050565b60006146c582614546565b9150819050919050565b60006020820190506146e460008301846140c6565b92915050565b60006080820190506146ff60008301876140c6565b61470c60208301866140c6565b6147196040830185614604565b818103606083015261472b8184614159565b905095945050505050565b6000602082019050818103600083015261475081846140ec565b905092915050565b600060208201905061476d600083018461414a565b92915050565b60006020820190506147886000830184614192565b92915050565b600060208201905081810360008301526147a881846141a1565b905092915050565b600060208201905081810360008301526147c98161428a565b9050919050565b600060208201905081810360008301526147e9816142ad565b9050919050565b60006020820190508181036000830152614809816142d0565b9050919050565b60006020820190508181036000830152614829816142f3565b9050919050565b6000602082019050818103600083015261484981614316565b9050919050565b6000602082019050818103600083015261486981614339565b9050919050565b600060208201905081810360008301526148898161435c565b9050919050565b600060208201905081810360008301526148a98161437f565b9050919050565b600060208201905081810360008301526148c9816143a2565b9050919050565b600060208201905081810360008301526148e9816143c5565b9050919050565b60006020820190508181036000830152614909816143e8565b9050919050565b600060208201905081810360008301526149298161440b565b9050919050565b600060208201905081810360008301526149498161442e565b9050919050565b6000602082019050818103600083015261496981614451565b9050919050565b6000602082019050818103600083015261498981614474565b9050919050565b600060208201905081810360008301526149a981614497565b9050919050565b600060208201905081810360008301526149c9816144ba565b9050919050565b600060208201905081810360008301526149e9816144dd565b9050919050565b60006020820190508181036000830152614a0981614500565b9050919050565b60006020820190508181036000830152614a2981614523565b9050919050565b60006020820190508181036000830152614a4981614569565b9050919050565b60006020820190508181036000830152614a698161458c565b9050919050565b60006020820190508181036000830152614a89816145af565b9050919050565b60006020820190508181036000830152614aa9816145d2565b9050919050565b6000602082019050614ac56000830184614604565b92915050565b6000614ad5614ae6565b9050614ae18282614e33565b919050565b6000604051905090565b600067ffffffffffffffff821115614b0b57614b0a615009565b5b614b1482615056565b9050602081019050919050565b600067ffffffffffffffff821115614b3c57614b3b615009565b5b614b4582615056565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614bf982614d7f565b9150614c0483614d7f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c3957614c38614f1e565b5b828201905092915050565b6000614c4f82614d7f565b9150614c5a83614d7f565b925082614c6a57614c69614f4d565b5b828204905092915050565b6000614c8082614d7f565b9150614c8b83614d7f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614cc457614cc3614f1e565b5b828202905092915050565b6000614cda82614d7f565b9150614ce583614d7f565b925082821015614cf857614cf7614f1e565b5b828203905092915050565b6000614d0e82614d5f565b9050919050565b6000614d2082614d5f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000614d9482614d9b565b9050919050565b6000614da682614dad565b9050919050565b6000614db882614d5f565b9050919050565b82818337600083830152505050565b60005b83811015614dec578082015181840152602081019050614dd1565b83811115614dfb576000848401525b50505050565b60006002820490506001821680614e1957607f821691505b60208210811415614e2d57614e2c614f7c565b5b50919050565b614e3c82615056565b810181811067ffffffffffffffff82111715614e5b57614e5a615009565b5b80604052505050565b6000614e6f82614d7f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614ea257614ea1614f1e565b5b600182019050919050565b6000614eb882614ed1565b9050919050565b6000614eca82614ed1565b9050919050565b6000614edc82615067565b9050919050565b6000819050919050565b6000614ef882614d7f565b9150614f0383614d7f565b925082614f1357614f12614f4d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e6f206d6f726520746f6b656e7320617661696c61626c650000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4d696e74206e6f7420706f737369626c65000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f6e6f742061646472657373203000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b61566c81614d03565b811461567757600080fd5b50565b61568381614d27565b811461568e57600080fd5b50565b61569a81614d33565b81146156a557600080fd5b50565b6156b181614d7f565b81146156bc57600080fd5b5056fea26469706673582212208e1cbed97d4f5ccff2ad057c10d9fafa9df2e02008428990c397f618b61aa84664736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000e4a36aa88d8380db252558104dbe0d71505af7a5000000000000000000000000b20115b8b176d72f077c4f93e95492870240a0b200000000000000000000000085ac0eac55a62840121c5bc75368987a52267086
-----Decoded View---------------
Arg [0] : _armySoldier (address): 0xE4a36Aa88d8380DB252558104dbe0D71505aF7a5
Arg [1] : _armyContract (address): 0xB20115B8B176D72F077C4f93e95492870240a0b2
Arg [2] : _armyCoalition (address): 0x85aC0eAc55A62840121c5Bc75368987a52267086
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000e4a36aa88d8380db252558104dbe0d71505af7a5
Arg [1] : 000000000000000000000000b20115b8b176d72f077c4f93e95492870240a0b2
Arg [2] : 00000000000000000000000085ac0eac55a62840121c5bc75368987a52267086
Deployed Bytecode Sourcemap
67734:6186:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61413:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72188:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48232:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49792:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68001:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49315:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21865:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62053:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50542:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69254:563;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61721:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72457:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73462:455;;;:::i;:::-;;50952:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70718:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62243:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68369:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71828:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68338:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72267:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47926:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68095:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68064:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67874:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47656:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26790:103;;;;;;;;;;;;;:::i;:::-;;68294:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26139:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73031:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68184:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48401:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22139:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73127:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69840:445;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50085:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71757:65;;;;;;;;;;;;;:::i;:::-;;72714:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68263:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51208:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68034:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72935:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67959:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71238:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68227:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71932:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22316:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50311:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72062:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27048:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70608:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68138:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61413:224;61515:4;61554:35;61539:50;;;:11;:50;;;;:90;;;;61593:36;61617:11;61593:23;:36::i;:::-;61539:90;61532:97;;61413:224;;;:::o;72188:73::-;26370:12;:10;:12::i;:::-;26359:23;;:7;:5;:7::i;:::-;:23;;;26351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72249:6:::1;72240;;:15;;;;;;;;;;;;;;;;;;72188:73:::0;:::o;48232:100::-;48286:13;48319:5;48312:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48232:100;:::o;49792:221::-;49868:7;49896:16;49904:7;49896;:16::i;:::-;49888:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;49981:15;:24;49997:7;49981:24;;;;;;;;;;;;;;;;;;;;;49974:31;;49792:221;;;:::o;68001:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49315:411::-;49396:13;49412:23;49427:7;49412:14;:23::i;:::-;49396:39;;49460:5;49454:11;;:2;:11;;;;49446:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;49554:5;49538:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;49563:37;49580:5;49587:12;:10;:12::i;:::-;49563:16;:37::i;:::-;49538:62;49516:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;49697:21;49706:2;49710:7;49697:8;:21::i;:::-;49385:341;49315:411;;:::o;21865:96::-;21916:7;21937:19;21930:26;;21865:96;:::o;62053:113::-;62114:7;62141:10;:17;;;;62134:24;;62053:113;:::o;50542:339::-;50737:41;50756:12;:10;:12::i;:::-;50770:7;50737:18;:41::i;:::-;50729:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;50845:28;50855:4;50861:2;50865:7;50845:9;:28::i;:::-;50542:339;;;:::o;69254:563::-;69311:7;69355:1;69335:22;;:8;:22;;;;69327:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;69404:11;;69386:14;;:29;69382:430;;69432:21;69444:8;69432:11;:21::i;:::-;69428:192;;;69473:14;;69466:21;;;;69428:192;69509:20;69520:8;69509:10;:20::i;:::-;69505:115;;;69549:11;;69542:18;;;;69505:115;69597:11;;69590:18;;;;69382:430;69637:20;69648:8;69637:10;:20::i;:::-;69633:179;;;69677:11;;69670:18;;;;69633:179;69706:21;69718:8;69706:11;:21::i;:::-;69702:110;;;69747:14;;69740:21;;;;69702:110;69793:11;;69786:18;;69254:563;;;;:::o;61721:256::-;61818:7;61854:23;61871:5;61854:16;:23::i;:::-;61846:5;:31;61838:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;61943:12;:19;61956:5;61943:19;;;;;;;;;;;;;;;:26;61963:5;61943:26;;;;;;;;;;;;61936:33;;61721:256;;;;:::o;72457:186::-;26370:12;:10;:12::i;:::-;26359:23;;:7;:5;:7::i;:::-;:23;;;26351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72541:6:::1;72536:94;72557:9;;:16;;72553:1;:20;72536:94;;;72617:5;72591:9;:23;72601:9;;72611:1;72601:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;72591:23;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;72575:3;;;;;:::i;:::-;;;;72536:94;;;;72457:186:::0;;:::o;73462:455::-;26370:12;:10;:12::i;:::-;26359:23;;:7;:5;:7::i;:::-;:23;;;26351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;73739:7:::1;73760;:5;:7::i;:::-;73752:21;;73781;73752:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73738:69;;;73822:2;73814:11;;;::::0;::::1;;73507:410;73462:455::o:0;50952:185::-;51090:39;51107:4;51113:2;51117:7;51090:39;;;;;;;;;;;;:16;:39::i;:::-;50952:185;;;:::o;70718:348::-;70793:16;70821:23;70847:17;70857:6;70847:9;:17::i;:::-;70821:43;;70871:25;70913:15;70899:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70871:58;;70941:9;70936:103;70956:15;70952:1;:19;70936:103;;;71001:30;71021:6;71029:1;71001:19;:30::i;:::-;70987:8;70996:1;70987:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;70973:3;;;;;:::i;:::-;;;;70936:103;;;;71052:8;71045:15;;;;70718:348;;;:::o;62243:233::-;62318:7;62354:30;:28;:30::i;:::-;62346:5;:38;62338:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;62451:10;62462:5;62451:17;;;;;;;;:::i;:::-;;;;;;;;;;62444:24;;62243:233;;;:::o;68369:27::-;;;;;;;;;;;;;:::o;71828:98::-;26370:12;:10;:12::i;:::-;26359:23;;:7;:5;:7::i;:::-;:23;;;26351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71909:11:::1;71899:7;:21;;;;;;;;;;;;:::i;:::-;;71828:98:::0;:::o;68338:26::-;;;;;;;;;;;;;:::o;72267:182::-;26370:12;:10;:12::i;:::-;26359:23;;:7;:5;:7::i;:::-;:23;;;26351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72348:6:::1;72343:93;72364:9;;:16;;72360:1;:20;72343:93;;;72424:4;72398:9;:23;72408:9;;72418:1;72408:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;72398:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;72382:3;;;;;:::i;:::-;;;;72343:93;;;;72267:182:::0;;:::o;47926:239::-;47998:7;48018:13;48034:7;:16;48042:7;48034:16;;;;;;;;;;;;;;;;;;;;;48018:32;;48086:1;48069:19;;:5;:19;;;;48061:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;48152:5;48145:12;;;47926:239;;;:::o;68095:38::-;;;;:::o;68064:26::-;;;;;;;;;;;;;:::o;67874:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47656:208::-;47728:7;47773:1;47756:19;;:5;:19;;;;47748:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;47840:9;:16;47850:5;47840:16;;;;;;;;;;;;;;;;47833:23;;47656:208;;;:::o;26790:103::-;26370:12;:10;:12::i;:::-;26359:23;;:7;:5;:7::i;:::-;:23;;;26351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26855:30:::1;26882:1;26855:18;:30::i;:::-;26790:103::o:0;68294:39::-;;;;;;;;;:::o;26139:87::-;26185:7;26212:6;;;;;;;;;;;26205:13;;26139:87;:::o;73031:90::-;26370:12;:10;:12::i;:::-;26359:23;;:7;:5;:7::i;:::-;:23;;;26351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;73110:5:::1;73096:11;:19;;;;73031:90:::0;:::o;68184:38::-;;;;:::o;48401:104::-;48457:13;48490:7;48483:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48401:104;:::o;22139:80::-;22182:7;22203:11;;22196:18;;22139:80;:::o;73127:96::-;26370:12;:10;:12::i;:::-;26359:23;;:7;:5;:7::i;:::-;:23;;;26351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;73212:5:::1;73195:14;:22;;;;73127:96:::0;:::o;69840:445::-;69901:6;;;;;;;;;;;69900:7;69892:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;69958:1;69949:6;:10;69941:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;69998:12;70024:20;70033:10;70024:8;:20::i;:::-;70017:27;;70071:7;:5;:7::i;:::-;70057:21;;:10;:21;;;70053:141;;70092:14;70116:6;70109:4;:13;;;;:::i;:::-;70092:30;;70154:9;70141;:22;;70133:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;70080:114;70053:141;70205:9;70217:1;70205:13;;70200:80;70225:6;70220:1;:11;70200:80;;70247:25;70261:10;70247:13;:25::i;:::-;70233:3;;;;;:::i;:::-;;;;70200:80;;;;69885:400;69840:445;:::o;50085:155::-;50180:52;50199:12;:10;:12::i;:::-;50213:8;50223;50180:18;:52::i;:::-;50085:155;;:::o;71757:65::-;26370:12;:10;:12::i;:::-;26359:23;;:7;:5;:7::i;:::-;:23;;;26351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71812:4:::1;71801:8;;:15;;;;;;;;;;;;;;;;;;71757:65::o:0;72714:215::-;72773:4;72790:23;72804:8;72790:13;:23::i;:::-;:44;;;;72817:17;72825:8;72817:7;:17::i;:::-;72790:44;:73;;;;72838:25;72854:8;72838:15;:25::i;:::-;72790:73;72786:138;;;72879:4;72872:11;;;;72786:138;72911:5;72904:12;;72714:215;;;;:::o;68263:26::-;;;;:::o;51208:328::-;51383:41;51402:12;:10;:12::i;:::-;51416:7;51383:18;:41::i;:::-;51375:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;51489:39;51503:4;51509:2;51513:7;51522:5;51489:13;:39::i;:::-;51208:328;;;;:::o;68034:25::-;;;;;;;;;;;;;:::o;72935:90::-;26370:12;:10;:12::i;:::-;26359:23;;:7;:5;:7::i;:::-;:23;;;26351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;73014:5:::1;73000:11;:19;;;;72935:90:::0;:::o;67959:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;71238:497::-;71336:13;71377:16;71385:7;71377;:16::i;:::-;71361:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;71486:5;71474:17;;:8;;;;;;;;;;;:17;;;71471:62;;;71511:14;71504:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71471:62;71541:28;71572:10;:8;:10::i;:::-;71541:41;;71627:1;71602:14;71596:28;:32;:133;;;;;;;;;;;;;;;;;71664:14;71680:18;:7;:16;:18::i;:::-;71700:13;71647:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;71596:133;71589:140;;;71238:497;;;;:::o;68227:31::-;;;;:::o;71932:122::-;26370:12;:10;:12::i;:::-;26359:23;;:7;:5;:7::i;:::-;:23;;;26351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72031:17:::1;72015:13;:33;;;;;;;;;;;;:::i;:::-;;71932:122:::0;:::o;22316:113::-;22368:7;22412:12;:10;:12::i;:::-;22389:20;:18;:20::i;:::-;:35;;;;:::i;:::-;22382:42;;22316:113;:::o;50311:164::-;50408:4;50432:18;:25;50451:5;50432:25;;;;;;;;;;;;;;;:35;50458:8;50432:35;;;;;;;;;;;;;;;;;;;;;;;;;50425:42;;50311:164;;;;:::o;72062:120::-;26370:12;:10;:12::i;:::-;26359:23;;:7;:5;:7::i;:::-;:23;;;26351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72161:15:::1;72144:14;:32;;;;;;;;;;;;:::i;:::-;;72062:120:::0;:::o;27048:201::-;26370:12;:10;:12::i;:::-;26359:23;;:7;:5;:7::i;:::-;:23;;;26351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27157:1:::1;27137:22;;:8;:22;;;;27129:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27213:28;27232:8;27213:18;:28::i;:::-;27048:201:::0;:::o;70608:104::-;70667:4;70687:9;:19;70697:8;70687:19;;;;;;;;;;;;;;;;;;;;;;;;;70680:26;;70608:104;;;:::o;68138:41::-;;;;:::o;47287:305::-;47389:4;47441:25;47426:40;;;:11;:40;;;;:105;;;;47498:33;47483:48;;;:11;:48;;;;47426:105;:158;;;;47548:36;47572:11;47548:23;:36::i;:::-;47426:158;47406:178;;47287:305;;;:::o;2251:98::-;2304:7;2331:10;2324:17;;2251:98;:::o;53046:127::-;53111:4;53163:1;53135:30;;:7;:16;53143:7;53135:16;;;;;;;;;;;;;;;;;;;;;:30;;;;53128:37;;53046:127;;;:::o;57192:174::-;57294:2;57267:15;:24;57283:7;57267:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;57350:7;57346:2;57312:46;;57321:23;57336:7;57321:14;:23::i;:::-;57312:46;;;;;;;;;;;;57192:174;;:::o;53340:348::-;53433:4;53458:16;53466:7;53458;:16::i;:::-;53450:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;53534:13;53550:23;53565:7;53550:14;:23::i;:::-;53534:39;;53603:5;53592:16;;:7;:16;;;:52;;;;53612:32;53629:5;53636:7;53612:16;:32::i;:::-;53592:52;:87;;;;53672:7;53648:31;;:20;53660:7;53648:11;:20::i;:::-;:31;;;53592:87;53584:96;;;53340:348;;;;:::o;56449:625::-;56608:4;56581:31;;:23;56596:7;56581:14;:23::i;:::-;:31;;;56573:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;56687:1;56673:16;;:2;:16;;;;56665:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;56743:39;56764:4;56770:2;56774:7;56743:20;:39::i;:::-;56847:29;56864:1;56868:7;56847:8;:29::i;:::-;56908:1;56889:9;:15;56899:4;56889:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;56937:1;56920:9;:13;56930:2;56920:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;56968:2;56949:7;:16;56957:7;56949:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;57007:7;57003:2;56988:27;;56997:4;56988:27;;;;;;;;;;;;57028:38;57048:4;57054:2;57058:7;57028:19;:38::i;:::-;56449:625;;;:::o;27409:191::-;27483:16;27502:6;;;;;;;;;;;27483:25;;27528:8;27519:6;;:17;;;;;;;;;;;;;;;;;;27583:8;27552:40;;27573:8;27552:40;;;;;;;;;;;;27472:128;27409:191;:::o;71072:157::-;71119:10;71132:11;:9;:11::i;:::-;71119:24;;71160:1;71155:2;:6;:25;;;;;71171:9;;71165:2;:15;;71155:25;71147:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;71206:17;71216:2;71220;71206:9;:17::i;:::-;71115:114;71072:157;:::o;57508:315::-;57663:8;57654:17;;:5;:17;;;;57646:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;57750:8;57712:18;:25;57731:5;57712:25;;;;;;;;;;;;;;;:35;57738:8;57712:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;57796:8;57774:41;;57789:5;57774:41;;;57806:8;57774:41;;;;;;:::i;:::-;;;;;;;;57508:315;;;:::o;68868:124::-;68931:4;68985:1;68951:11;;;;;;;;;;;:21;;;68973:8;68951:31;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:35;68944:42;;68868:124;;;:::o;73229:227::-;73287:4;73300:12;73321;;;;;;;;;;;73315:29;;;73345:8;73315:39;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;73300:54;;73376:6;73365:7;:17;73361:90;;73402:4;73395:11;;;;;73361:90;73438:5;73431:12;;;73229:227;;;;:::o;68998:127::-;69063:4;69118:1;69083:12;;;;;;;;;;;:22;;;69106:8;69083:32;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:36;69076:43;;68998:127;;;:::o;52418:315::-;52575:28;52585:4;52591:2;52595:7;52575:9;:28::i;:::-;52622:48;52645:4;52651:2;52655:7;52664:5;52622:22;:48::i;:::-;52614:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;52418:315;;;;:::o;69146:102::-;69206:13;69235:7;69228:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69146:102;:::o;19419:723::-;19475:13;19705:1;19696:5;:10;19692:53;;;19723:10;;;;;;;;;;;;;;;;;;;;;19692:53;19755:12;19770:5;19755:20;;19786:14;19811:78;19826:1;19818:4;:9;19811:78;;19844:8;;;;;:::i;:::-;;;;19875:2;19867:10;;;;;:::i;:::-;;;19811:78;;;19899:19;19931:6;19921:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19899:39;;19949:154;19965:1;19956:5;:10;19949:154;;19993:1;19983:11;;;;;:::i;:::-;;;20060:2;20052:5;:10;;;;:::i;:::-;20039:2;:24;;;;:::i;:::-;20026:39;;20009:6;20016;20009:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;20089:2;20080:11;;;;;:::i;:::-;;;19949:154;;;20127:6;20113:21;;;;;19419:723;;;;:::o;38946:157::-;39031:4;39070:25;39055:40;;;:11;:40;;;;39048:47;;38946:157;;;:::o;63089:589::-;63233:45;63260:4;63266:2;63270:7;63233:26;:45::i;:::-;63311:1;63295:18;;:4;:18;;;63291:187;;;63330:40;63362:7;63330:31;:40::i;:::-;63291:187;;;63400:2;63392:10;;:4;:10;;;63388:90;;63419:47;63452:4;63458:7;63419:32;:47::i;:::-;63388:90;63291:187;63506:1;63492:16;;:2;:16;;;63488:183;;;63525:45;63562:7;63525:36;:45::i;:::-;63488:183;;;63598:4;63592:10;;:2;:10;;;63588:83;;63619:40;63647:2;63651:7;63619:27;:40::i;:::-;63588:83;63488:183;63089:589;;;:::o;60270:125::-;;;;:::o;24019:1049::-;24067:7;24081:16;24123:12;:10;:12::i;:::-;24100:20;:18;:20::i;:::-;:35;;;;:::i;:::-;24081:54;;24140:14;24332:8;24210:10;24228:14;24250:16;24274:14;24296:15;24186:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24170:154;;;;;;24157:172;;:183;;;;:::i;:::-;24140:200;;24347:13;24396:1;24373:11;:19;24385:6;24373:19;;;;;;;;;;;;:24;24369:256;;;24500:6;24492:14;;24369:256;;;24600:11;:19;24612:6;24600:19;;;;;;;;;;;;24592:27;;24369:256;24719:1;24690:11;:25;24713:1;24702:8;:12;;;;:::i;:::-;24690:25;;;;;;;;;;;;:30;24686:283;;;24817:1;24806:8;:12;;;;:::i;:::-;24784:11;:19;24796:6;24784:19;;;;;;;;;;;:34;;;;24686:283;;;24938:11;:25;24961:1;24950:8;:12;;;;:::i;:::-;24938:25;;;;;;;;;;;;24916:11;:19;24928:6;24916:19;;;;;;;;;;;:47;;;;24686:283;25015:17;:15;:17::i;:::-;;25054:9;25046:5;:17;;;;:::i;:::-;25039:24;;;;;24019:1049;:::o;54030:110::-;54106:26;54116:2;54120:7;54106:26;;;;;;;;;;;;:9;:26::i;:::-;54030:110;;:::o;58388:799::-;58543:4;58564:15;:2;:13;;;:15::i;:::-;58560:620;;;58616:2;58600:36;;;58637:12;:10;:12::i;:::-;58651:4;58657:7;58666:5;58600:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;58596:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58859:1;58842:6;:13;:18;58838:272;;;58885:60;;;;;;;;;;:::i;:::-;;;;;;;;58838:272;59060:6;59054:13;59045:6;59041:2;59037:15;59030:38;58596:529;58733:41;;;58723:51;;;:6;:51;;;;58716:58;;;;;58560:620;59164:4;59157:11;;58388:799;;;;;;;:::o;59759:126::-;;;;:::o;64401:164::-;64505:10;:17;;;;64478:15;:24;64494:7;64478:24;;;;;;;;;;;:44;;;;64533:10;64549:7;64533:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64401:164;:::o;65192:988::-;65458:22;65508:1;65483:22;65500:4;65483:16;:22::i;:::-;:26;;;;:::i;:::-;65458:51;;65520:18;65541:17;:26;65559:7;65541:26;;;;;;;;;;;;65520:47;;65688:14;65674:10;:28;65670:328;;65719:19;65741:12;:18;65754:4;65741:18;;;;;;;;;;;;;;;:34;65760:14;65741:34;;;;;;;;;;;;65719:56;;65825:11;65792:12;:18;65805:4;65792:18;;;;;;;;;;;;;;;:30;65811:10;65792:30;;;;;;;;;;;:44;;;;65942:10;65909:17;:30;65927:11;65909:30;;;;;;;;;;;:43;;;;65704:294;65670:328;66094:17;:26;66112:7;66094:26;;;;;;;;;;;66087:33;;;66138:12;:18;66151:4;66138:18;;;;;;;;;;;;;;;:34;66157:14;66138:34;;;;;;;;;;;66131:41;;;65273:907;;65192:988;;:::o;66475:1079::-;66728:22;66773:1;66753:10;:17;;;;:21;;;;:::i;:::-;66728:46;;66785:18;66806:15;:24;66822:7;66806:24;;;;;;;;;;;;66785:45;;67157:19;67179:10;67190:14;67179:26;;;;;;;;:::i;:::-;;;;;;;;;;67157:48;;67243:11;67218:10;67229;67218:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;67354:10;67323:15;:28;67339:11;67323:28;;;;;;;;;;;:41;;;;67495:15;:24;67511:7;67495:24;;;;;;;;;;;67488:31;;;67530:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;66546:1008;;;66475:1079;:::o;63979:221::-;64064:14;64081:20;64098:2;64081:16;:20::i;:::-;64064:37;;64139:7;64112:12;:16;64125:2;64112:16;;;;;;;;;;;;;;;:24;64129:6;64112:24;;;;;;;;;;;:34;;;;64186:6;64157:17;:26;64175:7;64157:26;;;;;;;;;;;:35;;;;64053:147;63979:221;;:::o;22530:105::-;22596:7;22765:1;22741:21;:19;:21::i;:::-;:25;22733:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;22617:11:::1;;:13;;;;;;;;;:::i;:::-;;;;;22610:20;;22530:105:::0;:::o;54367:321::-;54497:18;54503:2;54507:7;54497:5;:18::i;:::-;54548:54;54579:1;54583:2;54587:7;54596:5;54548:22;:54::i;:::-;54526:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;54367:321;;;:::o;28840:326::-;28900:4;29157:1;29135:7;:19;;;:23;29128:30;;28840:326;;;:::o;55024:439::-;55118:1;55104:16;;:2;:16;;;;55096:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;55177:16;55185:7;55177;:16::i;:::-;55176:17;55168:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;55239:45;55268:1;55272:2;55276:7;55239:20;:45::i;:::-;55314:1;55297:9;:13;55307:2;55297:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;55345:2;55326:7;:16;55334:7;55326:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;55390:7;55386:2;55365:33;;55382:1;55365:33;;;;;;;;;;;;55411:44;55439:1;55443:2;55447:7;55411:19;:44::i;:::-;55024:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:143::-;2925:5;2956:6;2950:13;2941:22;;2972:33;2999:5;2972:33;:::i;:::-;2868:143;;;;:::o;3017:329::-;3076:6;3125:2;3113:9;3104:7;3100:23;3096:32;3093:119;;;3131:79;;:::i;:::-;3093:119;3251:1;3276:53;3321:7;3312:6;3301:9;3297:22;3276:53;:::i;:::-;3266:63;;3222:117;3017:329;;;;:::o;3352:474::-;3420:6;3428;3477:2;3465:9;3456:7;3452:23;3448:32;3445:119;;;3483:79;;:::i;:::-;3445:119;3603:1;3628:53;3673:7;3664:6;3653:9;3649:22;3628:53;:::i;:::-;3618:63;;3574:117;3730:2;3756:53;3801:7;3792:6;3781:9;3777:22;3756:53;:::i;:::-;3746:63;;3701:118;3352:474;;;;;:::o;3832:619::-;3909:6;3917;3925;3974:2;3962:9;3953:7;3949:23;3945:32;3942:119;;;3980:79;;:::i;:::-;3942:119;4100:1;4125:53;4170:7;4161:6;4150:9;4146:22;4125:53;:::i;:::-;4115:63;;4071:117;4227:2;4253:53;4298:7;4289:6;4278:9;4274:22;4253:53;:::i;:::-;4243:63;;4198:118;4355:2;4381:53;4426:7;4417:6;4406:9;4402:22;4381:53;:::i;:::-;4371:63;;4326:118;3832:619;;;;;:::o;4457:943::-;4552:6;4560;4568;4576;4625:3;4613:9;4604:7;4600:23;4596:33;4593:120;;;4632:79;;:::i;:::-;4593:120;4752:1;4777:53;4822:7;4813:6;4802:9;4798:22;4777:53;:::i;:::-;4767:63;;4723:117;4879:2;4905:53;4950:7;4941:6;4930:9;4926:22;4905:53;:::i;:::-;4895:63;;4850:118;5007:2;5033:53;5078:7;5069:6;5058:9;5054:22;5033:53;:::i;:::-;5023:63;;4978:118;5163:2;5152:9;5148:18;5135:32;5194:18;5186:6;5183:30;5180:117;;;5216:79;;:::i;:::-;5180:117;5321:62;5375:7;5366:6;5355:9;5351:22;5321:62;:::i;:::-;5311:72;;5106:287;4457:943;;;;;;;:::o;5406:468::-;5471:6;5479;5528:2;5516:9;5507:7;5503:23;5499:32;5496:119;;;5534:79;;:::i;:::-;5496:119;5654:1;5679:53;5724:7;5715:6;5704:9;5700:22;5679:53;:::i;:::-;5669:63;;5625:117;5781:2;5807:50;5849:7;5840:6;5829:9;5825:22;5807:50;:::i;:::-;5797:60;;5752:115;5406:468;;;;;:::o;5880:474::-;5948:6;5956;6005:2;5993:9;5984:7;5980:23;5976:32;5973:119;;;6011:79;;:::i;:::-;5973:119;6131:1;6156:53;6201:7;6192:6;6181:9;6177:22;6156:53;:::i;:::-;6146:63;;6102:117;6258:2;6284:53;6329:7;6320:6;6309:9;6305:22;6284:53;:::i;:::-;6274:63;;6229:118;5880:474;;;;;:::o;6360:559::-;6446:6;6454;6503:2;6491:9;6482:7;6478:23;6474:32;6471:119;;;6509:79;;:::i;:::-;6471:119;6657:1;6646:9;6642:17;6629:31;6687:18;6679:6;6676:30;6673:117;;;6709:79;;:::i;:::-;6673:117;6822:80;6894:7;6885:6;6874:9;6870:22;6822:80;:::i;:::-;6804:98;;;;6600:312;6360:559;;;;;:::o;6925:323::-;6981:6;7030:2;7018:9;7009:7;7005:23;7001:32;6998:119;;;7036:79;;:::i;:::-;6998:119;7156:1;7181:50;7223:7;7214:6;7203:9;7199:22;7181:50;:::i;:::-;7171:60;;7127:114;6925:323;;;;:::o;7254:327::-;7312:6;7361:2;7349:9;7340:7;7336:23;7332:32;7329:119;;;7367:79;;:::i;:::-;7329:119;7487:1;7512:52;7556:7;7547:6;7536:9;7532:22;7512:52;:::i;:::-;7502:62;;7458:116;7254:327;;;;:::o;7587:349::-;7656:6;7705:2;7693:9;7684:7;7680:23;7676:32;7673:119;;;7711:79;;:::i;:::-;7673:119;7831:1;7856:63;7911:7;7902:6;7891:9;7887:22;7856:63;:::i;:::-;7846:73;;7802:127;7587:349;;;;:::o;7942:509::-;8011:6;8060:2;8048:9;8039:7;8035:23;8031:32;8028:119;;;8066:79;;:::i;:::-;8028:119;8214:1;8203:9;8199:17;8186:31;8244:18;8236:6;8233:30;8230:117;;;8266:79;;:::i;:::-;8230:117;8371:63;8426:7;8417:6;8406:9;8402:22;8371:63;:::i;:::-;8361:73;;8157:287;7942:509;;;;:::o;8457:329::-;8516:6;8565:2;8553:9;8544:7;8540:23;8536:32;8533:119;;;8571:79;;:::i;:::-;8533:119;8691:1;8716:53;8761:7;8752:6;8741:9;8737:22;8716:53;:::i;:::-;8706:63;;8662:117;8457:329;;;;:::o;8792:351::-;8862:6;8911:2;8899:9;8890:7;8886:23;8882:32;8879:119;;;8917:79;;:::i;:::-;8879:119;9037:1;9062:64;9118:7;9109:6;9098:9;9094:22;9062:64;:::i;:::-;9052:74;;9008:128;8792:351;;;;:::o;9149:179::-;9218:10;9239:46;9281:3;9273:6;9239:46;:::i;:::-;9317:4;9312:3;9308:14;9294:28;;9149:179;;;;:::o;9334:189::-;9455:61;9483:32;9509:5;9483:32;:::i;:::-;9455:61;:::i;:::-;9450:3;9443:74;9334:189;;:::o;9529:118::-;9616:24;9634:5;9616:24;:::i;:::-;9611:3;9604:37;9529:118;;:::o;9653:157::-;9758:45;9778:24;9796:5;9778:24;:::i;:::-;9758:45;:::i;:::-;9753:3;9746:58;9653:157;;:::o;9846:732::-;9965:3;9994:54;10042:5;9994:54;:::i;:::-;10064:86;10143:6;10138:3;10064:86;:::i;:::-;10057:93;;10174:56;10224:5;10174:56;:::i;:::-;10253:7;10284:1;10269:284;10294:6;10291:1;10288:13;10269:284;;;10370:6;10364:13;10397:63;10456:3;10441:13;10397:63;:::i;:::-;10390:70;;10483:60;10536:6;10483:60;:::i;:::-;10473:70;;10329:224;10316:1;10313;10309:9;10304:14;;10269:284;;;10273:14;10569:3;10562:10;;9970:608;;;9846:732;;;;:::o;10584:109::-;10665:21;10680:5;10665:21;:::i;:::-;10660:3;10653:34;10584:109;;:::o;10699:360::-;10785:3;10813:38;10845:5;10813:38;:::i;:::-;10867:70;10930:6;10925:3;10867:70;:::i;:::-;10860:77;;10946:52;10991:6;10986:3;10979:4;10972:5;10968:16;10946:52;:::i;:::-;11023:29;11045:6;11023:29;:::i;:::-;11018:3;11014:39;11007:46;;10789:270;10699:360;;;;:::o;11065:161::-;11167:52;11213:5;11167:52;:::i;:::-;11162:3;11155:65;11065:161;;:::o;11232:364::-;11320:3;11348:39;11381:5;11348:39;:::i;:::-;11403:71;11467:6;11462:3;11403:71;:::i;:::-;11396:78;;11483:52;11528:6;11523:3;11516:4;11509:5;11505:16;11483:52;:::i;:::-;11560:29;11582:6;11560:29;:::i;:::-;11555:3;11551:39;11544:46;;11324:272;11232:364;;;;:::o;11602:377::-;11708:3;11736:39;11769:5;11736:39;:::i;:::-;11791:89;11873:6;11868:3;11791:89;:::i;:::-;11784:96;;11889:52;11934:6;11929:3;11922:4;11915:5;11911:16;11889:52;:::i;:::-;11966:6;11961:3;11957:16;11950:23;;11712:267;11602:377;;;;:::o;12009:845::-;12112:3;12149:5;12143:12;12178:36;12204:9;12178:36;:::i;:::-;12230:89;12312:6;12307:3;12230:89;:::i;:::-;12223:96;;12350:1;12339:9;12335:17;12366:1;12361:137;;;;12512:1;12507:341;;;;12328:520;;12361:137;12445:4;12441:9;12430;12426:25;12421:3;12414:38;12481:6;12476:3;12472:16;12465:23;;12361:137;;12507:341;12574:38;12606:5;12574:38;:::i;:::-;12634:1;12648:154;12662:6;12659:1;12656:13;12648:154;;;12736:7;12730:14;12726:1;12721:3;12717:11;12710:35;12786:1;12777:7;12773:15;12762:26;;12684:4;12681:1;12677:12;12672:17;;12648:154;;;12831:6;12826:3;12822:16;12815:23;;12514:334;;12328:520;;12116:738;;12009:845;;;;:::o;12860:366::-;13002:3;13023:67;13087:2;13082:3;13023:67;:::i;:::-;13016:74;;13099:93;13188:3;13099:93;:::i;:::-;13217:2;13212:3;13208:12;13201:19;;12860:366;;;:::o;13232:::-;13374:3;13395:67;13459:2;13454:3;13395:67;:::i;:::-;13388:74;;13471:93;13560:3;13471:93;:::i;:::-;13589:2;13584:3;13580:12;13573:19;;13232:366;;;:::o;13604:::-;13746:3;13767:67;13831:2;13826:3;13767:67;:::i;:::-;13760:74;;13843:93;13932:3;13843:93;:::i;:::-;13961:2;13956:3;13952:12;13945:19;;13604:366;;;:::o;13976:::-;14118:3;14139:67;14203:2;14198:3;14139:67;:::i;:::-;14132:74;;14215:93;14304:3;14215:93;:::i;:::-;14333:2;14328:3;14324:12;14317:19;;13976:366;;;:::o;14348:::-;14490:3;14511:67;14575:2;14570:3;14511:67;:::i;:::-;14504:74;;14587:93;14676:3;14587:93;:::i;:::-;14705:2;14700:3;14696:12;14689:19;;14348:366;;;:::o;14720:::-;14862:3;14883:67;14947:2;14942:3;14883:67;:::i;:::-;14876:74;;14959:93;15048:3;14959:93;:::i;:::-;15077:2;15072:3;15068:12;15061:19;;14720:366;;;:::o;15092:::-;15234:3;15255:67;15319:2;15314:3;15255:67;:::i;:::-;15248:74;;15331:93;15420:3;15331:93;:::i;:::-;15449:2;15444:3;15440:12;15433:19;;15092:366;;;:::o;15464:::-;15606:3;15627:67;15691:2;15686:3;15627:67;:::i;:::-;15620:74;;15703:93;15792:3;15703:93;:::i;:::-;15821:2;15816:3;15812:12;15805:19;;15464:366;;;:::o;15836:::-;15978:3;15999:67;16063:2;16058:3;15999:67;:::i;:::-;15992:74;;16075:93;16164:3;16075:93;:::i;:::-;16193:2;16188:3;16184:12;16177:19;;15836:366;;;:::o;16208:::-;16350:3;16371:67;16435:2;16430:3;16371:67;:::i;:::-;16364:74;;16447:93;16536:3;16447:93;:::i;:::-;16565:2;16560:3;16556:12;16549:19;;16208:366;;;:::o;16580:::-;16722:3;16743:67;16807:2;16802:3;16743:67;:::i;:::-;16736:74;;16819:93;16908:3;16819:93;:::i;:::-;16937:2;16932:3;16928:12;16921:19;;16580:366;;;:::o;16952:::-;17094:3;17115:67;17179:2;17174:3;17115:67;:::i;:::-;17108:74;;17191:93;17280:3;17191:93;:::i;:::-;17309:2;17304:3;17300:12;17293:19;;16952:366;;;:::o;17324:::-;17466:3;17487:67;17551:2;17546:3;17487:67;:::i;:::-;17480:74;;17563:93;17652:3;17563:93;:::i;:::-;17681:2;17676:3;17672:12;17665:19;;17324:366;;;:::o;17696:::-;17838:3;17859:67;17923:2;17918:3;17859:67;:::i;:::-;17852:74;;17935:93;18024:3;17935:93;:::i;:::-;18053:2;18048:3;18044:12;18037:19;;17696:366;;;:::o;18068:::-;18210:3;18231:67;18295:2;18290:3;18231:67;:::i;:::-;18224:74;;18307:93;18396:3;18307:93;:::i;:::-;18425:2;18420:3;18416:12;18409:19;;18068:366;;;:::o;18440:::-;18582:3;18603:67;18667:2;18662:3;18603:67;:::i;:::-;18596:74;;18679:93;18768:3;18679:93;:::i;:::-;18797:2;18792:3;18788:12;18781:19;;18440:366;;;:::o;18812:::-;18954:3;18975:67;19039:2;19034:3;18975:67;:::i;:::-;18968:74;;19051:93;19140:3;19051:93;:::i;:::-;19169:2;19164:3;19160:12;19153:19;;18812:366;;;:::o;19184:::-;19326:3;19347:67;19411:2;19406:3;19347:67;:::i;:::-;19340:74;;19423:93;19512:3;19423:93;:::i;:::-;19541:2;19536:3;19532:12;19525:19;;19184:366;;;:::o;19556:::-;19698:3;19719:67;19783:2;19778:3;19719:67;:::i;:::-;19712:74;;19795:93;19884:3;19795:93;:::i;:::-;19913:2;19908:3;19904:12;19897:19;;19556:366;;;:::o;19928:::-;20070:3;20091:67;20155:2;20150:3;20091:67;:::i;:::-;20084:74;;20167:93;20256:3;20167:93;:::i;:::-;20285:2;20280:3;20276:12;20269:19;;19928:366;;;:::o;20300:398::-;20459:3;20480:83;20561:1;20556:3;20480:83;:::i;:::-;20473:90;;20572:93;20661:3;20572:93;:::i;:::-;20690:1;20685:3;20681:11;20674:18;;20300:398;;;:::o;20704:366::-;20846:3;20867:67;20931:2;20926:3;20867:67;:::i;:::-;20860:74;;20943:93;21032:3;20943:93;:::i;:::-;21061:2;21056:3;21052:12;21045:19;;20704:366;;;:::o;21076:::-;21218:3;21239:67;21303:2;21298:3;21239:67;:::i;:::-;21232:74;;21315:93;21404:3;21315:93;:::i;:::-;21433:2;21428:3;21424:12;21417:19;;21076:366;;;:::o;21448:::-;21590:3;21611:67;21675:2;21670:3;21611:67;:::i;:::-;21604:74;;21687:93;21776:3;21687:93;:::i;:::-;21805:2;21800:3;21796:12;21789:19;;21448:366;;;:::o;21820:::-;21962:3;21983:67;22047:2;22042:3;21983:67;:::i;:::-;21976:74;;22059:93;22148:3;22059:93;:::i;:::-;22177:2;22172:3;22168:12;22161:19;;21820:366;;;:::o;22192:108::-;22269:24;22287:5;22269:24;:::i;:::-;22264:3;22257:37;22192:108;;:::o;22306:118::-;22393:24;22411:5;22393:24;:::i;:::-;22388:3;22381:37;22306:118;;:::o;22430:157::-;22535:45;22555:24;22573:5;22555:24;:::i;:::-;22535:45;:::i;:::-;22530:3;22523:58;22430:157;;:::o;22593:852::-;22833:3;22848:75;22919:3;22910:6;22848:75;:::i;:::-;22948:2;22943:3;22939:12;22932:19;;22961:91;23048:3;23039:6;22961:91;:::i;:::-;23077:2;23072:3;23068:12;23061:19;;23090:75;23161:3;23152:6;23090:75;:::i;:::-;23190:2;23185:3;23181:12;23174:19;;23203:75;23274:3;23265:6;23203:75;:::i;:::-;23303:2;23298:3;23294:12;23287:19;;23316:75;23387:3;23378:6;23316:75;:::i;:::-;23416:2;23411:3;23407:12;23400:19;;23436:3;23429:10;;22593:852;;;;;;;;:::o;23451:589::-;23676:3;23698:95;23789:3;23780:6;23698:95;:::i;:::-;23691:102;;23810:95;23901:3;23892:6;23810:95;:::i;:::-;23803:102;;23922:92;24010:3;24001:6;23922:92;:::i;:::-;23915:99;;24031:3;24024:10;;23451:589;;;;;;:::o;24046:379::-;24230:3;24252:147;24395:3;24252:147;:::i;:::-;24245:154;;24416:3;24409:10;;24046:379;;;:::o;24431:222::-;24524:4;24562:2;24551:9;24547:18;24539:26;;24575:71;24643:1;24632:9;24628:17;24619:6;24575:71;:::i;:::-;24431:222;;;;:::o;24659:640::-;24854:4;24892:3;24881:9;24877:19;24869:27;;24906:71;24974:1;24963:9;24959:17;24950:6;24906:71;:::i;:::-;24987:72;25055:2;25044:9;25040:18;25031:6;24987:72;:::i;:::-;25069;25137:2;25126:9;25122:18;25113:6;25069:72;:::i;:::-;25188:9;25182:4;25178:20;25173:2;25162:9;25158:18;25151:48;25216:76;25287:4;25278:6;25216:76;:::i;:::-;25208:84;;24659:640;;;;;;;:::o;25305:373::-;25448:4;25486:2;25475:9;25471:18;25463:26;;25535:9;25529:4;25525:20;25521:1;25510:9;25506:17;25499:47;25563:108;25666:4;25657:6;25563:108;:::i;:::-;25555:116;;25305:373;;;;:::o;25684:210::-;25771:4;25809:2;25798:9;25794:18;25786:26;;25822:65;25884:1;25873:9;25869:17;25860:6;25822:65;:::i;:::-;25684:210;;;;:::o;25900:252::-;26008:4;26046:2;26035:9;26031:18;26023:26;;26059:86;26142:1;26131:9;26127:17;26118:6;26059:86;:::i;:::-;25900:252;;;;:::o;26158:313::-;26271:4;26309:2;26298:9;26294:18;26286:26;;26358:9;26352:4;26348:20;26344:1;26333:9;26329:17;26322:47;26386:78;26459:4;26450:6;26386:78;:::i;:::-;26378:86;;26158:313;;;;:::o;26477:419::-;26643:4;26681:2;26670:9;26666:18;26658:26;;26730:9;26724:4;26720:20;26716:1;26705:9;26701:17;26694:47;26758:131;26884:4;26758:131;:::i;:::-;26750:139;;26477:419;;;:::o;26902:::-;27068:4;27106:2;27095:9;27091:18;27083:26;;27155:9;27149:4;27145:20;27141:1;27130:9;27126:17;27119:47;27183:131;27309:4;27183:131;:::i;:::-;27175:139;;26902:419;;;:::o;27327:::-;27493:4;27531:2;27520:9;27516:18;27508:26;;27580:9;27574:4;27570:20;27566:1;27555:9;27551:17;27544:47;27608:131;27734:4;27608:131;:::i;:::-;27600:139;;27327:419;;;:::o;27752:::-;27918:4;27956:2;27945:9;27941:18;27933:26;;28005:9;27999:4;27995:20;27991:1;27980:9;27976:17;27969:47;28033:131;28159:4;28033:131;:::i;:::-;28025:139;;27752:419;;;:::o;28177:::-;28343:4;28381:2;28370:9;28366:18;28358:26;;28430:9;28424:4;28420:20;28416:1;28405:9;28401:17;28394:47;28458:131;28584:4;28458:131;:::i;:::-;28450:139;;28177:419;;;:::o;28602:::-;28768:4;28806:2;28795:9;28791:18;28783:26;;28855:9;28849:4;28845:20;28841:1;28830:9;28826:17;28819:47;28883:131;29009:4;28883:131;:::i;:::-;28875:139;;28602:419;;;:::o;29027:::-;29193:4;29231:2;29220:9;29216:18;29208:26;;29280:9;29274:4;29270:20;29266:1;29255:9;29251:17;29244:47;29308:131;29434:4;29308:131;:::i;:::-;29300:139;;29027:419;;;:::o;29452:::-;29618:4;29656:2;29645:9;29641:18;29633:26;;29705:9;29699:4;29695:20;29691:1;29680:9;29676:17;29669:47;29733:131;29859:4;29733:131;:::i;:::-;29725:139;;29452:419;;;:::o;29877:::-;30043:4;30081:2;30070:9;30066:18;30058:26;;30130:9;30124:4;30120:20;30116:1;30105:9;30101:17;30094:47;30158:131;30284:4;30158:131;:::i;:::-;30150:139;;29877:419;;;:::o;30302:::-;30468:4;30506:2;30495:9;30491:18;30483:26;;30555:9;30549:4;30545:20;30541:1;30530:9;30526:17;30519:47;30583:131;30709:4;30583:131;:::i;:::-;30575:139;;30302:419;;;:::o;30727:::-;30893:4;30931:2;30920:9;30916:18;30908:26;;30980:9;30974:4;30970:20;30966:1;30955:9;30951:17;30944:47;31008:131;31134:4;31008:131;:::i;:::-;31000:139;;30727:419;;;:::o;31152:::-;31318:4;31356:2;31345:9;31341:18;31333:26;;31405:9;31399:4;31395:20;31391:1;31380:9;31376:17;31369:47;31433:131;31559:4;31433:131;:::i;:::-;31425:139;;31152:419;;;:::o;31577:::-;31743:4;31781:2;31770:9;31766:18;31758:26;;31830:9;31824:4;31820:20;31816:1;31805:9;31801:17;31794:47;31858:131;31984:4;31858:131;:::i;:::-;31850:139;;31577:419;;;:::o;32002:::-;32168:4;32206:2;32195:9;32191:18;32183:26;;32255:9;32249:4;32245:20;32241:1;32230:9;32226:17;32219:47;32283:131;32409:4;32283:131;:::i;:::-;32275:139;;32002:419;;;:::o;32427:::-;32593:4;32631:2;32620:9;32616:18;32608:26;;32680:9;32674:4;32670:20;32666:1;32655:9;32651:17;32644:47;32708:131;32834:4;32708:131;:::i;:::-;32700:139;;32427:419;;;:::o;32852:::-;33018:4;33056:2;33045:9;33041:18;33033:26;;33105:9;33099:4;33095:20;33091:1;33080:9;33076:17;33069:47;33133:131;33259:4;33133:131;:::i;:::-;33125:139;;32852:419;;;:::o;33277:::-;33443:4;33481:2;33470:9;33466:18;33458:26;;33530:9;33524:4;33520:20;33516:1;33505:9;33501:17;33494:47;33558:131;33684:4;33558:131;:::i;:::-;33550:139;;33277:419;;;:::o;33702:::-;33868:4;33906:2;33895:9;33891:18;33883:26;;33955:9;33949:4;33945:20;33941:1;33930:9;33926:17;33919:47;33983:131;34109:4;33983:131;:::i;:::-;33975:139;;33702:419;;;:::o;34127:::-;34293:4;34331:2;34320:9;34316:18;34308:26;;34380:9;34374:4;34370:20;34366:1;34355:9;34351:17;34344:47;34408:131;34534:4;34408:131;:::i;:::-;34400:139;;34127:419;;;:::o;34552:::-;34718:4;34756:2;34745:9;34741:18;34733:26;;34805:9;34799:4;34795:20;34791:1;34780:9;34776:17;34769:47;34833:131;34959:4;34833:131;:::i;:::-;34825:139;;34552:419;;;:::o;34977:::-;35143:4;35181:2;35170:9;35166:18;35158:26;;35230:9;35224:4;35220:20;35216:1;35205:9;35201:17;35194:47;35258:131;35384:4;35258:131;:::i;:::-;35250:139;;34977:419;;;:::o;35402:::-;35568:4;35606:2;35595:9;35591:18;35583:26;;35655:9;35649:4;35645:20;35641:1;35630:9;35626:17;35619:47;35683:131;35809:4;35683:131;:::i;:::-;35675:139;;35402:419;;;:::o;35827:::-;35993:4;36031:2;36020:9;36016:18;36008:26;;36080:9;36074:4;36070:20;36066:1;36055:9;36051:17;36044:47;36108:131;36234:4;36108:131;:::i;:::-;36100:139;;35827:419;;;:::o;36252:::-;36418:4;36456:2;36445:9;36441:18;36433:26;;36505:9;36499:4;36495:20;36491:1;36480:9;36476:17;36469:47;36533:131;36659:4;36533:131;:::i;:::-;36525:139;;36252:419;;;:::o;36677:222::-;36770:4;36808:2;36797:9;36793:18;36785:26;;36821:71;36889:1;36878:9;36874:17;36865:6;36821:71;:::i;:::-;36677:222;;;;:::o;36905:129::-;36939:6;36966:20;;:::i;:::-;36956:30;;36995:33;37023:4;37015:6;36995:33;:::i;:::-;36905:129;;;:::o;37040:75::-;37073:6;37106:2;37100:9;37090:19;;37040:75;:::o;37121:307::-;37182:4;37272:18;37264:6;37261:30;37258:56;;;37294:18;;:::i;:::-;37258:56;37332:29;37354:6;37332:29;:::i;:::-;37324:37;;37416:4;37410;37406:15;37398:23;;37121:307;;;:::o;37434:308::-;37496:4;37586:18;37578:6;37575:30;37572:56;;;37608:18;;:::i;:::-;37572:56;37646:29;37668:6;37646:29;:::i;:::-;37638:37;;37730:4;37724;37720:15;37712:23;;37434:308;;;:::o;37748:132::-;37815:4;37838:3;37830:11;;37868:4;37863:3;37859:14;37851:22;;37748:132;;;:::o;37886:141::-;37935:4;37958:3;37950:11;;37981:3;37978:1;37971:14;38015:4;38012:1;38002:18;37994:26;;37886:141;;;:::o;38033:114::-;38100:6;38134:5;38128:12;38118:22;;38033:114;;;:::o;38153:98::-;38204:6;38238:5;38232:12;38222:22;;38153:98;;;:::o;38257:99::-;38309:6;38343:5;38337:12;38327:22;;38257:99;;;:::o;38362:113::-;38432:4;38464;38459:3;38455:14;38447:22;;38362:113;;;:::o;38481:184::-;38580:11;38614:6;38609:3;38602:19;38654:4;38649:3;38645:14;38630:29;;38481:184;;;;:::o;38671:168::-;38754:11;38788:6;38783:3;38776:19;38828:4;38823:3;38819:14;38804:29;;38671:168;;;;:::o;38845:147::-;38946:11;38983:3;38968:18;;38845:147;;;;:::o;38998:169::-;39082:11;39116:6;39111:3;39104:19;39156:4;39151:3;39147:14;39132:29;;38998:169;;;;:::o;39173:148::-;39275:11;39312:3;39297:18;;39173:148;;;;:::o;39327:305::-;39367:3;39386:20;39404:1;39386:20;:::i;:::-;39381:25;;39420:20;39438:1;39420:20;:::i;:::-;39415:25;;39574:1;39506:66;39502:74;39499:1;39496:81;39493:107;;;39580:18;;:::i;:::-;39493:107;39624:1;39621;39617:9;39610:16;;39327:305;;;;:::o;39638:185::-;39678:1;39695:20;39713:1;39695:20;:::i;:::-;39690:25;;39729:20;39747:1;39729:20;:::i;:::-;39724:25;;39768:1;39758:35;;39773:18;;:::i;:::-;39758:35;39815:1;39812;39808:9;39803:14;;39638:185;;;;:::o;39829:348::-;39869:7;39892:20;39910:1;39892:20;:::i;:::-;39887:25;;39926:20;39944:1;39926:20;:::i;:::-;39921:25;;40114:1;40046:66;40042:74;40039:1;40036:81;40031:1;40024:9;40017:17;40013:105;40010:131;;;40121:18;;:::i;:::-;40010:131;40169:1;40166;40162:9;40151:20;;39829:348;;;;:::o;40183:191::-;40223:4;40243:20;40261:1;40243:20;:::i;:::-;40238:25;;40277:20;40295:1;40277:20;:::i;:::-;40272:25;;40316:1;40313;40310:8;40307:34;;;40321:18;;:::i;:::-;40307:34;40366:1;40363;40359:9;40351:17;;40183:191;;;;:::o;40380:96::-;40417:7;40446:24;40464:5;40446:24;:::i;:::-;40435:35;;40380:96;;;:::o;40482:104::-;40527:7;40556:24;40574:5;40556:24;:::i;:::-;40545:35;;40482:104;;;:::o;40592:90::-;40626:7;40669:5;40662:13;40655:21;40644:32;;40592:90;;;:::o;40688:149::-;40724:7;40764:66;40757:5;40753:78;40742:89;;40688:149;;;:::o;40843:126::-;40880:7;40920:42;40913:5;40909:54;40898:65;;40843:126;;;:::o;40975:77::-;41012:7;41041:5;41030:16;;40975:77;;;:::o;41058:141::-;41123:9;41156:37;41187:5;41156:37;:::i;:::-;41143:50;;41058:141;;;:::o;41205:126::-;41255:9;41288:37;41319:5;41288:37;:::i;:::-;41275:50;;41205:126;;;:::o;41337:113::-;41387:9;41420:24;41438:5;41420:24;:::i;:::-;41407:37;;41337:113;;;:::o;41456:154::-;41540:6;41535:3;41530;41517:30;41602:1;41593:6;41588:3;41584:16;41577:27;41456:154;;;:::o;41616:307::-;41684:1;41694:113;41708:6;41705:1;41702:13;41694:113;;;41793:1;41788:3;41784:11;41778:18;41774:1;41769:3;41765:11;41758:39;41730:2;41727:1;41723:10;41718:15;;41694:113;;;41825:6;41822:1;41819:13;41816:101;;;41905:1;41896:6;41891:3;41887:16;41880:27;41816:101;41665:258;41616:307;;;:::o;41929:320::-;41973:6;42010:1;42004:4;42000:12;41990:22;;42057:1;42051:4;42047:12;42078:18;42068:81;;42134:4;42126:6;42122:17;42112:27;;42068:81;42196:2;42188:6;42185:14;42165:18;42162:38;42159:84;;;42215:18;;:::i;:::-;42159:84;41980:269;41929:320;;;:::o;42255:281::-;42338:27;42360:4;42338:27;:::i;:::-;42330:6;42326:40;42468:6;42456:10;42453:22;42432:18;42420:10;42417:34;42414:62;42411:88;;;42479:18;;:::i;:::-;42411:88;42519:10;42515:2;42508:22;42298:238;42255:281;;:::o;42542:233::-;42581:3;42604:24;42622:5;42604:24;:::i;:::-;42595:33;;42650:66;42643:5;42640:77;42637:103;;;42720:18;;:::i;:::-;42637:103;42767:1;42760:5;42756:13;42749:20;;42542:233;;;:::o;42781:100::-;42820:7;42849:26;42869:5;42849:26;:::i;:::-;42838:37;;42781:100;;;:::o;42887:108::-;42934:7;42963:26;42983:5;42963:26;:::i;:::-;42952:37;;42887:108;;;:::o;43001:94::-;43040:7;43069:20;43083:5;43069:20;:::i;:::-;43058:31;;43001:94;;;:::o;43101:79::-;43140:7;43169:5;43158:16;;43101:79;;;:::o;43186:176::-;43218:1;43235:20;43253:1;43235:20;:::i;:::-;43230:25;;43269:20;43287:1;43269:20;:::i;:::-;43264:25;;43308:1;43298:35;;43313:18;;:::i;:::-;43298:35;43354:1;43351;43347:9;43342:14;;43186:176;;;;:::o;43368:180::-;43416:77;43413:1;43406:88;43513:4;43510:1;43503:15;43537:4;43534:1;43527:15;43554:180;43602:77;43599:1;43592:88;43699:4;43696:1;43689:15;43723:4;43720:1;43713:15;43740:180;43788:77;43785:1;43778:88;43885:4;43882:1;43875:15;43909:4;43906:1;43899:15;43926:180;43974:77;43971:1;43964:88;44071:4;44068:1;44061:15;44095:4;44092:1;44085:15;44112:180;44160:77;44157:1;44150:88;44257:4;44254:1;44247:15;44281:4;44278:1;44271:15;44298:180;44346:77;44343:1;44336:88;44443:4;44440:1;44433:15;44467:4;44464:1;44457:15;44484:117;44593:1;44590;44583:12;44607:117;44716:1;44713;44706:12;44730:117;44839:1;44836;44829:12;44853:117;44962:1;44959;44952:12;44976:117;45085:1;45082;45075:12;45099:117;45208:1;45205;45198:12;45222:102;45263:6;45314:2;45310:7;45305:2;45298:5;45294:14;45290:28;45280:38;;45222:102;;;:::o;45330:94::-;45363:8;45411:5;45407:2;45403:14;45382:35;;45330:94;;;:::o;45430:230::-;45570:34;45566:1;45558:6;45554:14;45547:58;45639:13;45634:2;45626:6;45622:15;45615:38;45430:230;:::o;45666:237::-;45806:34;45802:1;45794:6;45790:14;45783:58;45875:20;45870:2;45862:6;45858:15;45851:45;45666:237;:::o;45909:225::-;46049:34;46045:1;46037:6;46033:14;46026:58;46118:8;46113:2;46105:6;46101:15;46094:33;45909:225;:::o;46140:224::-;46280:34;46276:1;46268:6;46264:14;46257:58;46349:7;46344:2;46336:6;46332:15;46325:32;46140:224;:::o;46370:178::-;46510:30;46506:1;46498:6;46494:14;46487:54;46370:178;:::o;46554:223::-;46694:34;46690:1;46682:6;46678:14;46671:58;46763:6;46758:2;46750:6;46746:15;46739:31;46554:223;:::o;46783:175::-;46923:27;46919:1;46911:6;46907:14;46900:51;46783:175;:::o;46964:174::-;47104:26;47100:1;47092:6;47088:14;47081:50;46964:174;:::o;47144:231::-;47284:34;47280:1;47272:6;47268:14;47261:58;47353:14;47348:2;47340:6;47336:15;47329:39;47144:231;:::o;47381:243::-;47521:34;47517:1;47509:6;47505:14;47498:58;47590:26;47585:2;47577:6;47573:15;47566:51;47381:243;:::o;47630:167::-;47770:19;47766:1;47758:6;47754:14;47747:43;47630:167;:::o;47803:229::-;47943:34;47939:1;47931:6;47927:14;47920:58;48012:12;48007:2;47999:6;47995:15;47988:37;47803:229;:::o;48038:228::-;48178:34;48174:1;48166:6;48162:14;48155:58;48247:11;48242:2;48234:6;48230:15;48223:36;48038:228;:::o;48272:182::-;48412:34;48408:1;48400:6;48396:14;48389:58;48272:182;:::o;48460:231::-;48600:34;48596:1;48588:6;48584:14;48577:58;48669:14;48664:2;48656:6;48652:15;48645:39;48460:231;:::o;48697:182::-;48837:34;48833:1;48825:6;48821:14;48814:58;48697:182;:::o;48885:172::-;49025:24;49021:1;49013:6;49009:14;49002:48;48885:172;:::o;49063:234::-;49203:34;49199:1;49191:6;49187:14;49180:58;49272:17;49267:2;49259:6;49255:15;49248:42;49063:234;:::o;49303:163::-;49443:15;49439:1;49431:6;49427:14;49420:39;49303:163;:::o;49472:220::-;49612:34;49608:1;49600:6;49596:14;49589:58;49681:3;49676:2;49668:6;49664:15;49657:28;49472:220;:::o;49698:114::-;;:::o;49818:168::-;49958:20;49954:1;49946:6;49942:14;49935:44;49818:168;:::o;49992:236::-;50132:34;50128:1;50120:6;50116:14;50109:58;50201:19;50196:2;50188:6;50184:15;50177:44;49992:236;:::o;50234:231::-;50374:34;50370:1;50362:6;50358:14;50351:58;50443:14;50438:2;50430:6;50426:15;50419:39;50234:231;:::o;50471:177::-;50611:29;50607:1;50599:6;50595:14;50588:53;50471:177;:::o;50654:122::-;50727:24;50745:5;50727:24;:::i;:::-;50720:5;50717:35;50707:63;;50766:1;50763;50756:12;50707:63;50654:122;:::o;50782:116::-;50852:21;50867:5;50852:21;:::i;:::-;50845:5;50842:32;50832:60;;50888:1;50885;50878:12;50832:60;50782:116;:::o;50904:120::-;50976:23;50993:5;50976:23;:::i;:::-;50969:5;50966:34;50956:62;;51014:1;51011;51004:12;50956:62;50904:120;:::o;51030:122::-;51103:24;51121:5;51103:24;:::i;:::-;51096:5;51093:35;51083:63;;51142:1;51139;51132:12;51083:63;51030:122;:::o
Swarm Source
ipfs://8e1cbed97d4f5ccff2ad057c10d9fafa9df2e02008428990c397f618b61aa846
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.