Overview
CRO Balance
CRO Value
$66.14 (@ $0.11/CRO)More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 592 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Safe Transfer Fr... | 18755144 | 27 hrs ago | IN | 0 CRO | 0.35459023 | ||||
Safe Transfer Fr... | 18752829 | 31 hrs ago | IN | 0 CRO | 0.37975069 | ||||
Safe Transfer Fr... | 18749266 | 37 hrs ago | IN | 0 CRO | 0.35459023 | ||||
Mint | 18741537 | 2 days ago | IN | 49 CRO | 1.12575 | ||||
Safe Transfer Fr... | 18737857 | 2 days ago | IN | 0 CRO | 0.41933724 | ||||
Safe Transfer Fr... | 18731775 | 2 days ago | IN | 0 CRO | 0.41933724 | ||||
Safe Transfer Fr... | 18727555 | 2 days ago | IN | 0 CRO | 0.41933724 | ||||
Safe Transfer Fr... | 18727493 | 2 days ago | IN | 0 CRO | 0.39541734 | ||||
Set Approval For... | 18710696 | 4 days ago | IN | 0 CRO | 0.17680856 | ||||
Safe Transfer Fr... | 18689580 | 5 days ago | IN | 0 CRO | 0.39546802 | ||||
Mint | 18679297 | 6 days ago | IN | 49 CRO | 1.13625 | ||||
Set Approval For... | 18664825 | 7 days ago | IN | 0 CRO | 0.1768611 | ||||
Set Approval For... | 18648455 | 8 days ago | IN | 0 CRO | 0.21701966 | ||||
Safe Transfer Fr... | 18615582 | 10 days ago | IN | 0 CRO | 0.41547487 | ||||
Transfer From | 18602922 | 11 days ago | IN | 0 CRO | 0.37875 | ||||
Transfer From | 18602810 | 11 days ago | IN | 0 CRO | 0.37875 | ||||
Safe Transfer Fr... | 18581818 | 12 days ago | IN | 0 CRO | 0.41933724 | ||||
Safe Transfer Fr... | 18523314 | 16 days ago | IN | 0 CRO | 0.4192918 | ||||
Safe Transfer Fr... | 18512430 | 17 days ago | IN | 0 CRO | 0.4192918 | ||||
Safe Transfer Fr... | 18481292 | 19 days ago | IN | 0 CRO | 0.37243036 | ||||
Safe Transfer Fr... | 18481265 | 19 days ago | IN | 0 CRO | 0.37243036 | ||||
Safe Transfer Fr... | 18481256 | 19 days ago | IN | 0 CRO | 0.37243036 | ||||
Safe Transfer Fr... | 18481249 | 19 days ago | IN | 0 CRO | 0.37243036 | ||||
Mint | 18480197 | 19 days ago | IN | 90 CRO | 2.386125 | ||||
Set Approval For... | 18460311 | 20 days ago | IN | 0 CRO | 0.186784 |
Latest 20 internal transactions
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
17605377 | 76 days ago | 1,045 CRO | ||||
16968774 | 118 days ago | 2,208 CRO | ||||
16636266 | 140 days ago | 1,884 CRO | ||||
16406487 | 155 days ago | 1,343 CRO | ||||
15546455 | 211 days ago | 1,224 CRO | ||||
15458924 | 217 days ago | 1,185 CRO | ||||
15397933 | 221 days ago | 1,651 CRO | ||||
15354539 | 224 days ago | 5,073 CRO | ||||
15206240 | 234 days ago | 3,248 CRO | ||||
15157220 | 237 days ago | 3,443 CRO | ||||
15121979 | 239 days ago | 2,043 CRO | ||||
15091529 | 241 days ago | 2,736 CRO | ||||
15070944 | 243 days ago | 2,787 CRO | ||||
15033510 | 245 days ago | 4,529 CRO | ||||
15005295 | 247 days ago | 3,456 CRO | ||||
14893076 | 254 days ago | 1,532 CRO | ||||
14832829 | 258 days ago | 5,718 CRO | ||||
14713637 | 266 days ago | 2,802 CRO | ||||
14640880 | 271 days ago | 2,163 CRO | ||||
14607751 | 273 days ago | 2,070 CRO |
Loading...
Loading
Contract Name:
BabyRyoshiYoshi
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at cronoscan.com on 2024-06-25 */ /** *Submitted for verification at Etherscan.io on 2023-01-10 */ /** *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 BabyRyoshiYoshi is ERC721Enumerable, Ownable, RandomlyAssigned { using Strings for uint256; using Counters for Counters.Counter; string public baseURI = "ipfs://TODO/"; string public baseExtension = ".json"; string public notRevealedUri; ERC721 public memberships; uint256 public memberPrice = 45 ether; uint256 public whitelistPrice = 45 ether; uint256 public normalPrice = 49 ether; uint256 public maxSupply = 2000; 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; // Pass the token address constructor(address _armySoldier) ERC721("BabyRyoshiYoshi","Baby Ryoshi Yoshi") RandomlyAssigned(maxSupply, numReserved){ memberships = ERC721(_armySoldier); } function isArmySoldier(address _address) private view returns (bool) { return memberships.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 airdropMint(address [] calldata addlist,uint256 [] calldata amount) external onlyOwner { for (uint256 i = 0; i < addlist.length; i++) { uint256 amounttomint = amount[i]; for (uint256 j = 0; j < amounttomint; j++) { _mintRandomId(addlist[i]); } } } 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) ) { 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 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
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_armySoldier","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":"addlist","type":"address[]"},{"internalType":"uint256[]","name":"amount","type":"uint256[]"}],"name":"airdropMint","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":[{"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
60c06040526040518060400160405280600c81526020017f697066733a2f2f544f444f2f0000000000000000000000000000000000000000815250600d90805190602001906200005192919062000343565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600e90805190602001906200009f92919062000343565b50680270801d946c940000601155680270801d946c9400006012556802a802f8630a2400006013556107d06014556000601760006101000a81548160ff0219169083151502179055506001601760016101000a81548160ff0219169083151502179055503480156200011057600080fd5b5060405162005cfc38038062005cfc83398181016040528101906200013691906200040a565b60145460155481816040518060400160405280600f81526020017f4261627952796f736869596f73686900000000000000000000000000000000008152506040518060400160405280601181526020017f426162792052796f73686920596f7368690000000000000000000000000000008152508160009080519060200190620001c292919062000343565b508060019080519060200190620001db92919062000343565b505050620001fe620001f26200027560201b60201c565b6200027d60201b60201c565b80826200020c919062000499565b6080818152505050506001816200022491906200043c565b60a08181525050505080601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050620005c5565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003519062000512565b90600052602060002090601f016020900481019282620003755760008555620003c1565b82601f106200039057805160ff1916838001178555620003c1565b82800160010185558215620003c1579182015b82811115620003c0578251825591602001919060010190620003a3565b5b509050620003d09190620003d4565b5090565b5b80821115620003ef576000816000905550600101620003d5565b5090565b6000815190506200040481620005ab565b92915050565b600060208284031215620004235762000422620005a6565b5b60006200043384828501620003f3565b91505092915050565b6000620004498262000508565b9150620004568362000508565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200048e576200048d62000548565b5b828201905092915050565b6000620004a68262000508565b9150620004b38362000508565b925082821015620004c957620004c862000548565b5b828203905092915050565b6000620004e182620004e8565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060028204905060018216806200052b57607f821691505b6020821081141562000542576200054162000577565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b620005b681620004d4565b8114620005c257600080fd5b50565b60805160a051615711620005eb600039600061329a01526000610fae01526157116000f3fe6080604052600436106102e45760003560e01c8063715018a611610190578063b88d4fde116100dc578063da3ef23f11610095578063f2c4ce1e1161006f578063f2c4ce1e14610b20578063f2fde38b14610b49578063f99031a714610b72578063fc1a1c3614610baf576102e4565b8063da3ef23f14610a8f578063e14ca35314610ab8578063e985e9c514610ae3576102e4565b8063b88d4fde1461097f578063b88fe6a3146109a8578063bcb96f52146109d3578063c6682862146109fc578063c87b56dd14610a27578063d5abeb0114610a64576102e4565b80639f181b5e11610149578063a22cb46511610123578063a22cb465146108d7578063a475b5dd14610900578063a526c5d914610917578063b150a6f614610954576102e4565b80639f181b5e14610867578063a029564414610892578063a0712d68146108bb576102e4565b8063715018a61461077b57806384c4bd4b146107925780638da5cb5b146107bd5780638dd94bba146107e8578063945ec9dd1461081157806395d89b411461083c576102e4565b8063397457911161024f57806355f804b3116102085780636352211e116101e25780636352211e146106ab578063636e746b146106e85780636c0360eb1461071357806370a082311461073e576102e4565b806355f804b31461062e5780635c975abb146106575780635e1045ec14610682576102e4565b8063397457911461052d5780633ccfd60b1461055657806342842e0e14610560578063438b6300146105895780634f6ccce7146105c65780635183022714610603576102e4565b806315f91c18116102a157806315f91c181461040b57806318160ddd1461043657806323b872dd14610461578063279a669e1461048a5780632acc659e146104b35780632f745c59146104f0576102e4565b806301ffc9a7146102e957806302329a291461032657806306fdde031461034f578063081812fc1461037a578063081c8c44146103b7578063095ea7b3146103e2575b600080fd5b3480156102f557600080fd5b50610310600480360381019061030b9190613fb6565b610bda565b60405161031d9190614774565b60405180910390f35b34801561033257600080fd5b5061034d60048036038101906103489190613f89565b610c54565b005b34801561035b57600080fd5b50610364610ced565b60405161037191906147aa565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c9190614059565b610d7f565b6040516103ae91906146eb565b60405180910390f35b3480156103c357600080fd5b506103cc610e04565b6040516103d991906147aa565b60405180910390f35b3480156103ee57600080fd5b5061040960048036038101906104049190613e7b565b610e92565b005b34801561041757600080fd5b50610420610faa565b60405161042d9190614acc565b60405180910390f35b34801561044257600080fd5b5061044b610fd2565b6040516104589190614acc565b60405180910390f35b34801561046d57600080fd5b5061048860048036038101906104839190613d65565b610fdf565b005b34801561049657600080fd5b506104b160048036038101906104ac9190613f08565b61103f565b005b3480156104bf57600080fd5b506104da60048036038101906104d59190613cf8565b611151565b6040516104e79190614acc565b60405180910390f35b3480156104fc57600080fd5b5061051760048036038101906105129190613e7b565b611242565b6040516105249190614acc565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f9190613ebb565b6112e7565b005b61055e611408565b005b34801561056c57600080fd5b5061058760048036038101906105829190613d65565b611504565b005b34801561059557600080fd5b506105b060048036038101906105ab9190613cf8565b611524565b6040516105bd9190614752565b60405180910390f35b3480156105d257600080fd5b506105ed60048036038101906105e89190614059565b6115d2565b6040516105fa9190614acc565b60405180910390f35b34801561060f57600080fd5b50610618611643565b6040516106259190614774565b60405180910390f35b34801561063a57600080fd5b5061065560048036038101906106509190614010565b611656565b005b34801561066357600080fd5b5061066c6116ec565b6040516106799190614774565b60405180910390f35b34801561068e57600080fd5b506106a960048036038101906106a49190613ebb565b6116ff565b005b3480156106b757600080fd5b506106d260048036038101906106cd9190614059565b611820565b6040516106df91906146eb565b60405180910390f35b3480156106f457600080fd5b506106fd6118d2565b60405161070a9190614acc565b60405180910390f35b34801561071f57600080fd5b506107286118d8565b60405161073591906147aa565b60405180910390f35b34801561074a57600080fd5b5061076560048036038101906107609190613cf8565b611966565b6040516107729190614acc565b60405180910390f35b34801561078757600080fd5b50610790611a1e565b005b34801561079e57600080fd5b506107a7611aa6565b6040516107b49190614acc565b60405180910390f35b3480156107c957600080fd5b506107d2611ab2565b6040516107df91906146eb565b60405180910390f35b3480156107f457600080fd5b5061080f600480360381019061080a9190614059565b611adc565b005b34801561081d57600080fd5b50610826611b62565b6040516108339190614acc565b60405180910390f35b34801561084857600080fd5b50610851611b68565b60405161085e91906147aa565b60405180910390f35b34801561087357600080fd5b5061087c611bfa565b6040516108899190614acc565b60405180910390f35b34801561089e57600080fd5b506108b960048036038101906108b49190614059565b611c04565b005b6108d560048036038101906108d09190614059565b611c8a565b005b3480156108e357600080fd5b506108fe60048036038101906108f99190613e3b565b611de8565b005b34801561090c57600080fd5b50610915611dfe565b005b34801561092357600080fd5b5061093e60048036038101906109399190613cf8565b611e97565b60405161094b9190614774565b60405180910390f35b34801561096057600080fd5b50610969611eba565b6040516109769190614acc565b60405180910390f35b34801561098b57600080fd5b506109a660048036038101906109a19190613db8565b611ec0565b005b3480156109b457600080fd5b506109bd611f22565b6040516109ca919061478f565b60405180910390f35b3480156109df57600080fd5b506109fa60048036038101906109f59190614059565b611f48565b005b348015610a0857600080fd5b50610a11611fce565b604051610a1e91906147aa565b60405180910390f35b348015610a3357600080fd5b50610a4e6004803603810190610a499190614059565b61205c565b604051610a5b91906147aa565b60405180910390f35b348015610a7057600080fd5b50610a796121b5565b604051610a869190614acc565b60405180910390f35b348015610a9b57600080fd5b50610ab66004803603810190610ab19190614010565b6121bb565b005b348015610ac457600080fd5b50610acd612251565b604051610ada9190614acc565b60405180910390f35b348015610aef57600080fd5b50610b0a6004803603810190610b059190613d25565b612272565b604051610b179190614774565b60405180910390f35b348015610b2c57600080fd5b50610b476004803603810190610b429190614010565b612306565b005b348015610b5557600080fd5b50610b706004803603810190610b6b9190613cf8565b61239c565b005b348015610b7e57600080fd5b50610b996004803603810190610b949190613cf8565b612494565b604051610ba69190614774565b60405180910390f35b348015610bbb57600080fd5b50610bc46124ea565b604051610bd19190614acc565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c4d5750610c4c826124f0565b5b9050919050565b610c5c6125d2565b73ffffffffffffffffffffffffffffffffffffffff16610c7a611ab2565b73ffffffffffffffffffffffffffffffffffffffff1614610cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc7906149ac565b60405180910390fd5b80601760006101000a81548160ff02191690831515021790555050565b606060008054610cfc90614e1d565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2890614e1d565b8015610d755780601f10610d4a57610100808354040283529160200191610d75565b820191906000526020600020905b815481529060010190602001808311610d5857829003601f168201915b5050505050905090565b6000610d8a826125da565b610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc09061498c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600f8054610e1190614e1d565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3d90614e1d565b8015610e8a5780601f10610e5f57610100808354040283529160200191610e8a565b820191906000526020600020905b815481529060010190602001808311610e6d57829003601f168201915b505050505081565b6000610e9d82611820565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0590614a2c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f2d6125d2565b73ffffffffffffffffffffffffffffffffffffffff161480610f5c5750610f5b81610f566125d2565b612272565b5b610f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f92906148ec565b60405180910390fd5b610fa58383612646565b505050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6000600880549050905090565b610ff0610fea6125d2565b826126ff565b61102f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102690614a6c565b60405180910390fd5b61103a8383836127dd565b505050565b6110476125d2565b73ffffffffffffffffffffffffffffffffffffffff16611065611ab2565b73ffffffffffffffffffffffffffffffffffffffff16146110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b2906149ac565b60405180910390fd5b60005b8484905081101561114a5760008383838181106110de576110dd614ff6565b5b90506020020135905060005b818110156111355761112287878581811061110857611107614ff6565b5b905060200201602081019061111d9190613cf8565b612a44565b808061112d90614e80565b9150506110ea565b5050808061114290614e80565b9150506110be565b5050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b990614a0c565b60405180910390fd5b60115460125411611207576111d682612494565b156111e557601254905061123d565b6111ee82611e97565b156111fd57601154905061123d565b601354905061123d565b61121082611e97565b1561121f57601154905061123d565b61122882612494565b1561123757601254905061123d565b60135490505b919050565b600061124d83611966565b821061128e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611285906147cc565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6112ef6125d2565b73ffffffffffffffffffffffffffffffffffffffff1661130d611ab2565b73ffffffffffffffffffffffffffffffffffffffff1614611363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135a906149ac565b60405180910390fd5b60005b828290508110156114035760006018600085858581811061138a57611389614ff6565b5b905060200201602081019061139f9190613cf8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806113fb90614e80565b915050611366565b505050565b6114106125d2565b73ffffffffffffffffffffffffffffffffffffffff1661142e611ab2565b73ffffffffffffffffffffffffffffffffffffffff1614611484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147b906149ac565b60405180910390fd5b600061148e611ab2565b73ffffffffffffffffffffffffffffffffffffffff16476040516114b1906146d6565b60006040518083038185875af1925050503d80600081146114ee576040519150601f19603f3d011682016040523d82523d6000602084013e6114f3565b606091505b505090508061150157600080fd5b50565b61151f83838360405180602001604052806000815250611ec0565b505050565b6060600061153183611966565b905060008167ffffffffffffffff81111561154f5761154e615025565b5b60405190808252806020026020018201604052801561157d5781602001602082028036833780820191505090505b50905060005b828110156115c7576115958582611242565b8282815181106115a8576115a7614ff6565b5b60200260200101818152505080806115bf90614e80565b915050611583565b508092505050919050565b60006115dc610fd2565b821061161d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161490614a8c565b60405180910390fd5b6008828154811061163157611630614ff6565b5b90600052602060002001549050919050565b601760019054906101000a900460ff1681565b61165e6125d2565b73ffffffffffffffffffffffffffffffffffffffff1661167c611ab2565b73ffffffffffffffffffffffffffffffffffffffff16146116d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c9906149ac565b60405180910390fd5b80600d90805190602001906116e8929190613a4b565b5050565b601760009054906101000a900460ff1681565b6117076125d2565b73ffffffffffffffffffffffffffffffffffffffff16611725611ab2565b73ffffffffffffffffffffffffffffffffffffffff161461177b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611772906149ac565b60405180910390fd5b60005b8282905081101561181b576001601860008585858181106117a2576117a1614ff6565b5b90506020020160208101906117b79190613cf8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061181390614e80565b91505061177e565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c09061494c565b60405180910390fd5b80915050919050565b60115481565b600d80546118e590614e1d565b80601f016020809104026020016040519081016040528092919081815260200182805461191190614e1d565b801561195e5780601f106119335761010080835404028352916020019161195e565b820191906000526020600020905b81548152906001019060200180831161194157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ce9061492c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611a266125d2565b73ffffffffffffffffffffffffffffffffffffffff16611a44611ab2565b73ffffffffffffffffffffffffffffffffffffffff1614611a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a91906149ac565b60405180910390fd5b611aa46000612aaf565b565b60168060000154905081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611ae46125d2565b73ffffffffffffffffffffffffffffffffffffffff16611b02611ab2565b73ffffffffffffffffffffffffffffffffffffffff1614611b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4f906149ac565b60405180910390fd5b8060118190555050565b60135481565b606060018054611b7790614e1d565b80601f0160208091040260200160405190810160405280929190818152602001828054611ba390614e1d565b8015611bf05780601f10611bc557610100808354040283529160200191611bf0565b820191906000526020600020905b815481529060010190602001808311611bd357829003601f168201915b5050505050905090565b6000600b54905090565b611c0c6125d2565b73ffffffffffffffffffffffffffffffffffffffff16611c2a611ab2565b73ffffffffffffffffffffffffffffffffffffffff1614611c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c77906149ac565b60405180910390fd5b8060128190555050565b601760009054906101000a900460ff1615611cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd1906149cc565b60405180910390fd5b60008111611d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1490614aac565b60405180910390fd5b6000611d2833611151565b9050611d32611ab2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611db95760008282611d729190614c91565b905080341015611db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dae90614a4c565b60405180910390fd5b505b6000600190505b828111611de357611dd033612a44565b8080611ddb90614e80565b915050611dc0565b505050565b611dfa611df36125d2565b8383612b75565b5050565b611e066125d2565b73ffffffffffffffffffffffffffffffffffffffff16611e24611ab2565b73ffffffffffffffffffffffffffffffffffffffff1614611e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e71906149ac565b60405180910390fd5b6001601760016101000a81548160ff021916908315150217905550565b6000611ea282612ce2565b15611eb05760019050611eb5565b600090505b919050565b60155481565b611ed1611ecb6125d2565b836126ff565b611f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0790614a6c565b60405180910390fd5b611f1c84848484612d98565b50505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611f506125d2565b73ffffffffffffffffffffffffffffffffffffffff16611f6e611ab2565b73ffffffffffffffffffffffffffffffffffffffff1614611fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbb906149ac565b60405180910390fd5b8060138190555050565b600e8054611fdb90614e1d565b80601f016020809104026020016040519081016040528092919081815260200182805461200790614e1d565b80156120545780601f1061202957610100808354040283529160200191612054565b820191906000526020600020905b81548152906001019060200180831161203757829003601f168201915b505050505081565b6060612067826125da565b6120a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209d906149ec565b60405180910390fd5b60001515601760019054906101000a900460ff161515141561215457600f80546120cf90614e1d565b80601f01602080910402602001604051908101604052809291908181526020018280546120fb90614e1d565b80156121485780601f1061211d57610100808354040283529160200191612148565b820191906000526020600020905b81548152906001019060200180831161212b57829003601f168201915b505050505090506121b0565b600061215e612df4565b9050600081511161217e57604051806020016040528060008152506121ac565b8061218884612e86565b600e60405160200161219c939291906146a5565b6040516020818303038152906040525b9150505b919050565b60145481565b6121c36125d2565b73ffffffffffffffffffffffffffffffffffffffff166121e1611ab2565b73ffffffffffffffffffffffffffffffffffffffff1614612237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222e906149ac565b60405180910390fd5b80600e908051906020019061224d929190613a4b565b5050565b600061225b611bfa565b612263610faa565b61226d9190614ceb565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61230e6125d2565b73ffffffffffffffffffffffffffffffffffffffff1661232c611ab2565b73ffffffffffffffffffffffffffffffffffffffff1614612382576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612379906149ac565b60405180910390fd5b80600f9080519060200190612398929190613a4b565b5050565b6123a46125d2565b73ffffffffffffffffffffffffffffffffffffffff166123c2611ab2565b73ffffffffffffffffffffffffffffffffffffffff1614612418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240f906149ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247f9061480c565b60405180910390fd5b61249181612aaf565b50565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806125bb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806125cb57506125ca82612fe7565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126b983611820565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061270a826125da565b612749576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612740906148cc565b60405180910390fd5b600061275483611820565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061279657506127958185612272565b5b806127d457508373ffffffffffffffffffffffffffffffffffffffff166127bc84610d7f565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166127fd82611820565b73ffffffffffffffffffffffffffffffffffffffff1614612853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284a9061482c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ba9061486c565b60405180910390fd5b6128ce838383613051565b6128d9600082612646565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129299190614ceb565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129809190614c0a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a3f838383613165565b505050565b6000612a4e61316a565b9050600081118015612a6257506014548111155b612aa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a989061490c565b60405180910390fd5b612aab82826132cc565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdb9061488c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612cd59190614774565b60405180910390a3505050565b600080601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401612d4091906146eb565b60206040518083038186803b158015612d5857600080fd5b505afa158015612d6c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d909190614086565b119050919050565b612da38484846127dd565b612daf848484846132ea565b612dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de5906147ec565b60405180910390fd5b50505050565b6060600d8054612e0390614e1d565b80601f0160208091040260200160405190810160405280929190818152602001828054612e2f90614e1d565b8015612e7c5780601f10612e5157610100808354040283529160200191612e7c565b820191906000526020600020905b815481529060010190602001808311612e5f57829003601f168201915b5050505050905090565b60606000821415612ece576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fe2565b600082905060005b60008214612f00578080612ee990614e80565b915050600a82612ef99190614c60565b9150612ed6565b60008167ffffffffffffffff811115612f1c57612f1b615025565b5b6040519080825280601f01601f191660200182016040528015612f4e5781602001600182028036833780820191505090505b5090505b60008514612fdb57600182612f679190614ceb565b9150600a85612f769190614f09565b6030612f829190614c0a565b60f81b818381518110612f9857612f97614ff6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fd49190614c60565b9450612f52565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61305c838383613481565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561309f5761309a81613486565b6130de565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146130dd576130dc83826134cf565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131215761311c8161363c565b613160565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461315f5761315e828261370d565b5b5b505050565b505050565b600080613175611bfa565b61317d610faa565b6131879190614ceb565b905060008133414445426040516020016131a5959493929190614646565b6040516020818303038152906040528051906020012060001c6131c89190614f09565b9050600080600c60008481526020019081526020016000205414156131ef57819050613206565b600c60008381526020019081526020016000205490505b6000600c60006001866132199190614ceb565b81526020019081526020016000205414156132575760018361323b9190614ceb565b600c60008481526020019081526020016000208190555061328f565b600c60006001856132689190614ceb565b815260200190815260200160002054600c6000848152602001908152602001600020819055505b61329761378c565b507f0000000000000000000000000000000000000000000000000000000000000000816132c49190614c0a565b935050505090565b6132e68282604051806020016040528060008152506137f3565b5050565b600061330b8473ffffffffffffffffffffffffffffffffffffffff1661384e565b15613474578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133346125d2565b8786866040518563ffffffff1660e01b81526004016133569493929190614706565b602060405180830381600087803b15801561337057600080fd5b505af19250505080156133a157506040513d601f19601f8201168201806040525081019061339e9190613fe3565b60015b613424573d80600081146133d1576040519150601f19603f3d011682016040523d82523d6000602084013e6133d6565b606091505b5060008151141561341c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613413906147ec565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613479565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016134dc84611966565b6134e69190614ceb565b90506000600760008481526020019081526020016000205490508181146135cb576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506136509190614ceb565b90506000600960008481526020019081526020016000205490506000600883815481106136805761367f614ff6565b5b9060005260206000200154905080600883815481106136a2576136a1614ff6565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806136f1576136f0614fc7565b5b6001900381819060005260206000200160009055905550505050565b600061371883611966565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080613797612251565b116137d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137ce906148ac565b60405180910390fd5b600b60008154809291906137ea90614e80565b91905055905090565b6137fd8383613871565b61380a60008484846132ea565b613849576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613840906147ec565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138d89061496c565b60405180910390fd5b6138ea816125da565b1561392a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139219061484c565b60405180910390fd5b61393660008383613051565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139869190614c0a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613a4760008383613165565b5050565b828054613a5790614e1d565b90600052602060002090601f016020900481019282613a795760008555613ac0565b82601f10613a9257805160ff1916838001178555613ac0565b82800160010185558215613ac0579182015b82811115613abf578251825591602001919060010190613aa4565b5b509050613acd9190613ad1565b5090565b5b80821115613aea576000816000905550600101613ad2565b5090565b6000613b01613afc84614b0c565b614ae7565b905082815260208101848484011115613b1d57613b1c615063565b5b613b28848285614ddb565b509392505050565b6000613b43613b3e84614b3d565b614ae7565b905082815260208101848484011115613b5f57613b5e615063565b5b613b6a848285614ddb565b509392505050565b600081359050613b818161567f565b92915050565b60008083601f840112613b9d57613b9c615059565b5b8235905067ffffffffffffffff811115613bba57613bb9615054565b5b602083019150836020820283011115613bd657613bd561505e565b5b9250929050565b60008083601f840112613bf357613bf2615059565b5b8235905067ffffffffffffffff811115613c1057613c0f615054565b5b602083019150836020820283011115613c2c57613c2b61505e565b5b9250929050565b600081359050613c4281615696565b92915050565b600081359050613c57816156ad565b92915050565b600081519050613c6c816156ad565b92915050565b600082601f830112613c8757613c86615059565b5b8135613c97848260208601613aee565b91505092915050565b600082601f830112613cb557613cb4615059565b5b8135613cc5848260208601613b30565b91505092915050565b600081359050613cdd816156c4565b92915050565b600081519050613cf2816156c4565b92915050565b600060208284031215613d0e57613d0d61506d565b5b6000613d1c84828501613b72565b91505092915050565b60008060408385031215613d3c57613d3b61506d565b5b6000613d4a85828601613b72565b9250506020613d5b85828601613b72565b9150509250929050565b600080600060608486031215613d7e57613d7d61506d565b5b6000613d8c86828701613b72565b9350506020613d9d86828701613b72565b9250506040613dae86828701613cce565b9150509250925092565b60008060008060808587031215613dd257613dd161506d565b5b6000613de087828801613b72565b9450506020613df187828801613b72565b9350506040613e0287828801613cce565b925050606085013567ffffffffffffffff811115613e2357613e22615068565b5b613e2f87828801613c72565b91505092959194509250565b60008060408385031215613e5257613e5161506d565b5b6000613e6085828601613b72565b9250506020613e7185828601613c33565b9150509250929050565b60008060408385031215613e9257613e9161506d565b5b6000613ea085828601613b72565b9250506020613eb185828601613cce565b9150509250929050565b60008060208385031215613ed257613ed161506d565b5b600083013567ffffffffffffffff811115613ef057613eef615068565b5b613efc85828601613b87565b92509250509250929050565b60008060008060408587031215613f2257613f2161506d565b5b600085013567ffffffffffffffff811115613f4057613f3f615068565b5b613f4c87828801613b87565b9450945050602085013567ffffffffffffffff811115613f6f57613f6e615068565b5b613f7b87828801613bdd565b925092505092959194509250565b600060208284031215613f9f57613f9e61506d565b5b6000613fad84828501613c33565b91505092915050565b600060208284031215613fcc57613fcb61506d565b5b6000613fda84828501613c48565b91505092915050565b600060208284031215613ff957613ff861506d565b5b600061400784828501613c5d565b91505092915050565b6000602082840312156140265761402561506d565b5b600082013567ffffffffffffffff81111561404457614043615068565b5b61405084828501613ca0565b91505092915050565b60006020828403121561406f5761406e61506d565b5b600061407d84828501613cce565b91505092915050565b60006020828403121561409c5761409b61506d565b5b60006140aa84828501613ce3565b91505092915050565b60006140bf8383614611565b60208301905092915050565b6140dc6140d782614d31565b614edb565b82525050565b6140eb81614d1f565b82525050565b6141026140fd82614d1f565b614ec9565b82525050565b600061411382614b93565b61411d8185614bc1565b935061412883614b6e565b8060005b8381101561415957815161414088826140b3565b975061414b83614bb4565b92505060018101905061412c565b5085935050505092915050565b61416f81614d43565b82525050565b600061418082614b9e565b61418a8185614bd2565b935061419a818560208601614dea565b6141a381615072565b840191505092915050565b6141b781614da5565b82525050565b60006141c882614ba9565b6141d28185614bee565b93506141e2818560208601614dea565b6141eb81615072565b840191505092915050565b600061420182614ba9565b61420b8185614bff565b935061421b818560208601614dea565b80840191505092915050565b6000815461423481614e1d565b61423e8186614bff565b94506001821660008114614259576001811461426a5761429d565b60ff1983168652818601935061429d565b61427385614b7e565b60005b8381101561429557815481890152600182019150602081019050614276565b838801955050505b50505092915050565b60006142b3602b83614bee565b91506142be82615090565b604082019050919050565b60006142d6603283614bee565b91506142e1826150df565b604082019050919050565b60006142f9602683614bee565b91506143048261512e565b604082019050919050565b600061431c602583614bee565b91506143278261517d565b604082019050919050565b600061433f601c83614bee565b915061434a826151cc565b602082019050919050565b6000614362602483614bee565b915061436d826151f5565b604082019050919050565b6000614385601983614bee565b915061439082615244565b602082019050919050565b60006143a8601883614bee565b91506143b38261526d565b602082019050919050565b60006143cb602c83614bee565b91506143d682615296565b604082019050919050565b60006143ee603883614bee565b91506143f9826152e5565b604082019050919050565b6000614411601183614bee565b915061441c82615334565b602082019050919050565b6000614434602a83614bee565b915061443f8261535d565b604082019050919050565b6000614457602983614bee565b9150614462826153ac565b604082019050919050565b600061447a602083614bee565b9150614485826153fb565b602082019050919050565b600061449d602c83614bee565b91506144a882615424565b604082019050919050565b60006144c0602083614bee565b91506144cb82615473565b602082019050919050565b60006144e3601683614bee565b91506144ee8261549c565b602082019050919050565b6000614506602f83614bee565b9150614511826154c5565b604082019050919050565b6000614529600d83614bee565b915061453482615514565b602082019050919050565b600061454c602183614bee565b91506145578261553d565b604082019050919050565b600061456f600083614be3565b915061457a8261558c565b600082019050919050565b6000614592601283614bee565b915061459d8261558f565b602082019050919050565b60006145b5603183614bee565b91506145c0826155b8565b604082019050919050565b60006145d8602c83614bee565b91506145e382615607565b604082019050919050565b60006145fb601b83614bee565b915061460682615656565b602082019050919050565b61461a81614d9b565b82525050565b61462981614d9b565b82525050565b61464061463b82614d9b565b614eff565b82525050565b600061465282886140f1565b60148201915061466282876140cb565b601482019150614672828661462f565b602082019150614682828561462f565b602082019150614692828461462f565b6020820191508190509695505050505050565b60006146b182866141f6565b91506146bd82856141f6565b91506146c98284614227565b9150819050949350505050565b60006146e182614562565b9150819050919050565b600060208201905061470060008301846140e2565b92915050565b600060808201905061471b60008301876140e2565b61472860208301866140e2565b6147356040830185614620565b81810360608301526147478184614175565b905095945050505050565b6000602082019050818103600083015261476c8184614108565b905092915050565b60006020820190506147896000830184614166565b92915050565b60006020820190506147a460008301846141ae565b92915050565b600060208201905081810360008301526147c481846141bd565b905092915050565b600060208201905081810360008301526147e5816142a6565b9050919050565b60006020820190508181036000830152614805816142c9565b9050919050565b60006020820190508181036000830152614825816142ec565b9050919050565b600060208201905081810360008301526148458161430f565b9050919050565b6000602082019050818103600083015261486581614332565b9050919050565b6000602082019050818103600083015261488581614355565b9050919050565b600060208201905081810360008301526148a581614378565b9050919050565b600060208201905081810360008301526148c58161439b565b9050919050565b600060208201905081810360008301526148e5816143be565b9050919050565b60006020820190508181036000830152614905816143e1565b9050919050565b6000602082019050818103600083015261492581614404565b9050919050565b6000602082019050818103600083015261494581614427565b9050919050565b600060208201905081810360008301526149658161444a565b9050919050565b600060208201905081810360008301526149858161446d565b9050919050565b600060208201905081810360008301526149a581614490565b9050919050565b600060208201905081810360008301526149c5816144b3565b9050919050565b600060208201905081810360008301526149e5816144d6565b9050919050565b60006020820190508181036000830152614a05816144f9565b9050919050565b60006020820190508181036000830152614a258161451c565b9050919050565b60006020820190508181036000830152614a458161453f565b9050919050565b60006020820190508181036000830152614a6581614585565b9050919050565b60006020820190508181036000830152614a85816145a8565b9050919050565b60006020820190508181036000830152614aa5816145cb565b9050919050565b60006020820190508181036000830152614ac5816145ee565b9050919050565b6000602082019050614ae16000830184614620565b92915050565b6000614af1614b02565b9050614afd8282614e4f565b919050565b6000604051905090565b600067ffffffffffffffff821115614b2757614b26615025565b5b614b3082615072565b9050602081019050919050565b600067ffffffffffffffff821115614b5857614b57615025565b5b614b6182615072565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614c1582614d9b565b9150614c2083614d9b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c5557614c54614f3a565b5b828201905092915050565b6000614c6b82614d9b565b9150614c7683614d9b565b925082614c8657614c85614f69565b5b828204905092915050565b6000614c9c82614d9b565b9150614ca783614d9b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ce057614cdf614f3a565b5b828202905092915050565b6000614cf682614d9b565b9150614d0183614d9b565b925082821015614d1457614d13614f3a565b5b828203905092915050565b6000614d2a82614d7b565b9050919050565b6000614d3c82614d7b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000614db082614db7565b9050919050565b6000614dc282614dc9565b9050919050565b6000614dd482614d7b565b9050919050565b82818337600083830152505050565b60005b83811015614e08578082015181840152602081019050614ded565b83811115614e17576000848401525b50505050565b60006002820490506001821680614e3557607f821691505b60208210811415614e4957614e48614f98565b5b50919050565b614e5882615072565b810181811067ffffffffffffffff82111715614e7757614e76615025565b5b80604052505050565b6000614e8b82614d9b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614ebe57614ebd614f3a565b5b600182019050919050565b6000614ed482614eed565b9050919050565b6000614ee682614eed565b9050919050565b6000614ef882615083565b9050919050565b6000819050919050565b6000614f1482614d9b565b9150614f1f83614d9b565b925082614f2f57614f2e614f69565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e6f206d6f726520746f6b656e7320617661696c61626c650000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4d696e74206e6f7420706f737369626c65000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f6e6f742061646472657373203000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b61568881614d1f565b811461569357600080fd5b50565b61569f81614d43565b81146156aa57600080fd5b50565b6156b681614d4f565b81146156c157600080fd5b50565b6156cd81614d9b565b81146156d857600080fd5b5056fea2646970667358221220d5eac459d58793115c17c9eebf9de7ae1e49ef2839e6d978ded933bcfa84d57d64736f6c634300080700330000000000000000000000003cb2e346c6cca184b59c4c0d69e60c95dd3c138f
Deployed Bytecode
0x6080604052600436106102e45760003560e01c8063715018a611610190578063b88d4fde116100dc578063da3ef23f11610095578063f2c4ce1e1161006f578063f2c4ce1e14610b20578063f2fde38b14610b49578063f99031a714610b72578063fc1a1c3614610baf576102e4565b8063da3ef23f14610a8f578063e14ca35314610ab8578063e985e9c514610ae3576102e4565b8063b88d4fde1461097f578063b88fe6a3146109a8578063bcb96f52146109d3578063c6682862146109fc578063c87b56dd14610a27578063d5abeb0114610a64576102e4565b80639f181b5e11610149578063a22cb46511610123578063a22cb465146108d7578063a475b5dd14610900578063a526c5d914610917578063b150a6f614610954576102e4565b80639f181b5e14610867578063a029564414610892578063a0712d68146108bb576102e4565b8063715018a61461077b57806384c4bd4b146107925780638da5cb5b146107bd5780638dd94bba146107e8578063945ec9dd1461081157806395d89b411461083c576102e4565b8063397457911161024f57806355f804b3116102085780636352211e116101e25780636352211e146106ab578063636e746b146106e85780636c0360eb1461071357806370a082311461073e576102e4565b806355f804b31461062e5780635c975abb146106575780635e1045ec14610682576102e4565b8063397457911461052d5780633ccfd60b1461055657806342842e0e14610560578063438b6300146105895780634f6ccce7146105c65780635183022714610603576102e4565b806315f91c18116102a157806315f91c181461040b57806318160ddd1461043657806323b872dd14610461578063279a669e1461048a5780632acc659e146104b35780632f745c59146104f0576102e4565b806301ffc9a7146102e957806302329a291461032657806306fdde031461034f578063081812fc1461037a578063081c8c44146103b7578063095ea7b3146103e2575b600080fd5b3480156102f557600080fd5b50610310600480360381019061030b9190613fb6565b610bda565b60405161031d9190614774565b60405180910390f35b34801561033257600080fd5b5061034d60048036038101906103489190613f89565b610c54565b005b34801561035b57600080fd5b50610364610ced565b60405161037191906147aa565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c9190614059565b610d7f565b6040516103ae91906146eb565b60405180910390f35b3480156103c357600080fd5b506103cc610e04565b6040516103d991906147aa565b60405180910390f35b3480156103ee57600080fd5b5061040960048036038101906104049190613e7b565b610e92565b005b34801561041757600080fd5b50610420610faa565b60405161042d9190614acc565b60405180910390f35b34801561044257600080fd5b5061044b610fd2565b6040516104589190614acc565b60405180910390f35b34801561046d57600080fd5b5061048860048036038101906104839190613d65565b610fdf565b005b34801561049657600080fd5b506104b160048036038101906104ac9190613f08565b61103f565b005b3480156104bf57600080fd5b506104da60048036038101906104d59190613cf8565b611151565b6040516104e79190614acc565b60405180910390f35b3480156104fc57600080fd5b5061051760048036038101906105129190613e7b565b611242565b6040516105249190614acc565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f9190613ebb565b6112e7565b005b61055e611408565b005b34801561056c57600080fd5b5061058760048036038101906105829190613d65565b611504565b005b34801561059557600080fd5b506105b060048036038101906105ab9190613cf8565b611524565b6040516105bd9190614752565b60405180910390f35b3480156105d257600080fd5b506105ed60048036038101906105e89190614059565b6115d2565b6040516105fa9190614acc565b60405180910390f35b34801561060f57600080fd5b50610618611643565b6040516106259190614774565b60405180910390f35b34801561063a57600080fd5b5061065560048036038101906106509190614010565b611656565b005b34801561066357600080fd5b5061066c6116ec565b6040516106799190614774565b60405180910390f35b34801561068e57600080fd5b506106a960048036038101906106a49190613ebb565b6116ff565b005b3480156106b757600080fd5b506106d260048036038101906106cd9190614059565b611820565b6040516106df91906146eb565b60405180910390f35b3480156106f457600080fd5b506106fd6118d2565b60405161070a9190614acc565b60405180910390f35b34801561071f57600080fd5b506107286118d8565b60405161073591906147aa565b60405180910390f35b34801561074a57600080fd5b5061076560048036038101906107609190613cf8565b611966565b6040516107729190614acc565b60405180910390f35b34801561078757600080fd5b50610790611a1e565b005b34801561079e57600080fd5b506107a7611aa6565b6040516107b49190614acc565b60405180910390f35b3480156107c957600080fd5b506107d2611ab2565b6040516107df91906146eb565b60405180910390f35b3480156107f457600080fd5b5061080f600480360381019061080a9190614059565b611adc565b005b34801561081d57600080fd5b50610826611b62565b6040516108339190614acc565b60405180910390f35b34801561084857600080fd5b50610851611b68565b60405161085e91906147aa565b60405180910390f35b34801561087357600080fd5b5061087c611bfa565b6040516108899190614acc565b60405180910390f35b34801561089e57600080fd5b506108b960048036038101906108b49190614059565b611c04565b005b6108d560048036038101906108d09190614059565b611c8a565b005b3480156108e357600080fd5b506108fe60048036038101906108f99190613e3b565b611de8565b005b34801561090c57600080fd5b50610915611dfe565b005b34801561092357600080fd5b5061093e60048036038101906109399190613cf8565b611e97565b60405161094b9190614774565b60405180910390f35b34801561096057600080fd5b50610969611eba565b6040516109769190614acc565b60405180910390f35b34801561098b57600080fd5b506109a660048036038101906109a19190613db8565b611ec0565b005b3480156109b457600080fd5b506109bd611f22565b6040516109ca919061478f565b60405180910390f35b3480156109df57600080fd5b506109fa60048036038101906109f59190614059565b611f48565b005b348015610a0857600080fd5b50610a11611fce565b604051610a1e91906147aa565b60405180910390f35b348015610a3357600080fd5b50610a4e6004803603810190610a499190614059565b61205c565b604051610a5b91906147aa565b60405180910390f35b348015610a7057600080fd5b50610a796121b5565b604051610a869190614acc565b60405180910390f35b348015610a9b57600080fd5b50610ab66004803603810190610ab19190614010565b6121bb565b005b348015610ac457600080fd5b50610acd612251565b604051610ada9190614acc565b60405180910390f35b348015610aef57600080fd5b50610b0a6004803603810190610b059190613d25565b612272565b604051610b179190614774565b60405180910390f35b348015610b2c57600080fd5b50610b476004803603810190610b429190614010565b612306565b005b348015610b5557600080fd5b50610b706004803603810190610b6b9190613cf8565b61239c565b005b348015610b7e57600080fd5b50610b996004803603810190610b949190613cf8565b612494565b604051610ba69190614774565b60405180910390f35b348015610bbb57600080fd5b50610bc46124ea565b604051610bd19190614acc565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c4d5750610c4c826124f0565b5b9050919050565b610c5c6125d2565b73ffffffffffffffffffffffffffffffffffffffff16610c7a611ab2565b73ffffffffffffffffffffffffffffffffffffffff1614610cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc7906149ac565b60405180910390fd5b80601760006101000a81548160ff02191690831515021790555050565b606060008054610cfc90614e1d565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2890614e1d565b8015610d755780601f10610d4a57610100808354040283529160200191610d75565b820191906000526020600020905b815481529060010190602001808311610d5857829003601f168201915b5050505050905090565b6000610d8a826125da565b610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc09061498c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600f8054610e1190614e1d565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3d90614e1d565b8015610e8a5780601f10610e5f57610100808354040283529160200191610e8a565b820191906000526020600020905b815481529060010190602001808311610e6d57829003601f168201915b505050505081565b6000610e9d82611820565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0590614a2c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f2d6125d2565b73ffffffffffffffffffffffffffffffffffffffff161480610f5c5750610f5b81610f566125d2565b612272565b5b610f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f92906148ec565b60405180910390fd5b610fa58383612646565b505050565b60007f00000000000000000000000000000000000000000000000000000000000007d0905090565b6000600880549050905090565b610ff0610fea6125d2565b826126ff565b61102f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102690614a6c565b60405180910390fd5b61103a8383836127dd565b505050565b6110476125d2565b73ffffffffffffffffffffffffffffffffffffffff16611065611ab2565b73ffffffffffffffffffffffffffffffffffffffff16146110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b2906149ac565b60405180910390fd5b60005b8484905081101561114a5760008383838181106110de576110dd614ff6565b5b90506020020135905060005b818110156111355761112287878581811061110857611107614ff6565b5b905060200201602081019061111d9190613cf8565b612a44565b808061112d90614e80565b9150506110ea565b5050808061114290614e80565b9150506110be565b5050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b990614a0c565b60405180910390fd5b60115460125411611207576111d682612494565b156111e557601254905061123d565b6111ee82611e97565b156111fd57601154905061123d565b601354905061123d565b61121082611e97565b1561121f57601154905061123d565b61122882612494565b1561123757601254905061123d565b60135490505b919050565b600061124d83611966565b821061128e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611285906147cc565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6112ef6125d2565b73ffffffffffffffffffffffffffffffffffffffff1661130d611ab2565b73ffffffffffffffffffffffffffffffffffffffff1614611363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135a906149ac565b60405180910390fd5b60005b828290508110156114035760006018600085858581811061138a57611389614ff6565b5b905060200201602081019061139f9190613cf8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806113fb90614e80565b915050611366565b505050565b6114106125d2565b73ffffffffffffffffffffffffffffffffffffffff1661142e611ab2565b73ffffffffffffffffffffffffffffffffffffffff1614611484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147b906149ac565b60405180910390fd5b600061148e611ab2565b73ffffffffffffffffffffffffffffffffffffffff16476040516114b1906146d6565b60006040518083038185875af1925050503d80600081146114ee576040519150601f19603f3d011682016040523d82523d6000602084013e6114f3565b606091505b505090508061150157600080fd5b50565b61151f83838360405180602001604052806000815250611ec0565b505050565b6060600061153183611966565b905060008167ffffffffffffffff81111561154f5761154e615025565b5b60405190808252806020026020018201604052801561157d5781602001602082028036833780820191505090505b50905060005b828110156115c7576115958582611242565b8282815181106115a8576115a7614ff6565b5b60200260200101818152505080806115bf90614e80565b915050611583565b508092505050919050565b60006115dc610fd2565b821061161d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161490614a8c565b60405180910390fd5b6008828154811061163157611630614ff6565b5b90600052602060002001549050919050565b601760019054906101000a900460ff1681565b61165e6125d2565b73ffffffffffffffffffffffffffffffffffffffff1661167c611ab2565b73ffffffffffffffffffffffffffffffffffffffff16146116d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c9906149ac565b60405180910390fd5b80600d90805190602001906116e8929190613a4b565b5050565b601760009054906101000a900460ff1681565b6117076125d2565b73ffffffffffffffffffffffffffffffffffffffff16611725611ab2565b73ffffffffffffffffffffffffffffffffffffffff161461177b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611772906149ac565b60405180910390fd5b60005b8282905081101561181b576001601860008585858181106117a2576117a1614ff6565b5b90506020020160208101906117b79190613cf8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061181390614e80565b91505061177e565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c09061494c565b60405180910390fd5b80915050919050565b60115481565b600d80546118e590614e1d565b80601f016020809104026020016040519081016040528092919081815260200182805461191190614e1d565b801561195e5780601f106119335761010080835404028352916020019161195e565b820191906000526020600020905b81548152906001019060200180831161194157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ce9061492c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611a266125d2565b73ffffffffffffffffffffffffffffffffffffffff16611a44611ab2565b73ffffffffffffffffffffffffffffffffffffffff1614611a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a91906149ac565b60405180910390fd5b611aa46000612aaf565b565b60168060000154905081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611ae46125d2565b73ffffffffffffffffffffffffffffffffffffffff16611b02611ab2565b73ffffffffffffffffffffffffffffffffffffffff1614611b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4f906149ac565b60405180910390fd5b8060118190555050565b60135481565b606060018054611b7790614e1d565b80601f0160208091040260200160405190810160405280929190818152602001828054611ba390614e1d565b8015611bf05780601f10611bc557610100808354040283529160200191611bf0565b820191906000526020600020905b815481529060010190602001808311611bd357829003601f168201915b5050505050905090565b6000600b54905090565b611c0c6125d2565b73ffffffffffffffffffffffffffffffffffffffff16611c2a611ab2565b73ffffffffffffffffffffffffffffffffffffffff1614611c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c77906149ac565b60405180910390fd5b8060128190555050565b601760009054906101000a900460ff1615611cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd1906149cc565b60405180910390fd5b60008111611d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1490614aac565b60405180910390fd5b6000611d2833611151565b9050611d32611ab2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611db95760008282611d729190614c91565b905080341015611db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dae90614a4c565b60405180910390fd5b505b6000600190505b828111611de357611dd033612a44565b8080611ddb90614e80565b915050611dc0565b505050565b611dfa611df36125d2565b8383612b75565b5050565b611e066125d2565b73ffffffffffffffffffffffffffffffffffffffff16611e24611ab2565b73ffffffffffffffffffffffffffffffffffffffff1614611e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e71906149ac565b60405180910390fd5b6001601760016101000a81548160ff021916908315150217905550565b6000611ea282612ce2565b15611eb05760019050611eb5565b600090505b919050565b60155481565b611ed1611ecb6125d2565b836126ff565b611f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0790614a6c565b60405180910390fd5b611f1c84848484612d98565b50505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611f506125d2565b73ffffffffffffffffffffffffffffffffffffffff16611f6e611ab2565b73ffffffffffffffffffffffffffffffffffffffff1614611fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbb906149ac565b60405180910390fd5b8060138190555050565b600e8054611fdb90614e1d565b80601f016020809104026020016040519081016040528092919081815260200182805461200790614e1d565b80156120545780601f1061202957610100808354040283529160200191612054565b820191906000526020600020905b81548152906001019060200180831161203757829003601f168201915b505050505081565b6060612067826125da565b6120a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209d906149ec565b60405180910390fd5b60001515601760019054906101000a900460ff161515141561215457600f80546120cf90614e1d565b80601f01602080910402602001604051908101604052809291908181526020018280546120fb90614e1d565b80156121485780601f1061211d57610100808354040283529160200191612148565b820191906000526020600020905b81548152906001019060200180831161212b57829003601f168201915b505050505090506121b0565b600061215e612df4565b9050600081511161217e57604051806020016040528060008152506121ac565b8061218884612e86565b600e60405160200161219c939291906146a5565b6040516020818303038152906040525b9150505b919050565b60145481565b6121c36125d2565b73ffffffffffffffffffffffffffffffffffffffff166121e1611ab2565b73ffffffffffffffffffffffffffffffffffffffff1614612237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222e906149ac565b60405180910390fd5b80600e908051906020019061224d929190613a4b565b5050565b600061225b611bfa565b612263610faa565b61226d9190614ceb565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61230e6125d2565b73ffffffffffffffffffffffffffffffffffffffff1661232c611ab2565b73ffffffffffffffffffffffffffffffffffffffff1614612382576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612379906149ac565b60405180910390fd5b80600f9080519060200190612398929190613a4b565b5050565b6123a46125d2565b73ffffffffffffffffffffffffffffffffffffffff166123c2611ab2565b73ffffffffffffffffffffffffffffffffffffffff1614612418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240f906149ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247f9061480c565b60405180910390fd5b61249181612aaf565b50565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806125bb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806125cb57506125ca82612fe7565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126b983611820565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061270a826125da565b612749576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612740906148cc565b60405180910390fd5b600061275483611820565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061279657506127958185612272565b5b806127d457508373ffffffffffffffffffffffffffffffffffffffff166127bc84610d7f565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166127fd82611820565b73ffffffffffffffffffffffffffffffffffffffff1614612853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284a9061482c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ba9061486c565b60405180910390fd5b6128ce838383613051565b6128d9600082612646565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129299190614ceb565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129809190614c0a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a3f838383613165565b505050565b6000612a4e61316a565b9050600081118015612a6257506014548111155b612aa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a989061490c565b60405180910390fd5b612aab82826132cc565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdb9061488c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612cd59190614774565b60405180910390a3505050565b600080601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401612d4091906146eb565b60206040518083038186803b158015612d5857600080fd5b505afa158015612d6c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d909190614086565b119050919050565b612da38484846127dd565b612daf848484846132ea565b612dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de5906147ec565b60405180910390fd5b50505050565b6060600d8054612e0390614e1d565b80601f0160208091040260200160405190810160405280929190818152602001828054612e2f90614e1d565b8015612e7c5780601f10612e5157610100808354040283529160200191612e7c565b820191906000526020600020905b815481529060010190602001808311612e5f57829003601f168201915b5050505050905090565b60606000821415612ece576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fe2565b600082905060005b60008214612f00578080612ee990614e80565b915050600a82612ef99190614c60565b9150612ed6565b60008167ffffffffffffffff811115612f1c57612f1b615025565b5b6040519080825280601f01601f191660200182016040528015612f4e5781602001600182028036833780820191505090505b5090505b60008514612fdb57600182612f679190614ceb565b9150600a85612f769190614f09565b6030612f829190614c0a565b60f81b818381518110612f9857612f97614ff6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fd49190614c60565b9450612f52565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61305c838383613481565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561309f5761309a81613486565b6130de565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146130dd576130dc83826134cf565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131215761311c8161363c565b613160565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461315f5761315e828261370d565b5b5b505050565b505050565b600080613175611bfa565b61317d610faa565b6131879190614ceb565b905060008133414445426040516020016131a5959493929190614646565b6040516020818303038152906040528051906020012060001c6131c89190614f09565b9050600080600c60008481526020019081526020016000205414156131ef57819050613206565b600c60008381526020019081526020016000205490505b6000600c60006001866132199190614ceb565b81526020019081526020016000205414156132575760018361323b9190614ceb565b600c60008481526020019081526020016000208190555061328f565b600c60006001856132689190614ceb565b815260200190815260200160002054600c6000848152602001908152602001600020819055505b61329761378c565b507f0000000000000000000000000000000000000000000000000000000000000001816132c49190614c0a565b935050505090565b6132e68282604051806020016040528060008152506137f3565b5050565b600061330b8473ffffffffffffffffffffffffffffffffffffffff1661384e565b15613474578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133346125d2565b8786866040518563ffffffff1660e01b81526004016133569493929190614706565b602060405180830381600087803b15801561337057600080fd5b505af19250505080156133a157506040513d601f19601f8201168201806040525081019061339e9190613fe3565b60015b613424573d80600081146133d1576040519150601f19603f3d011682016040523d82523d6000602084013e6133d6565b606091505b5060008151141561341c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613413906147ec565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613479565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016134dc84611966565b6134e69190614ceb565b90506000600760008481526020019081526020016000205490508181146135cb576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506136509190614ceb565b90506000600960008481526020019081526020016000205490506000600883815481106136805761367f614ff6565b5b9060005260206000200154905080600883815481106136a2576136a1614ff6565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806136f1576136f0614fc7565b5b6001900381819060005260206000200160009055905550505050565b600061371883611966565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080613797612251565b116137d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137ce906148ac565b60405180910390fd5b600b60008154809291906137ea90614e80565b91905055905090565b6137fd8383613871565b61380a60008484846132ea565b613849576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613840906147ec565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138d89061496c565b60405180910390fd5b6138ea816125da565b1561392a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139219061484c565b60405180910390fd5b61393660008383613051565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139869190614c0a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613a4760008383613165565b5050565b828054613a5790614e1d565b90600052602060002090601f016020900481019282613a795760008555613ac0565b82601f10613a9257805160ff1916838001178555613ac0565b82800160010185558215613ac0579182015b82811115613abf578251825591602001919060010190613aa4565b5b509050613acd9190613ad1565b5090565b5b80821115613aea576000816000905550600101613ad2565b5090565b6000613b01613afc84614b0c565b614ae7565b905082815260208101848484011115613b1d57613b1c615063565b5b613b28848285614ddb565b509392505050565b6000613b43613b3e84614b3d565b614ae7565b905082815260208101848484011115613b5f57613b5e615063565b5b613b6a848285614ddb565b509392505050565b600081359050613b818161567f565b92915050565b60008083601f840112613b9d57613b9c615059565b5b8235905067ffffffffffffffff811115613bba57613bb9615054565b5b602083019150836020820283011115613bd657613bd561505e565b5b9250929050565b60008083601f840112613bf357613bf2615059565b5b8235905067ffffffffffffffff811115613c1057613c0f615054565b5b602083019150836020820283011115613c2c57613c2b61505e565b5b9250929050565b600081359050613c4281615696565b92915050565b600081359050613c57816156ad565b92915050565b600081519050613c6c816156ad565b92915050565b600082601f830112613c8757613c86615059565b5b8135613c97848260208601613aee565b91505092915050565b600082601f830112613cb557613cb4615059565b5b8135613cc5848260208601613b30565b91505092915050565b600081359050613cdd816156c4565b92915050565b600081519050613cf2816156c4565b92915050565b600060208284031215613d0e57613d0d61506d565b5b6000613d1c84828501613b72565b91505092915050565b60008060408385031215613d3c57613d3b61506d565b5b6000613d4a85828601613b72565b9250506020613d5b85828601613b72565b9150509250929050565b600080600060608486031215613d7e57613d7d61506d565b5b6000613d8c86828701613b72565b9350506020613d9d86828701613b72565b9250506040613dae86828701613cce565b9150509250925092565b60008060008060808587031215613dd257613dd161506d565b5b6000613de087828801613b72565b9450506020613df187828801613b72565b9350506040613e0287828801613cce565b925050606085013567ffffffffffffffff811115613e2357613e22615068565b5b613e2f87828801613c72565b91505092959194509250565b60008060408385031215613e5257613e5161506d565b5b6000613e6085828601613b72565b9250506020613e7185828601613c33565b9150509250929050565b60008060408385031215613e9257613e9161506d565b5b6000613ea085828601613b72565b9250506020613eb185828601613cce565b9150509250929050565b60008060208385031215613ed257613ed161506d565b5b600083013567ffffffffffffffff811115613ef057613eef615068565b5b613efc85828601613b87565b92509250509250929050565b60008060008060408587031215613f2257613f2161506d565b5b600085013567ffffffffffffffff811115613f4057613f3f615068565b5b613f4c87828801613b87565b9450945050602085013567ffffffffffffffff811115613f6f57613f6e615068565b5b613f7b87828801613bdd565b925092505092959194509250565b600060208284031215613f9f57613f9e61506d565b5b6000613fad84828501613c33565b91505092915050565b600060208284031215613fcc57613fcb61506d565b5b6000613fda84828501613c48565b91505092915050565b600060208284031215613ff957613ff861506d565b5b600061400784828501613c5d565b91505092915050565b6000602082840312156140265761402561506d565b5b600082013567ffffffffffffffff81111561404457614043615068565b5b61405084828501613ca0565b91505092915050565b60006020828403121561406f5761406e61506d565b5b600061407d84828501613cce565b91505092915050565b60006020828403121561409c5761409b61506d565b5b60006140aa84828501613ce3565b91505092915050565b60006140bf8383614611565b60208301905092915050565b6140dc6140d782614d31565b614edb565b82525050565b6140eb81614d1f565b82525050565b6141026140fd82614d1f565b614ec9565b82525050565b600061411382614b93565b61411d8185614bc1565b935061412883614b6e565b8060005b8381101561415957815161414088826140b3565b975061414b83614bb4565b92505060018101905061412c565b5085935050505092915050565b61416f81614d43565b82525050565b600061418082614b9e565b61418a8185614bd2565b935061419a818560208601614dea565b6141a381615072565b840191505092915050565b6141b781614da5565b82525050565b60006141c882614ba9565b6141d28185614bee565b93506141e2818560208601614dea565b6141eb81615072565b840191505092915050565b600061420182614ba9565b61420b8185614bff565b935061421b818560208601614dea565b80840191505092915050565b6000815461423481614e1d565b61423e8186614bff565b94506001821660008114614259576001811461426a5761429d565b60ff1983168652818601935061429d565b61427385614b7e565b60005b8381101561429557815481890152600182019150602081019050614276565b838801955050505b50505092915050565b60006142b3602b83614bee565b91506142be82615090565b604082019050919050565b60006142d6603283614bee565b91506142e1826150df565b604082019050919050565b60006142f9602683614bee565b91506143048261512e565b604082019050919050565b600061431c602583614bee565b91506143278261517d565b604082019050919050565b600061433f601c83614bee565b915061434a826151cc565b602082019050919050565b6000614362602483614bee565b915061436d826151f5565b604082019050919050565b6000614385601983614bee565b915061439082615244565b602082019050919050565b60006143a8601883614bee565b91506143b38261526d565b602082019050919050565b60006143cb602c83614bee565b91506143d682615296565b604082019050919050565b60006143ee603883614bee565b91506143f9826152e5565b604082019050919050565b6000614411601183614bee565b915061441c82615334565b602082019050919050565b6000614434602a83614bee565b915061443f8261535d565b604082019050919050565b6000614457602983614bee565b9150614462826153ac565b604082019050919050565b600061447a602083614bee565b9150614485826153fb565b602082019050919050565b600061449d602c83614bee565b91506144a882615424565b604082019050919050565b60006144c0602083614bee565b91506144cb82615473565b602082019050919050565b60006144e3601683614bee565b91506144ee8261549c565b602082019050919050565b6000614506602f83614bee565b9150614511826154c5565b604082019050919050565b6000614529600d83614bee565b915061453482615514565b602082019050919050565b600061454c602183614bee565b91506145578261553d565b604082019050919050565b600061456f600083614be3565b915061457a8261558c565b600082019050919050565b6000614592601283614bee565b915061459d8261558f565b602082019050919050565b60006145b5603183614bee565b91506145c0826155b8565b604082019050919050565b60006145d8602c83614bee565b91506145e382615607565b604082019050919050565b60006145fb601b83614bee565b915061460682615656565b602082019050919050565b61461a81614d9b565b82525050565b61462981614d9b565b82525050565b61464061463b82614d9b565b614eff565b82525050565b600061465282886140f1565b60148201915061466282876140cb565b601482019150614672828661462f565b602082019150614682828561462f565b602082019150614692828461462f565b6020820191508190509695505050505050565b60006146b182866141f6565b91506146bd82856141f6565b91506146c98284614227565b9150819050949350505050565b60006146e182614562565b9150819050919050565b600060208201905061470060008301846140e2565b92915050565b600060808201905061471b60008301876140e2565b61472860208301866140e2565b6147356040830185614620565b81810360608301526147478184614175565b905095945050505050565b6000602082019050818103600083015261476c8184614108565b905092915050565b60006020820190506147896000830184614166565b92915050565b60006020820190506147a460008301846141ae565b92915050565b600060208201905081810360008301526147c481846141bd565b905092915050565b600060208201905081810360008301526147e5816142a6565b9050919050565b60006020820190508181036000830152614805816142c9565b9050919050565b60006020820190508181036000830152614825816142ec565b9050919050565b600060208201905081810360008301526148458161430f565b9050919050565b6000602082019050818103600083015261486581614332565b9050919050565b6000602082019050818103600083015261488581614355565b9050919050565b600060208201905081810360008301526148a581614378565b9050919050565b600060208201905081810360008301526148c58161439b565b9050919050565b600060208201905081810360008301526148e5816143be565b9050919050565b60006020820190508181036000830152614905816143e1565b9050919050565b6000602082019050818103600083015261492581614404565b9050919050565b6000602082019050818103600083015261494581614427565b9050919050565b600060208201905081810360008301526149658161444a565b9050919050565b600060208201905081810360008301526149858161446d565b9050919050565b600060208201905081810360008301526149a581614490565b9050919050565b600060208201905081810360008301526149c5816144b3565b9050919050565b600060208201905081810360008301526149e5816144d6565b9050919050565b60006020820190508181036000830152614a05816144f9565b9050919050565b60006020820190508181036000830152614a258161451c565b9050919050565b60006020820190508181036000830152614a458161453f565b9050919050565b60006020820190508181036000830152614a6581614585565b9050919050565b60006020820190508181036000830152614a85816145a8565b9050919050565b60006020820190508181036000830152614aa5816145cb565b9050919050565b60006020820190508181036000830152614ac5816145ee565b9050919050565b6000602082019050614ae16000830184614620565b92915050565b6000614af1614b02565b9050614afd8282614e4f565b919050565b6000604051905090565b600067ffffffffffffffff821115614b2757614b26615025565b5b614b3082615072565b9050602081019050919050565b600067ffffffffffffffff821115614b5857614b57615025565b5b614b6182615072565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614c1582614d9b565b9150614c2083614d9b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c5557614c54614f3a565b5b828201905092915050565b6000614c6b82614d9b565b9150614c7683614d9b565b925082614c8657614c85614f69565b5b828204905092915050565b6000614c9c82614d9b565b9150614ca783614d9b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ce057614cdf614f3a565b5b828202905092915050565b6000614cf682614d9b565b9150614d0183614d9b565b925082821015614d1457614d13614f3a565b5b828203905092915050565b6000614d2a82614d7b565b9050919050565b6000614d3c82614d7b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000614db082614db7565b9050919050565b6000614dc282614dc9565b9050919050565b6000614dd482614d7b565b9050919050565b82818337600083830152505050565b60005b83811015614e08578082015181840152602081019050614ded565b83811115614e17576000848401525b50505050565b60006002820490506001821680614e3557607f821691505b60208210811415614e4957614e48614f98565b5b50919050565b614e5882615072565b810181811067ffffffffffffffff82111715614e7757614e76615025565b5b80604052505050565b6000614e8b82614d9b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614ebe57614ebd614f3a565b5b600182019050919050565b6000614ed482614eed565b9050919050565b6000614ee682614eed565b9050919050565b6000614ef882615083565b9050919050565b6000819050919050565b6000614f1482614d9b565b9150614f1f83614d9b565b925082614f2f57614f2e614f69565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e6f206d6f726520746f6b656e7320617661696c61626c650000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4d696e74206e6f7420706f737369626c65000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f6e6f742061646472657373203000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b61568881614d1f565b811461569357600080fd5b50565b61569f81614d43565b81146156aa57600080fd5b50565b6156b681614d4f565b81146156c157600080fd5b50565b6156cd81614d9b565b81146156d857600080fd5b5056fea2646970667358221220d5eac459d58793115c17c9eebf9de7ae1e49ef2839e6d978ded933bcfa84d57d64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000003cb2e346c6cca184b59c4c0d69e60c95dd3c138f
-----Decoded View---------------
Arg [0] : _armySoldier (address): 0x3cb2E346C6cca184B59c4c0D69e60C95Dd3c138F
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000003cb2e346c6cca184b59c4c0d69e60c95dd3c138f
Deployed Bytecode Sourcemap
67805:5863:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61484:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72216:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48303:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49863:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68037:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49386:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21936:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62124:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50613:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70007:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68970:563;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61792:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72485:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73210:455;;;:::i;:::-;;51023:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70746:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62314:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68371:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71856:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68340:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72295:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47997:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68100:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67952:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47727:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26861:103;;;;;;;;;;;;;:::i;:::-;;68296:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26210:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73010:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68187:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48472:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22210:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73106:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69556:445;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50156:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71785:65;;;;;;;;;;;;;:::i;:::-;;72742:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68265:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51279:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68070:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72914:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67995:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71266:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68229:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71960:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22387:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50382:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72090:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27119:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70636:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68142:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61484:224;61586:4;61625:35;61610:50;;;:11;:50;;;;:90;;;;61664:36;61688:11;61664:23;:36::i;:::-;61610:90;61603:97;;61484:224;;;:::o;72216:73::-;26441:12;:10;:12::i;:::-;26430:23;;:7;:5;:7::i;:::-;:23;;;26422:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72277:6:::1;72268;;:15;;;;;;;;;;;;;;;;;;72216:73:::0;:::o;48303:100::-;48357:13;48390:5;48383:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48303:100;:::o;49863:221::-;49939:7;49967:16;49975:7;49967;:16::i;:::-;49959:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;50052:15;:24;50068:7;50052:24;;;;;;;;;;;;;;;;;;;;;50045:31;;49863:221;;;:::o;68037:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49386:411::-;49467:13;49483:23;49498:7;49483:14;:23::i;:::-;49467:39;;49531:5;49525:11;;:2;:11;;;;49517:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;49625:5;49609:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;49634:37;49651:5;49658:12;:10;:12::i;:::-;49634:16;:37::i;:::-;49609:62;49587:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;49768:21;49777:2;49781:7;49768:8;:21::i;:::-;49456:341;49386:411;;:::o;21936:96::-;21987:7;22008:19;22001:26;;21936:96;:::o;62124:113::-;62185:7;62212:10;:17;;;;62205:24;;62124:113;:::o;50613:339::-;50808:41;50827:12;:10;:12::i;:::-;50841:7;50808:18;:41::i;:::-;50800:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;50916:28;50926:4;50932:2;50936:7;50916:9;:28::i;:::-;50613:339;;;:::o;70007:308::-;26441:12;:10;:12::i;:::-;26430:23;;:7;:5;:7::i;:::-;:23;;;26422:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70115:9:::1;70110:198;70134:7;;:14;;70130:1;:18;70110:198;;;70166:20;70189:6;;70196:1;70189:9;;;;;;;:::i;:::-;;;;;;;;70166:32;;70214:9;70209:92;70233:12;70229:1;:16;70209:92;;;70263:25;70277:7;;70285:1;70277:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;70263:13;:25::i;:::-;70247:3;;;;;:::i;:::-;;;;70209:92;;;;70155:153;70150:3;;;;;:::i;:::-;;;;70110:198;;;;70007:308:::0;;;;:::o;68970:563::-;69027:7;69071:1;69051:22;;:8;:22;;;;69043:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;69120:11;;69102:14;;:29;69098:430;;69148:21;69160:8;69148:11;:21::i;:::-;69144:192;;;69189:14;;69182:21;;;;69144:192;69225:20;69236:8;69225:10;:20::i;:::-;69221:115;;;69265:11;;69258:18;;;;69221:115;69313:11;;69306:18;;;;69098:430;69353:20;69364:8;69353:10;:20::i;:::-;69349:179;;;69393:11;;69386:18;;;;69349:179;69422:21;69434:8;69422:11;:21::i;:::-;69418:110;;;69463:14;;69456:21;;;;69418:110;69509:11;;69502:18;;68970:563;;;;:::o;61792:256::-;61889:7;61925:23;61942:5;61925:16;:23::i;:::-;61917:5;:31;61909:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;62014:12;:19;62027:5;62014:19;;;;;;;;;;;;;;;:26;62034:5;62014:26;;;;;;;;;;;;62007:33;;61792:256;;;;:::o;72485:186::-;26441:12;:10;:12::i;:::-;26430:23;;:7;:5;:7::i;:::-;:23;;;26422:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72569:6:::1;72564:94;72585:9;;:16;;72581:1;:20;72564:94;;;72645:5;72619:9;:23;72629:9;;72639:1;72629:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;72619:23;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;72603:3;;;;;:::i;:::-;;;;72564:94;;;;72485:186:::0;;:::o;73210:455::-;26441:12;:10;:12::i;:::-;26430:23;;:7;:5;:7::i;:::-;:23;;;26422:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;73487:7:::1;73508;:5;:7::i;:::-;73500:21;;73529;73500:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73486:69;;;73570:2;73562:11;;;::::0;::::1;;73255:410;73210:455::o:0;51023:185::-;51161:39;51178:4;51184:2;51188:7;51161:39;;;;;;;;;;;;:16;:39::i;:::-;51023:185;;;:::o;70746:348::-;70821:16;70849:23;70875:17;70885:6;70875:9;:17::i;:::-;70849:43;;70899:25;70941:15;70927:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70899:58;;70969:9;70964:103;70984:15;70980:1;:19;70964:103;;;71029:30;71049:6;71057:1;71029:19;:30::i;:::-;71015:8;71024:1;71015:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;71001:3;;;;;:::i;:::-;;;;70964:103;;;;71080:8;71073:15;;;;70746:348;;;:::o;62314:233::-;62389:7;62425:30;:28;:30::i;:::-;62417:5;:38;62409:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;62522:10;62533:5;62522:17;;;;;;;;:::i;:::-;;;;;;;;;;62515:24;;62314:233;;;:::o;68371:27::-;;;;;;;;;;;;;:::o;71856:98::-;26441:12;:10;:12::i;:::-;26430:23;;:7;:5;:7::i;:::-;:23;;;26422:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71937:11:::1;71927:7;:21;;;;;;;;;;;;:::i;:::-;;71856:98:::0;:::o;68340:26::-;;;;;;;;;;;;;:::o;72295:182::-;26441:12;:10;:12::i;:::-;26430:23;;:7;:5;:7::i;:::-;:23;;;26422:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72376:6:::1;72371:93;72392:9;;:16;;72388:1;:20;72371:93;;;72452:4;72426:9;:23;72436:9;;72446:1;72436:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;72426:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;72410:3;;;;;:::i;:::-;;;;72371:93;;;;72295:182:::0;;:::o;47997:239::-;48069:7;48089:13;48105:7;:16;48113:7;48105:16;;;;;;;;;;;;;;;;;;;;;48089:32;;48157:1;48140:19;;:5;:19;;;;48132:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;48223:5;48216:12;;;47997:239;;;:::o;68100:37::-;;;;:::o;67952:38::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47727:208::-;47799:7;47844:1;47827:19;;:5;:19;;;;47819:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;47911:9;:16;47921:5;47911:16;;;;;;;;;;;;;;;;47904:23;;47727:208;;;:::o;26861:103::-;26441:12;:10;:12::i;:::-;26430:23;;:7;:5;:7::i;:::-;:23;;;26422:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26926:30:::1;26953:1;26926:18;:30::i;:::-;26861:103::o:0;68296:39::-;;;;;;;;;:::o;26210:87::-;26256:7;26283:6;;;;;;;;;;;26276:13;;26210:87;:::o;73010:90::-;26441:12;:10;:12::i;:::-;26430:23;;:7;:5;:7::i;:::-;:23;;;26422:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;73089:5:::1;73075:11;:19;;;;73010:90:::0;:::o;68187:37::-;;;;:::o;48472:104::-;48528:13;48561:7;48554:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48472:104;:::o;22210:80::-;22253:7;22274:11;;22267:18;;22210:80;:::o;73106:96::-;26441:12;:10;:12::i;:::-;26430:23;;:7;:5;:7::i;:::-;:23;;;26422:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;73191:5:::1;73174:14;:22;;;;73106:96:::0;:::o;69556:445::-;69617:6;;;;;;;;;;;69616:7;69608:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;69674:1;69665:6;:10;69657:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;69714:12;69740:20;69749:10;69740:8;:20::i;:::-;69733:27;;69787:7;:5;:7::i;:::-;69773:21;;:10;:21;;;69769:141;;69808:14;69832:6;69825:4;:13;;;;:::i;:::-;69808:30;;69870:9;69857;:22;;69849:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;69796:114;69769:141;69921:9;69933:1;69921:13;;69916:80;69941:6;69936:1;:11;69916:80;;69963:25;69977:10;69963:13;:25::i;:::-;69949:3;;;;;:::i;:::-;;;;69916:80;;;;69601:400;69556:445;:::o;50156:155::-;50251:52;50270:12;:10;:12::i;:::-;50284:8;50294;50251:18;:52::i;:::-;50156:155;;:::o;71785:65::-;26441:12;:10;:12::i;:::-;26430:23;;:7;:5;:7::i;:::-;:23;;;26422:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71840:4:::1;71829:8;;:15;;;;;;;;;;;;;;;;;;71785:65::o:0;72742:166::-;72801:4;72818:23;72832:8;72818:13;:23::i;:::-;72814:89;;;72858:4;72851:11;;;;72814:89;72890:5;72883:12;;72742:166;;;;:::o;68265:26::-;;;;:::o;51279:328::-;51454:41;51473:12;:10;:12::i;:::-;51487:7;51454:18;:41::i;:::-;51446:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;51560:39;51574:4;51580:2;51584:7;51593:5;51560:13;:39::i;:::-;51279:328;;;;:::o;68070:25::-;;;;;;;;;;;;;:::o;72914:90::-;26441:12;:10;:12::i;:::-;26430:23;;:7;:5;:7::i;:::-;:23;;;26422:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72993:5:::1;72979:11;:19;;;;72914:90:::0;:::o;67995:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;71266:497::-;71364:13;71405:16;71413:7;71405;:16::i;:::-;71389:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;71514:5;71502:17;;:8;;;;;;;;;;;:17;;;71499:62;;;71539:14;71532:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71499:62;71569:28;71600:10;:8;:10::i;:::-;71569:41;;71655:1;71630:14;71624:28;:32;:133;;;;;;;;;;;;;;;;;71692:14;71708:18;:7;:16;:18::i;:::-;71728:13;71675:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;71624:133;71617:140;;;71266:497;;;;:::o;68229:31::-;;;;:::o;71960:122::-;26441:12;:10;:12::i;:::-;26430:23;;:7;:5;:7::i;:::-;:23;;;26422:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72059:17:::1;72043:13;:33;;;;;;;;;;;;:::i;:::-;;71960:122:::0;:::o;22387:113::-;22439:7;22483:12;:10;:12::i;:::-;22460:20;:18;:20::i;:::-;:35;;;;:::i;:::-;22453:42;;22387:113;:::o;50382:164::-;50479:4;50503:18;:25;50522:5;50503:25;;;;;;;;;;;;;;;:35;50529:8;50503:35;;;;;;;;;;;;;;;;;;;;;;;;;50496:42;;50382:164;;;;:::o;72090:120::-;26441:12;:10;:12::i;:::-;26430:23;;:7;:5;:7::i;:::-;:23;;;26422:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72189:15:::1;72172:14;:32;;;;;;;;;;;;:::i;:::-;;72090:120:::0;:::o;27119:201::-;26441:12;:10;:12::i;:::-;26430:23;;:7;:5;:7::i;:::-;:23;;;26422:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27228:1:::1;27208:22;;:8;:22;;;;27200:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27284:28;27303:8;27284:18;:28::i;:::-;27119:201:::0;:::o;70636:104::-;70695:4;70715:9;:19;70725:8;70715:19;;;;;;;;;;;;;;;;;;;;;;;;;70708:26;;70636:104;;;:::o;68142:40::-;;;;:::o;47358:305::-;47460:4;47512:25;47497:40;;;:11;:40;;;;:105;;;;47569:33;47554:48;;;:11;:48;;;;47497:105;:158;;;;47619:36;47643:11;47619:23;:36::i;:::-;47497:158;47477:178;;47358:305;;;:::o;2322:98::-;2375:7;2402:10;2395:17;;2322:98;:::o;53117:127::-;53182:4;53234:1;53206:30;;:7;:16;53214:7;53206:16;;;;;;;;;;;;;;;;;;;;;:30;;;;53199:37;;53117:127;;;:::o;57263:174::-;57365:2;57338:15;:24;57354:7;57338:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;57421:7;57417:2;57383:46;;57392:23;57407:7;57392:14;:23::i;:::-;57383:46;;;;;;;;;;;;57263:174;;:::o;53411:348::-;53504:4;53529:16;53537:7;53529;:16::i;:::-;53521:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;53605:13;53621:23;53636:7;53621:14;:23::i;:::-;53605:39;;53674:5;53663:16;;:7;:16;;;:52;;;;53683:32;53700:5;53707:7;53683:16;:32::i;:::-;53663:52;:87;;;;53743:7;53719:31;;:20;53731:7;53719:11;:20::i;:::-;:31;;;53663:87;53655:96;;;53411:348;;;;:::o;56520:625::-;56679:4;56652:31;;:23;56667:7;56652:14;:23::i;:::-;:31;;;56644:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;56758:1;56744:16;;:2;:16;;;;56736:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;56814:39;56835:4;56841:2;56845:7;56814:20;:39::i;:::-;56918:29;56935:1;56939:7;56918:8;:29::i;:::-;56979:1;56960:9;:15;56970:4;56960:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;57008:1;56991:9;:13;57001:2;56991:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;57039:2;57020:7;:16;57028:7;57020:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;57078:7;57074:2;57059:27;;57068:4;57059:27;;;;;;;;;;;;57099:38;57119:4;57125:2;57129:7;57099:19;:38::i;:::-;56520:625;;;:::o;71100:157::-;71147:10;71160:11;:9;:11::i;:::-;71147:24;;71188:1;71183:2;:6;:25;;;;;71199:9;;71193:2;:15;;71183:25;71175:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;71234:17;71244:2;71248;71234:9;:17::i;:::-;71143:114;71100:157;:::o;27480:191::-;27554:16;27573:6;;;;;;;;;;;27554:25;;27599:8;27590:6;;:17;;;;;;;;;;;;;;;;;;27654:8;27623:40;;27644:8;27623:40;;;;;;;;;;;;27543:128;27480:191;:::o;57579:315::-;57734:8;57725:17;;:5;:17;;;;57717:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;57821:8;57783:18;:25;57802:5;57783:25;;;;;;;;;;;;;;;:35;57809:8;57783:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;57867:8;57845:41;;57860:5;57845:41;;;57877:8;57845:41;;;;;;:::i;:::-;;;;;;;;57579:315;;;:::o;68717:124::-;68780:4;68834:1;68800:11;;;;;;;;;;;:21;;;68822:8;68800:31;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:35;68793:42;;68717:124;;;:::o;52489:315::-;52646:28;52656:4;52662:2;52666:7;52646:9;:28::i;:::-;52693:48;52716:4;52722:2;52726:7;52735:5;52693:22;:48::i;:::-;52685:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;52489:315;;;;:::o;68862:102::-;68922:13;68951:7;68944:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68862:102;:::o;19490:723::-;19546:13;19776:1;19767:5;:10;19763:53;;;19794:10;;;;;;;;;;;;;;;;;;;;;19763:53;19826:12;19841:5;19826:20;;19857:14;19882:78;19897:1;19889:4;:9;19882:78;;19915:8;;;;;:::i;:::-;;;;19946:2;19938:10;;;;;:::i;:::-;;;19882:78;;;19970:19;20002:6;19992:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19970:39;;20020:154;20036:1;20027:5;:10;20020:154;;20064:1;20054:11;;;;;:::i;:::-;;;20131:2;20123:5;:10;;;;:::i;:::-;20110:2;:24;;;;:::i;:::-;20097:39;;20080:6;20087;20080:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;20160:2;20151:11;;;;;:::i;:::-;;;20020:154;;;20198:6;20184:21;;;;;19490:723;;;;:::o;39017:157::-;39102:4;39141:25;39126:40;;;:11;:40;;;;39119:47;;39017:157;;;:::o;63160:589::-;63304:45;63331:4;63337:2;63341:7;63304:26;:45::i;:::-;63382:1;63366:18;;:4;:18;;;63362:187;;;63401:40;63433:7;63401:31;:40::i;:::-;63362:187;;;63471:2;63463:10;;:4;:10;;;63459:90;;63490:47;63523:4;63529:7;63490:32;:47::i;:::-;63459:90;63362:187;63577:1;63563:16;;:2;:16;;;63559:183;;;63596:45;63633:7;63596:36;:45::i;:::-;63559:183;;;63669:4;63663:10;;:2;:10;;;63659:83;;63690:40;63718:2;63722:7;63690:27;:40::i;:::-;63659:83;63559:183;63160:589;;;:::o;60341:125::-;;;;:::o;24090:1049::-;24138:7;24152:16;24194:12;:10;:12::i;:::-;24171:20;:18;:20::i;:::-;:35;;;;:::i;:::-;24152:54;;24211:14;24403:8;24281:10;24299:14;24321:16;24345:14;24367:15;24257:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24241:154;;;;;;24228:172;;:183;;;;:::i;:::-;24211:200;;24418:13;24467:1;24444:11;:19;24456:6;24444:19;;;;;;;;;;;;:24;24440:256;;;24571:6;24563:14;;24440:256;;;24671:11;:19;24683:6;24671:19;;;;;;;;;;;;24663:27;;24440:256;24790:1;24761:11;:25;24784:1;24773:8;:12;;;;:::i;:::-;24761:25;;;;;;;;;;;;:30;24757:283;;;24888:1;24877:8;:12;;;;:::i;:::-;24855:11;:19;24867:6;24855:19;;;;;;;;;;;:34;;;;24757:283;;;25009:11;:25;25032:1;25021:8;:12;;;;:::i;:::-;25009:25;;;;;;;;;;;;24987:11;:19;24999:6;24987:19;;;;;;;;;;;:47;;;;24757:283;25086:17;:15;:17::i;:::-;;25125:9;25117:5;:17;;;;:::i;:::-;25110:24;;;;;24090:1049;:::o;54101:110::-;54177:26;54187:2;54191:7;54177:26;;;;;;;;;;;;:9;:26::i;:::-;54101:110;;:::o;58459:799::-;58614:4;58635:15;:2;:13;;;:15::i;:::-;58631:620;;;58687:2;58671:36;;;58708:12;:10;:12::i;:::-;58722:4;58728:7;58737:5;58671:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;58667:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58930:1;58913:6;:13;:18;58909:272;;;58956:60;;;;;;;;;;:::i;:::-;;;;;;;;58909:272;59131:6;59125:13;59116:6;59112:2;59108:15;59101:38;58667:529;58804:41;;;58794:51;;;:6;:51;;;;58787:58;;;;;58631:620;59235:4;59228:11;;58459:799;;;;;;;:::o;59830:126::-;;;;:::o;64472:164::-;64576:10;:17;;;;64549:15;:24;64565:7;64549:24;;;;;;;;;;;:44;;;;64604:10;64620:7;64604:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64472:164;:::o;65263:988::-;65529:22;65579:1;65554:22;65571:4;65554:16;:22::i;:::-;:26;;;;:::i;:::-;65529:51;;65591:18;65612:17;:26;65630:7;65612:26;;;;;;;;;;;;65591:47;;65759:14;65745:10;:28;65741:328;;65790:19;65812:12;:18;65825:4;65812:18;;;;;;;;;;;;;;;:34;65831:14;65812:34;;;;;;;;;;;;65790:56;;65896:11;65863:12;:18;65876:4;65863:18;;;;;;;;;;;;;;;:30;65882:10;65863:30;;;;;;;;;;;:44;;;;66013:10;65980:17;:30;65998:11;65980:30;;;;;;;;;;;:43;;;;65775:294;65741:328;66165:17;:26;66183:7;66165:26;;;;;;;;;;;66158:33;;;66209:12;:18;66222:4;66209:18;;;;;;;;;;;;;;;:34;66228:14;66209:34;;;;;;;;;;;66202:41;;;65344:907;;65263:988;;:::o;66546:1079::-;66799:22;66844:1;66824:10;:17;;;;:21;;;;:::i;:::-;66799:46;;66856:18;66877:15;:24;66893:7;66877:24;;;;;;;;;;;;66856:45;;67228:19;67250:10;67261:14;67250:26;;;;;;;;:::i;:::-;;;;;;;;;;67228:48;;67314:11;67289:10;67300;67289:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;67425:10;67394:15;:28;67410:11;67394:28;;;;;;;;;;;:41;;;;67566:15;:24;67582:7;67566:24;;;;;;;;;;;67559:31;;;67601:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;66617:1008;;;66546:1079;:::o;64050:221::-;64135:14;64152:20;64169:2;64152:16;:20::i;:::-;64135:37;;64210:7;64183:12;:16;64196:2;64183:16;;;;;;;;;;;;;;;:24;64200:6;64183:24;;;;;;;;;;;:34;;;;64257:6;64228:17;:26;64246:7;64228:26;;;;;;;;;;;:35;;;;64124:147;64050:221;;:::o;22601:105::-;22667:7;22836:1;22812:21;:19;:21::i;:::-;:25;22804:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;22688:11:::1;;:13;;;;;;;;;:::i;:::-;;;;;22681:20;;22601:105:::0;:::o;54438:321::-;54568:18;54574:2;54578:7;54568:5;:18::i;:::-;54619:54;54650:1;54654:2;54658:7;54667:5;54619:22;:54::i;:::-;54597:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;54438:321;;;:::o;28911:326::-;28971:4;29228:1;29206:7;:19;;;:23;29199:30;;28911:326;;;:::o;55095:439::-;55189:1;55175:16;;:2;:16;;;;55167:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;55248:16;55256:7;55248;:16::i;:::-;55247:17;55239:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;55310:45;55339:1;55343:2;55347:7;55310:20;:45::i;:::-;55385:1;55368:9;:13;55378:2;55368:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;55416:2;55397:7;:16;55405:7;55397:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;55461:7;55457:2;55436:33;;55453:1;55436:33;;;;;;;;;;;;55482:44;55510:1;55514:2;55518:7;55482:19;:44::i;:::-;55095: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;1594:::-;1667:8;1677:6;1727:3;1720:4;1712:6;1708:17;1704:27;1694:122;;1735:79;;:::i;:::-;1694:122;1848:6;1835:20;1825:30;;1878:18;1870:6;1867:30;1864:117;;;1900:79;;:::i;:::-;1864:117;2014:4;2006:6;2002:17;1990:29;;2068:3;2060:4;2052:6;2048:17;2038:8;2034:32;2031:41;2028:128;;;2075:79;;:::i;:::-;2028:128;1594:568;;;;;:::o;2168:133::-;2211:5;2249:6;2236:20;2227:29;;2265:30;2289:5;2265:30;:::i;:::-;2168:133;;;;:::o;2307:137::-;2352:5;2390:6;2377:20;2368:29;;2406:32;2432:5;2406:32;:::i;:::-;2307:137;;;;:::o;2450:141::-;2506:5;2537:6;2531:13;2522:22;;2553:32;2579:5;2553:32;:::i;:::-;2450:141;;;;:::o;2610:338::-;2665:5;2714:3;2707:4;2699:6;2695:17;2691:27;2681:122;;2722:79;;:::i;:::-;2681:122;2839:6;2826:20;2864:78;2938:3;2930:6;2923:4;2915:6;2911:17;2864:78;:::i;:::-;2855:87;;2671:277;2610:338;;;;:::o;2968:340::-;3024:5;3073:3;3066:4;3058:6;3054:17;3050:27;3040:122;;3081:79;;:::i;:::-;3040:122;3198:6;3185:20;3223:79;3298:3;3290:6;3283:4;3275:6;3271:17;3223:79;:::i;:::-;3214:88;;3030:278;2968:340;;;;:::o;3314:139::-;3360:5;3398:6;3385:20;3376:29;;3414:33;3441:5;3414:33;:::i;:::-;3314:139;;;;:::o;3459:143::-;3516:5;3547:6;3541:13;3532:22;;3563:33;3590:5;3563:33;:::i;:::-;3459:143;;;;:::o;3608:329::-;3667:6;3716:2;3704:9;3695:7;3691:23;3687:32;3684:119;;;3722:79;;:::i;:::-;3684:119;3842:1;3867:53;3912:7;3903:6;3892:9;3888:22;3867:53;:::i;:::-;3857:63;;3813:117;3608:329;;;;:::o;3943:474::-;4011:6;4019;4068:2;4056:9;4047:7;4043:23;4039:32;4036:119;;;4074:79;;:::i;:::-;4036:119;4194:1;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4165:117;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3943:474;;;;;:::o;4423:619::-;4500:6;4508;4516;4565:2;4553:9;4544:7;4540:23;4536:32;4533:119;;;4571:79;;:::i;:::-;4533:119;4691:1;4716:53;4761:7;4752:6;4741:9;4737:22;4716:53;:::i;:::-;4706:63;;4662:117;4818:2;4844:53;4889:7;4880:6;4869:9;4865:22;4844:53;:::i;:::-;4834:63;;4789:118;4946:2;4972:53;5017:7;5008:6;4997:9;4993:22;4972:53;:::i;:::-;4962:63;;4917:118;4423:619;;;;;:::o;5048:943::-;5143:6;5151;5159;5167;5216:3;5204:9;5195:7;5191:23;5187:33;5184:120;;;5223:79;;:::i;:::-;5184:120;5343:1;5368:53;5413:7;5404:6;5393:9;5389:22;5368:53;:::i;:::-;5358:63;;5314:117;5470:2;5496:53;5541:7;5532:6;5521:9;5517:22;5496:53;:::i;:::-;5486:63;;5441:118;5598:2;5624:53;5669:7;5660:6;5649:9;5645:22;5624:53;:::i;:::-;5614:63;;5569:118;5754:2;5743:9;5739:18;5726:32;5785:18;5777:6;5774:30;5771:117;;;5807:79;;:::i;:::-;5771:117;5912:62;5966:7;5957:6;5946:9;5942:22;5912:62;:::i;:::-;5902:72;;5697:287;5048:943;;;;;;;:::o;5997:468::-;6062:6;6070;6119:2;6107:9;6098:7;6094:23;6090:32;6087:119;;;6125:79;;:::i;:::-;6087:119;6245:1;6270:53;6315:7;6306:6;6295:9;6291:22;6270:53;:::i;:::-;6260:63;;6216:117;6372:2;6398:50;6440:7;6431:6;6420:9;6416:22;6398:50;:::i;:::-;6388:60;;6343:115;5997:468;;;;;:::o;6471:474::-;6539:6;6547;6596:2;6584:9;6575:7;6571:23;6567:32;6564:119;;;6602:79;;:::i;:::-;6564:119;6722:1;6747:53;6792:7;6783:6;6772:9;6768:22;6747:53;:::i;:::-;6737:63;;6693:117;6849:2;6875:53;6920:7;6911:6;6900:9;6896:22;6875:53;:::i;:::-;6865:63;;6820:118;6471:474;;;;;:::o;6951:559::-;7037:6;7045;7094:2;7082:9;7073:7;7069:23;7065:32;7062:119;;;7100:79;;:::i;:::-;7062:119;7248:1;7237:9;7233:17;7220:31;7278:18;7270:6;7267:30;7264:117;;;7300:79;;:::i;:::-;7264:117;7413:80;7485:7;7476:6;7465:9;7461:22;7413:80;:::i;:::-;7395:98;;;;7191:312;6951:559;;;;;:::o;7516:934::-;7638:6;7646;7654;7662;7711:2;7699:9;7690:7;7686:23;7682:32;7679:119;;;7717:79;;:::i;:::-;7679:119;7865:1;7854:9;7850:17;7837:31;7895:18;7887:6;7884:30;7881:117;;;7917:79;;:::i;:::-;7881:117;8030:80;8102:7;8093:6;8082:9;8078:22;8030:80;:::i;:::-;8012:98;;;;7808:312;8187:2;8176:9;8172:18;8159:32;8218:18;8210:6;8207:30;8204:117;;;8240:79;;:::i;:::-;8204:117;8353:80;8425:7;8416:6;8405:9;8401:22;8353:80;:::i;:::-;8335:98;;;;8130:313;7516:934;;;;;;;:::o;8456:323::-;8512:6;8561:2;8549:9;8540:7;8536:23;8532:32;8529:119;;;8567:79;;:::i;:::-;8529:119;8687:1;8712:50;8754:7;8745:6;8734:9;8730:22;8712:50;:::i;:::-;8702:60;;8658:114;8456:323;;;;:::o;8785:327::-;8843:6;8892:2;8880:9;8871:7;8867:23;8863:32;8860:119;;;8898:79;;:::i;:::-;8860:119;9018:1;9043:52;9087:7;9078:6;9067:9;9063:22;9043:52;:::i;:::-;9033:62;;8989:116;8785:327;;;;:::o;9118:349::-;9187:6;9236:2;9224:9;9215:7;9211:23;9207:32;9204:119;;;9242:79;;:::i;:::-;9204:119;9362:1;9387:63;9442:7;9433:6;9422:9;9418:22;9387:63;:::i;:::-;9377:73;;9333:127;9118:349;;;;:::o;9473:509::-;9542:6;9591:2;9579:9;9570:7;9566:23;9562:32;9559:119;;;9597:79;;:::i;:::-;9559:119;9745:1;9734:9;9730:17;9717:31;9775:18;9767:6;9764:30;9761:117;;;9797:79;;:::i;:::-;9761:117;9902:63;9957:7;9948:6;9937:9;9933:22;9902:63;:::i;:::-;9892:73;;9688:287;9473:509;;;;:::o;9988:329::-;10047:6;10096:2;10084:9;10075:7;10071:23;10067:32;10064:119;;;10102:79;;:::i;:::-;10064:119;10222:1;10247:53;10292:7;10283:6;10272:9;10268:22;10247:53;:::i;:::-;10237:63;;10193:117;9988:329;;;;:::o;10323:351::-;10393:6;10442:2;10430:9;10421:7;10417:23;10413:32;10410:119;;;10448:79;;:::i;:::-;10410:119;10568:1;10593:64;10649:7;10640:6;10629:9;10625:22;10593:64;:::i;:::-;10583:74;;10539:128;10323:351;;;;:::o;10680:179::-;10749:10;10770:46;10812:3;10804:6;10770:46;:::i;:::-;10848:4;10843:3;10839:14;10825:28;;10680:179;;;;:::o;10865:189::-;10986:61;11014:32;11040:5;11014:32;:::i;:::-;10986:61;:::i;:::-;10981:3;10974:74;10865:189;;:::o;11060:118::-;11147:24;11165:5;11147:24;:::i;:::-;11142:3;11135:37;11060:118;;:::o;11184:157::-;11289:45;11309:24;11327:5;11309:24;:::i;:::-;11289:45;:::i;:::-;11284:3;11277:58;11184:157;;:::o;11377:732::-;11496:3;11525:54;11573:5;11525:54;:::i;:::-;11595:86;11674:6;11669:3;11595:86;:::i;:::-;11588:93;;11705:56;11755:5;11705:56;:::i;:::-;11784:7;11815:1;11800:284;11825:6;11822:1;11819:13;11800:284;;;11901:6;11895:13;11928:63;11987:3;11972:13;11928:63;:::i;:::-;11921:70;;12014:60;12067:6;12014:60;:::i;:::-;12004:70;;11860:224;11847:1;11844;11840:9;11835:14;;11800:284;;;11804:14;12100:3;12093:10;;11501:608;;;11377:732;;;;:::o;12115:109::-;12196:21;12211:5;12196:21;:::i;:::-;12191:3;12184:34;12115:109;;:::o;12230:360::-;12316:3;12344:38;12376:5;12344:38;:::i;:::-;12398:70;12461:6;12456:3;12398:70;:::i;:::-;12391:77;;12477:52;12522:6;12517:3;12510:4;12503:5;12499:16;12477:52;:::i;:::-;12554:29;12576:6;12554:29;:::i;:::-;12549:3;12545:39;12538:46;;12320:270;12230:360;;;;:::o;12596:161::-;12698:52;12744:5;12698:52;:::i;:::-;12693:3;12686:65;12596:161;;:::o;12763:364::-;12851:3;12879:39;12912:5;12879:39;:::i;:::-;12934:71;12998:6;12993:3;12934:71;:::i;:::-;12927:78;;13014:52;13059:6;13054:3;13047:4;13040:5;13036:16;13014:52;:::i;:::-;13091:29;13113:6;13091:29;:::i;:::-;13086:3;13082:39;13075:46;;12855:272;12763:364;;;;:::o;13133:377::-;13239:3;13267:39;13300:5;13267:39;:::i;:::-;13322:89;13404:6;13399:3;13322:89;:::i;:::-;13315:96;;13420:52;13465:6;13460:3;13453:4;13446:5;13442:16;13420:52;:::i;:::-;13497:6;13492:3;13488:16;13481:23;;13243:267;13133:377;;;;:::o;13540:845::-;13643:3;13680:5;13674:12;13709:36;13735:9;13709:36;:::i;:::-;13761:89;13843:6;13838:3;13761:89;:::i;:::-;13754:96;;13881:1;13870:9;13866:17;13897:1;13892:137;;;;14043:1;14038:341;;;;13859:520;;13892:137;13976:4;13972:9;13961;13957:25;13952:3;13945:38;14012:6;14007:3;14003:16;13996:23;;13892:137;;14038:341;14105:38;14137:5;14105:38;:::i;:::-;14165:1;14179:154;14193:6;14190:1;14187:13;14179:154;;;14267:7;14261:14;14257:1;14252:3;14248:11;14241:35;14317:1;14308:7;14304:15;14293:26;;14215:4;14212:1;14208:12;14203:17;;14179:154;;;14362:6;14357:3;14353:16;14346:23;;14045:334;;13859:520;;13647:738;;13540:845;;;;:::o;14391:366::-;14533:3;14554:67;14618:2;14613:3;14554:67;:::i;:::-;14547:74;;14630:93;14719:3;14630:93;:::i;:::-;14748:2;14743:3;14739:12;14732:19;;14391:366;;;:::o;14763:::-;14905:3;14926:67;14990:2;14985:3;14926:67;:::i;:::-;14919:74;;15002:93;15091:3;15002:93;:::i;:::-;15120:2;15115:3;15111:12;15104:19;;14763:366;;;:::o;15135:::-;15277:3;15298:67;15362:2;15357:3;15298:67;:::i;:::-;15291:74;;15374:93;15463:3;15374:93;:::i;:::-;15492:2;15487:3;15483:12;15476:19;;15135:366;;;:::o;15507:::-;15649:3;15670:67;15734:2;15729:3;15670:67;:::i;:::-;15663:74;;15746:93;15835:3;15746:93;:::i;:::-;15864:2;15859:3;15855:12;15848:19;;15507:366;;;:::o;15879:::-;16021:3;16042:67;16106:2;16101:3;16042:67;:::i;:::-;16035:74;;16118:93;16207:3;16118:93;:::i;:::-;16236:2;16231:3;16227:12;16220:19;;15879:366;;;:::o;16251:::-;16393:3;16414:67;16478:2;16473:3;16414:67;:::i;:::-;16407:74;;16490:93;16579:3;16490:93;:::i;:::-;16608:2;16603:3;16599:12;16592:19;;16251:366;;;:::o;16623:::-;16765:3;16786:67;16850:2;16845:3;16786:67;:::i;:::-;16779:74;;16862:93;16951:3;16862:93;:::i;:::-;16980:2;16975:3;16971:12;16964:19;;16623:366;;;:::o;16995:::-;17137:3;17158:67;17222:2;17217:3;17158:67;:::i;:::-;17151:74;;17234:93;17323:3;17234:93;:::i;:::-;17352:2;17347:3;17343:12;17336:19;;16995:366;;;:::o;17367:::-;17509:3;17530:67;17594:2;17589:3;17530:67;:::i;:::-;17523:74;;17606:93;17695:3;17606:93;:::i;:::-;17724:2;17719:3;17715:12;17708:19;;17367:366;;;:::o;17739:::-;17881:3;17902:67;17966:2;17961:3;17902:67;:::i;:::-;17895:74;;17978:93;18067:3;17978:93;:::i;:::-;18096:2;18091:3;18087:12;18080:19;;17739:366;;;:::o;18111:::-;18253:3;18274:67;18338:2;18333:3;18274:67;:::i;:::-;18267:74;;18350:93;18439:3;18350:93;:::i;:::-;18468:2;18463:3;18459:12;18452:19;;18111:366;;;:::o;18483:::-;18625:3;18646:67;18710:2;18705:3;18646:67;:::i;:::-;18639:74;;18722:93;18811:3;18722:93;:::i;:::-;18840:2;18835:3;18831:12;18824:19;;18483:366;;;:::o;18855:::-;18997:3;19018:67;19082:2;19077:3;19018:67;:::i;:::-;19011:74;;19094:93;19183:3;19094:93;:::i;:::-;19212:2;19207:3;19203:12;19196:19;;18855:366;;;:::o;19227:::-;19369:3;19390:67;19454:2;19449:3;19390:67;:::i;:::-;19383:74;;19466:93;19555:3;19466:93;:::i;:::-;19584:2;19579:3;19575:12;19568:19;;19227:366;;;:::o;19599:::-;19741:3;19762:67;19826:2;19821:3;19762:67;:::i;:::-;19755:74;;19838:93;19927:3;19838:93;:::i;:::-;19956:2;19951:3;19947:12;19940:19;;19599:366;;;:::o;19971:::-;20113:3;20134:67;20198:2;20193:3;20134:67;:::i;:::-;20127:74;;20210:93;20299:3;20210:93;:::i;:::-;20328:2;20323:3;20319:12;20312:19;;19971:366;;;:::o;20343:::-;20485:3;20506:67;20570:2;20565:3;20506:67;:::i;:::-;20499:74;;20582:93;20671:3;20582:93;:::i;:::-;20700:2;20695:3;20691:12;20684:19;;20343:366;;;:::o;20715:::-;20857:3;20878:67;20942:2;20937:3;20878:67;:::i;:::-;20871:74;;20954:93;21043:3;20954:93;:::i;:::-;21072:2;21067:3;21063:12;21056:19;;20715:366;;;:::o;21087:::-;21229:3;21250:67;21314:2;21309:3;21250:67;:::i;:::-;21243:74;;21326:93;21415:3;21326:93;:::i;:::-;21444:2;21439:3;21435:12;21428:19;;21087:366;;;:::o;21459:::-;21601:3;21622:67;21686:2;21681:3;21622:67;:::i;:::-;21615:74;;21698:93;21787:3;21698:93;:::i;:::-;21816:2;21811:3;21807:12;21800:19;;21459:366;;;:::o;21831:398::-;21990:3;22011:83;22092:1;22087:3;22011:83;:::i;:::-;22004:90;;22103:93;22192:3;22103:93;:::i;:::-;22221:1;22216:3;22212:11;22205:18;;21831:398;;;:::o;22235:366::-;22377:3;22398:67;22462:2;22457:3;22398:67;:::i;:::-;22391:74;;22474:93;22563:3;22474:93;:::i;:::-;22592:2;22587:3;22583:12;22576:19;;22235:366;;;:::o;22607:::-;22749:3;22770:67;22834:2;22829:3;22770:67;:::i;:::-;22763:74;;22846:93;22935:3;22846:93;:::i;:::-;22964:2;22959:3;22955:12;22948:19;;22607:366;;;:::o;22979:::-;23121:3;23142:67;23206:2;23201:3;23142:67;:::i;:::-;23135:74;;23218:93;23307:3;23218:93;:::i;:::-;23336:2;23331:3;23327:12;23320:19;;22979:366;;;:::o;23351:::-;23493:3;23514:67;23578:2;23573:3;23514:67;:::i;:::-;23507:74;;23590:93;23679:3;23590:93;:::i;:::-;23708:2;23703:3;23699:12;23692:19;;23351:366;;;:::o;23723:108::-;23800:24;23818:5;23800:24;:::i;:::-;23795:3;23788:37;23723:108;;:::o;23837:118::-;23924:24;23942:5;23924:24;:::i;:::-;23919:3;23912:37;23837:118;;:::o;23961:157::-;24066:45;24086:24;24104:5;24086:24;:::i;:::-;24066:45;:::i;:::-;24061:3;24054:58;23961:157;;:::o;24124:852::-;24364:3;24379:75;24450:3;24441:6;24379:75;:::i;:::-;24479:2;24474:3;24470:12;24463:19;;24492:91;24579:3;24570:6;24492:91;:::i;:::-;24608:2;24603:3;24599:12;24592:19;;24621:75;24692:3;24683:6;24621:75;:::i;:::-;24721:2;24716:3;24712:12;24705:19;;24734:75;24805:3;24796:6;24734:75;:::i;:::-;24834:2;24829:3;24825:12;24818:19;;24847:75;24918:3;24909:6;24847:75;:::i;:::-;24947:2;24942:3;24938:12;24931:19;;24967:3;24960:10;;24124:852;;;;;;;;:::o;24982:589::-;25207:3;25229:95;25320:3;25311:6;25229:95;:::i;:::-;25222:102;;25341:95;25432:3;25423:6;25341:95;:::i;:::-;25334:102;;25453:92;25541:3;25532:6;25453:92;:::i;:::-;25446:99;;25562:3;25555:10;;24982:589;;;;;;:::o;25577:379::-;25761:3;25783:147;25926:3;25783:147;:::i;:::-;25776:154;;25947:3;25940:10;;25577:379;;;:::o;25962:222::-;26055:4;26093:2;26082:9;26078:18;26070:26;;26106:71;26174:1;26163:9;26159:17;26150:6;26106:71;:::i;:::-;25962:222;;;;:::o;26190:640::-;26385:4;26423:3;26412:9;26408:19;26400:27;;26437:71;26505:1;26494:9;26490:17;26481:6;26437:71;:::i;:::-;26518:72;26586:2;26575:9;26571:18;26562:6;26518:72;:::i;:::-;26600;26668:2;26657:9;26653:18;26644:6;26600:72;:::i;:::-;26719:9;26713:4;26709:20;26704:2;26693:9;26689:18;26682:48;26747:76;26818:4;26809:6;26747:76;:::i;:::-;26739:84;;26190:640;;;;;;;:::o;26836:373::-;26979:4;27017:2;27006:9;27002:18;26994:26;;27066:9;27060:4;27056:20;27052:1;27041:9;27037:17;27030:47;27094:108;27197:4;27188:6;27094:108;:::i;:::-;27086:116;;26836:373;;;;:::o;27215:210::-;27302:4;27340:2;27329:9;27325:18;27317:26;;27353:65;27415:1;27404:9;27400:17;27391:6;27353:65;:::i;:::-;27215:210;;;;:::o;27431:252::-;27539:4;27577:2;27566:9;27562:18;27554:26;;27590:86;27673:1;27662:9;27658:17;27649:6;27590:86;:::i;:::-;27431:252;;;;:::o;27689:313::-;27802:4;27840:2;27829:9;27825:18;27817:26;;27889:9;27883:4;27879:20;27875:1;27864:9;27860:17;27853:47;27917:78;27990:4;27981:6;27917:78;:::i;:::-;27909:86;;27689:313;;;;:::o;28008:419::-;28174:4;28212:2;28201:9;28197:18;28189:26;;28261:9;28255:4;28251:20;28247:1;28236:9;28232:17;28225:47;28289:131;28415:4;28289:131;:::i;:::-;28281:139;;28008:419;;;:::o;28433:::-;28599:4;28637:2;28626:9;28622:18;28614:26;;28686:9;28680:4;28676:20;28672:1;28661:9;28657:17;28650:47;28714:131;28840:4;28714:131;:::i;:::-;28706:139;;28433:419;;;:::o;28858:::-;29024:4;29062:2;29051:9;29047:18;29039:26;;29111:9;29105:4;29101:20;29097:1;29086:9;29082:17;29075:47;29139:131;29265:4;29139:131;:::i;:::-;29131:139;;28858:419;;;:::o;29283:::-;29449:4;29487:2;29476:9;29472:18;29464:26;;29536:9;29530:4;29526:20;29522:1;29511:9;29507:17;29500:47;29564:131;29690:4;29564:131;:::i;:::-;29556:139;;29283:419;;;:::o;29708:::-;29874:4;29912:2;29901:9;29897:18;29889:26;;29961:9;29955:4;29951:20;29947:1;29936:9;29932:17;29925:47;29989:131;30115:4;29989:131;:::i;:::-;29981:139;;29708:419;;;:::o;30133:::-;30299:4;30337:2;30326:9;30322:18;30314:26;;30386:9;30380:4;30376:20;30372:1;30361:9;30357:17;30350:47;30414:131;30540:4;30414:131;:::i;:::-;30406:139;;30133:419;;;:::o;30558:::-;30724:4;30762:2;30751:9;30747:18;30739:26;;30811:9;30805:4;30801:20;30797:1;30786:9;30782:17;30775:47;30839:131;30965:4;30839:131;:::i;:::-;30831:139;;30558:419;;;:::o;30983:::-;31149:4;31187:2;31176:9;31172:18;31164:26;;31236:9;31230:4;31226:20;31222:1;31211:9;31207:17;31200:47;31264:131;31390:4;31264:131;:::i;:::-;31256:139;;30983:419;;;:::o;31408:::-;31574:4;31612:2;31601:9;31597:18;31589:26;;31661:9;31655:4;31651:20;31647:1;31636:9;31632:17;31625:47;31689:131;31815:4;31689:131;:::i;:::-;31681:139;;31408:419;;;:::o;31833:::-;31999:4;32037:2;32026:9;32022:18;32014:26;;32086:9;32080:4;32076:20;32072:1;32061:9;32057:17;32050:47;32114:131;32240:4;32114:131;:::i;:::-;32106:139;;31833:419;;;:::o;32258:::-;32424:4;32462:2;32451:9;32447:18;32439:26;;32511:9;32505:4;32501:20;32497:1;32486:9;32482:17;32475:47;32539:131;32665:4;32539:131;:::i;:::-;32531:139;;32258:419;;;:::o;32683:::-;32849:4;32887:2;32876:9;32872:18;32864:26;;32936:9;32930:4;32926:20;32922:1;32911:9;32907:17;32900:47;32964:131;33090:4;32964:131;:::i;:::-;32956:139;;32683:419;;;:::o;33108:::-;33274:4;33312:2;33301:9;33297:18;33289:26;;33361:9;33355:4;33351:20;33347:1;33336:9;33332:17;33325:47;33389:131;33515:4;33389:131;:::i;:::-;33381:139;;33108:419;;;:::o;33533:::-;33699:4;33737:2;33726:9;33722:18;33714:26;;33786:9;33780:4;33776:20;33772:1;33761:9;33757:17;33750:47;33814:131;33940:4;33814:131;:::i;:::-;33806:139;;33533:419;;;:::o;33958:::-;34124:4;34162:2;34151:9;34147:18;34139:26;;34211:9;34205:4;34201:20;34197:1;34186:9;34182:17;34175:47;34239:131;34365:4;34239:131;:::i;:::-;34231:139;;33958:419;;;:::o;34383:::-;34549:4;34587:2;34576:9;34572:18;34564:26;;34636:9;34630:4;34626:20;34622:1;34611:9;34607:17;34600:47;34664:131;34790:4;34664:131;:::i;:::-;34656:139;;34383:419;;;:::o;34808:::-;34974:4;35012:2;35001:9;34997:18;34989:26;;35061:9;35055:4;35051:20;35047:1;35036:9;35032:17;35025:47;35089:131;35215:4;35089:131;:::i;:::-;35081:139;;34808:419;;;:::o;35233:::-;35399:4;35437:2;35426:9;35422:18;35414:26;;35486:9;35480:4;35476:20;35472:1;35461:9;35457:17;35450:47;35514:131;35640:4;35514:131;:::i;:::-;35506:139;;35233:419;;;:::o;35658:::-;35824:4;35862:2;35851:9;35847:18;35839:26;;35911:9;35905:4;35901:20;35897:1;35886:9;35882:17;35875:47;35939:131;36065:4;35939:131;:::i;:::-;35931:139;;35658:419;;;:::o;36083:::-;36249:4;36287:2;36276:9;36272:18;36264:26;;36336:9;36330:4;36326:20;36322:1;36311:9;36307:17;36300:47;36364:131;36490:4;36364:131;:::i;:::-;36356:139;;36083:419;;;:::o;36508:::-;36674:4;36712:2;36701:9;36697:18;36689:26;;36761:9;36755:4;36751:20;36747:1;36736:9;36732:17;36725:47;36789:131;36915:4;36789:131;:::i;:::-;36781:139;;36508:419;;;:::o;36933:::-;37099:4;37137:2;37126:9;37122:18;37114:26;;37186:9;37180:4;37176:20;37172:1;37161:9;37157:17;37150:47;37214:131;37340:4;37214:131;:::i;:::-;37206:139;;36933:419;;;:::o;37358:::-;37524:4;37562:2;37551:9;37547:18;37539:26;;37611:9;37605:4;37601:20;37597:1;37586:9;37582:17;37575:47;37639:131;37765:4;37639:131;:::i;:::-;37631:139;;37358:419;;;:::o;37783:::-;37949:4;37987:2;37976:9;37972:18;37964:26;;38036:9;38030:4;38026:20;38022:1;38011:9;38007:17;38000:47;38064:131;38190:4;38064:131;:::i;:::-;38056:139;;37783:419;;;:::o;38208:222::-;38301:4;38339:2;38328:9;38324:18;38316:26;;38352:71;38420:1;38409:9;38405:17;38396:6;38352:71;:::i;:::-;38208:222;;;;:::o;38436:129::-;38470:6;38497:20;;:::i;:::-;38487:30;;38526:33;38554:4;38546:6;38526:33;:::i;:::-;38436:129;;;:::o;38571:75::-;38604:6;38637:2;38631:9;38621:19;;38571:75;:::o;38652:307::-;38713:4;38803:18;38795:6;38792:30;38789:56;;;38825:18;;:::i;:::-;38789:56;38863:29;38885:6;38863:29;:::i;:::-;38855:37;;38947:4;38941;38937:15;38929:23;;38652:307;;;:::o;38965:308::-;39027:4;39117:18;39109:6;39106:30;39103:56;;;39139:18;;:::i;:::-;39103:56;39177:29;39199:6;39177:29;:::i;:::-;39169:37;;39261:4;39255;39251:15;39243:23;;38965:308;;;:::o;39279:132::-;39346:4;39369:3;39361:11;;39399:4;39394:3;39390:14;39382:22;;39279:132;;;:::o;39417:141::-;39466:4;39489:3;39481:11;;39512:3;39509:1;39502:14;39546:4;39543:1;39533:18;39525:26;;39417:141;;;:::o;39564:114::-;39631:6;39665:5;39659:12;39649:22;;39564:114;;;:::o;39684:98::-;39735:6;39769:5;39763:12;39753:22;;39684:98;;;:::o;39788:99::-;39840:6;39874:5;39868:12;39858:22;;39788:99;;;:::o;39893:113::-;39963:4;39995;39990:3;39986:14;39978:22;;39893:113;;;:::o;40012:184::-;40111:11;40145:6;40140:3;40133:19;40185:4;40180:3;40176:14;40161:29;;40012:184;;;;:::o;40202:168::-;40285:11;40319:6;40314:3;40307:19;40359:4;40354:3;40350:14;40335:29;;40202:168;;;;:::o;40376:147::-;40477:11;40514:3;40499:18;;40376:147;;;;:::o;40529:169::-;40613:11;40647:6;40642:3;40635:19;40687:4;40682:3;40678:14;40663:29;;40529:169;;;;:::o;40704:148::-;40806:11;40843:3;40828:18;;40704:148;;;;:::o;40858:305::-;40898:3;40917:20;40935:1;40917:20;:::i;:::-;40912:25;;40951:20;40969:1;40951:20;:::i;:::-;40946:25;;41105:1;41037:66;41033:74;41030:1;41027:81;41024:107;;;41111:18;;:::i;:::-;41024:107;41155:1;41152;41148:9;41141:16;;40858:305;;;;:::o;41169:185::-;41209:1;41226:20;41244:1;41226:20;:::i;:::-;41221:25;;41260:20;41278:1;41260:20;:::i;:::-;41255:25;;41299:1;41289:35;;41304:18;;:::i;:::-;41289:35;41346:1;41343;41339:9;41334:14;;41169:185;;;;:::o;41360:348::-;41400:7;41423:20;41441:1;41423:20;:::i;:::-;41418:25;;41457:20;41475:1;41457:20;:::i;:::-;41452:25;;41645:1;41577:66;41573:74;41570:1;41567:81;41562:1;41555:9;41548:17;41544:105;41541:131;;;41652:18;;:::i;:::-;41541:131;41700:1;41697;41693:9;41682:20;;41360:348;;;;:::o;41714:191::-;41754:4;41774:20;41792:1;41774:20;:::i;:::-;41769:25;;41808:20;41826:1;41808:20;:::i;:::-;41803:25;;41847:1;41844;41841:8;41838:34;;;41852:18;;:::i;:::-;41838:34;41897:1;41894;41890:9;41882:17;;41714:191;;;;:::o;41911:96::-;41948:7;41977:24;41995:5;41977:24;:::i;:::-;41966:35;;41911:96;;;:::o;42013:104::-;42058:7;42087:24;42105:5;42087:24;:::i;:::-;42076:35;;42013:104;;;:::o;42123:90::-;42157:7;42200:5;42193:13;42186:21;42175:32;;42123:90;;;:::o;42219:149::-;42255:7;42295:66;42288:5;42284:78;42273:89;;42219:149;;;:::o;42374:126::-;42411:7;42451:42;42444:5;42440:54;42429:65;;42374:126;;;:::o;42506:77::-;42543:7;42572:5;42561:16;;42506:77;;;:::o;42589:141::-;42654:9;42687:37;42718:5;42687:37;:::i;:::-;42674:50;;42589:141;;;:::o;42736:126::-;42786:9;42819:37;42850:5;42819:37;:::i;:::-;42806:50;;42736:126;;;:::o;42868:113::-;42918:9;42951:24;42969:5;42951:24;:::i;:::-;42938:37;;42868:113;;;:::o;42987:154::-;43071:6;43066:3;43061;43048:30;43133:1;43124:6;43119:3;43115:16;43108:27;42987:154;;;:::o;43147:307::-;43215:1;43225:113;43239:6;43236:1;43233:13;43225:113;;;43324:1;43319:3;43315:11;43309:18;43305:1;43300:3;43296:11;43289:39;43261:2;43258:1;43254:10;43249:15;;43225:113;;;43356:6;43353:1;43350:13;43347:101;;;43436:1;43427:6;43422:3;43418:16;43411:27;43347:101;43196:258;43147:307;;;:::o;43460:320::-;43504:6;43541:1;43535:4;43531:12;43521:22;;43588:1;43582:4;43578:12;43609:18;43599:81;;43665:4;43657:6;43653:17;43643:27;;43599:81;43727:2;43719:6;43716:14;43696:18;43693:38;43690:84;;;43746:18;;:::i;:::-;43690:84;43511:269;43460:320;;;:::o;43786:281::-;43869:27;43891:4;43869:27;:::i;:::-;43861:6;43857:40;43999:6;43987:10;43984:22;43963:18;43951:10;43948:34;43945:62;43942:88;;;44010:18;;:::i;:::-;43942:88;44050:10;44046:2;44039:22;43829:238;43786:281;;:::o;44073:233::-;44112:3;44135:24;44153:5;44135:24;:::i;:::-;44126:33;;44181:66;44174:5;44171:77;44168:103;;;44251:18;;:::i;:::-;44168:103;44298:1;44291:5;44287:13;44280:20;;44073:233;;;:::o;44312:100::-;44351:7;44380:26;44400:5;44380:26;:::i;:::-;44369:37;;44312:100;;;:::o;44418:108::-;44465:7;44494:26;44514:5;44494:26;:::i;:::-;44483:37;;44418:108;;;:::o;44532:94::-;44571:7;44600:20;44614:5;44600:20;:::i;:::-;44589:31;;44532:94;;;:::o;44632:79::-;44671:7;44700:5;44689:16;;44632:79;;;:::o;44717:176::-;44749:1;44766:20;44784:1;44766:20;:::i;:::-;44761:25;;44800:20;44818:1;44800:20;:::i;:::-;44795:25;;44839:1;44829:35;;44844:18;;:::i;:::-;44829:35;44885:1;44882;44878:9;44873:14;;44717:176;;;;:::o;44899:180::-;44947:77;44944:1;44937:88;45044:4;45041:1;45034:15;45068:4;45065:1;45058:15;45085:180;45133:77;45130:1;45123:88;45230:4;45227:1;45220:15;45254:4;45251:1;45244:15;45271:180;45319:77;45316:1;45309:88;45416:4;45413:1;45406:15;45440:4;45437:1;45430:15;45457:180;45505:77;45502:1;45495:88;45602:4;45599:1;45592:15;45626:4;45623:1;45616:15;45643:180;45691:77;45688:1;45681:88;45788:4;45785:1;45778:15;45812:4;45809:1;45802:15;45829:180;45877:77;45874:1;45867:88;45974:4;45971:1;45964:15;45998:4;45995:1;45988:15;46015:117;46124:1;46121;46114:12;46138:117;46247:1;46244;46237:12;46261:117;46370:1;46367;46360:12;46384:117;46493:1;46490;46483:12;46507:117;46616:1;46613;46606:12;46630:117;46739:1;46736;46729:12;46753:102;46794:6;46845:2;46841:7;46836:2;46829:5;46825:14;46821:28;46811:38;;46753:102;;;:::o;46861:94::-;46894:8;46942:5;46938:2;46934:14;46913:35;;46861:94;;;:::o;46961:230::-;47101:34;47097:1;47089:6;47085:14;47078:58;47170:13;47165:2;47157:6;47153:15;47146:38;46961:230;:::o;47197:237::-;47337:34;47333:1;47325:6;47321:14;47314:58;47406:20;47401:2;47393:6;47389:15;47382:45;47197:237;:::o;47440:225::-;47580:34;47576:1;47568:6;47564:14;47557:58;47649:8;47644:2;47636:6;47632:15;47625:33;47440:225;:::o;47671:224::-;47811:34;47807:1;47799:6;47795:14;47788:58;47880:7;47875:2;47867:6;47863:15;47856:32;47671:224;:::o;47901:178::-;48041:30;48037:1;48029:6;48025:14;48018:54;47901:178;:::o;48085:223::-;48225:34;48221:1;48213:6;48209:14;48202:58;48294:6;48289:2;48281:6;48277:15;48270:31;48085:223;:::o;48314:175::-;48454:27;48450:1;48442:6;48438:14;48431:51;48314:175;:::o;48495:174::-;48635:26;48631:1;48623:6;48619:14;48612:50;48495:174;:::o;48675:231::-;48815:34;48811:1;48803:6;48799:14;48792:58;48884:14;48879:2;48871:6;48867:15;48860:39;48675:231;:::o;48912:243::-;49052:34;49048:1;49040:6;49036:14;49029:58;49121:26;49116:2;49108:6;49104:15;49097:51;48912:243;:::o;49161:167::-;49301:19;49297:1;49289:6;49285:14;49278:43;49161:167;:::o;49334:229::-;49474:34;49470:1;49462:6;49458:14;49451:58;49543:12;49538:2;49530:6;49526:15;49519:37;49334:229;:::o;49569:228::-;49709:34;49705:1;49697:6;49693:14;49686:58;49778:11;49773:2;49765:6;49761:15;49754:36;49569:228;:::o;49803:182::-;49943:34;49939:1;49931:6;49927:14;49920:58;49803:182;:::o;49991:231::-;50131:34;50127:1;50119:6;50115:14;50108:58;50200:14;50195:2;50187:6;50183:15;50176:39;49991:231;:::o;50228:182::-;50368:34;50364:1;50356:6;50352:14;50345:58;50228:182;:::o;50416:172::-;50556:24;50552:1;50544:6;50540:14;50533:48;50416:172;:::o;50594:234::-;50734:34;50730:1;50722:6;50718:14;50711:58;50803:17;50798:2;50790:6;50786:15;50779:42;50594:234;:::o;50834:163::-;50974:15;50970:1;50962:6;50958:14;50951:39;50834:163;:::o;51003:220::-;51143:34;51139:1;51131:6;51127:14;51120:58;51212:3;51207:2;51199:6;51195:15;51188:28;51003:220;:::o;51229:114::-;;:::o;51349:168::-;51489:20;51485:1;51477:6;51473:14;51466:44;51349:168;:::o;51523:236::-;51663:34;51659:1;51651:6;51647:14;51640:58;51732:19;51727:2;51719:6;51715:15;51708:44;51523:236;:::o;51765:231::-;51905:34;51901:1;51893:6;51889:14;51882:58;51974:14;51969:2;51961:6;51957:15;51950:39;51765:231;:::o;52002:177::-;52142:29;52138:1;52130:6;52126:14;52119:53;52002:177;:::o;52185:122::-;52258:24;52276:5;52258:24;:::i;:::-;52251:5;52248:35;52238:63;;52297:1;52294;52287:12;52238:63;52185:122;:::o;52313:116::-;52383:21;52398:5;52383:21;:::i;:::-;52376:5;52373:32;52363:60;;52419:1;52416;52409:12;52363:60;52313:116;:::o;52435:120::-;52507:23;52524:5;52507:23;:::i;:::-;52500:5;52497:34;52487:62;;52545:1;52542;52535:12;52487:62;52435:120;:::o;52561:122::-;52634:24;52652:5;52634:24;:::i;:::-;52627:5;52624:35;52614:63;;52673:1;52670;52663:12;52614:63;52561:122;:::o
Swarm Source
ipfs://d5eac459d58793115c17c9eebf9de7ae1e49ef2839e6d978ded933bcfa84d57d
Loading...
Loading
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
CRONOS | 100.00% | $0.109325 | 605 | $66.14 |
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.