CRO Price: $0.08 (-0.25%)

Token

Elemental Wizards (Wizards)

Overview

Max Total Supply

500 Wizards

Holders

148

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Balance
26 Wizards
0x18f3bd138b6a272180a5c173ffe25288de9fc366
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
ElementalWizards

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 4 of 18: ElementalWizards.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "./ERC721.sol";
import "./ERC721Enumerable.sol";
import "./ReentrancyGuard.sol";
import "./AccessControl.sol";
import "./IElementalWizards.sol";


contract ElementalWizards is IElementalWizards, ERC721, ERC721Enumerable, AccessControl,ReentrancyGuard {
    bytes32 public constant WIZARDS_MODIFIER = keccak256("WIZARDS_MODIFIER");
    string private _uri;
    address public DistributorWallet;
    address public MagicFarmWallet;
    uint256 public MintingPrice=350*1e18;
    uint256 public HighestSell;
    uint256 public TotalVolume;
    uint Farmfee = 200;
    uint Distfee = 400;
    uint public TotalWizardsSold;
    uint256 WizardCounter;
    uint public maxWizards = 150;
    constructor(address _MagicFarm,address _DistributorWallet) ERC721("Elemental Wizards", "Wizards") {
        DistributorWallet = _DistributorWallet;
        MagicFarmWallet = _MagicFarm;
        _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _grantRole(WIZARDS_MODIFIER, msg.sender);
        wizards.push(Wizard("",0,0,0,0,0,0,0,0,0,0,0));
        wizardEquipment.push(WizardEquipment(0,0,0,0,0));
      }
    
    
    mapping (uint=>uint) public wizardOnSale;
    mapping (uint=>uint) public InitialAttributePoints;
    mapping (uint=>bool) public initialized;
    WizardEquipment[] public wizardEquipment;
    Wizard[] public wizards;

    function wizPrice(uint newPrice) public onlyRole(DEFAULT_ADMIN_ROLE) {
        MintingPrice = newPrice;
    }
    function maxWiz(uint newmax) public onlyRole(DEFAULT_ADMIN_ROLE) {
        maxWizards = newmax;
    }
    function newfee(address account) public onlyRole(DEFAULT_ADMIN_ROLE){
       DistributorWallet = account;
    }
    function changefee(uint _farm,uint _distr) public onlyRole(DEFAULT_ADMIN_ROLE){
       Farmfee = _farm;
       Distfee = _distr;
    }
      function MintWizardsForGiveAway(uint256 amount) public onlyRole(DEFAULT_ADMIN_ROLE) {
        require((WizardCounter+amount) <= maxWizards);
        for (uint i=0;  i<amount; i++) {
        _safeMint(msg.sender, WizardCounter+1);
        wizards.push(Wizard("",0,0,1,0,0,0,0,0,0,0,0));
        wizardEquipment.push(WizardEquipment(0,0,0,0,0));
        WizardCounter += 1;
        emit WizardMinted(WizardCounter,msg.sender);
        }
    }
       
    function MintWizard(address to,uint256 amount) public payable {
        require(amount<=3);
        uint256 Value = amount*MintingPrice;
        require(msg.value == Value);
        require((WizardCounter+amount) <= maxWizards);
        for (uint i=0;  i<amount; i++) {
        _safeMint(to, WizardCounter+1);
        WizardCounter += 1;
        wizards.push(Wizard("",0,0,1,0,0,0,0,0,0,0,0));
        wizardEquipment.push(WizardEquipment(0,0,0,0,0));
        emit WizardMinted(WizardCounter,to);
        }
        payable(DistributorWallet).transfer(Value);
    }
    
    function changeName(
        uint WizardId,
        string memory newName
    ) external override onlyRole(WIZARDS_MODIFIER){
       Wizard storage wizard = wizards[WizardId];
       wizard.name = newName;
       emit NameChanged(WizardId,newName);
    }

     // The following functions are overrides required by Solidity.

    function _beforeTokenTransfer(address from, address to, uint256 tokenId, uint256 batchSize)
        internal
        override(ERC721, ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId, batchSize);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable, AccessControl)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
    
     function setBaseURI(string memory baseURI) external onlyRole(DEFAULT_ADMIN_ROLE) {
        _uri = baseURI;
    }


    function _baseURI() internal view override returns (string memory) {
        return _uri;
    }
    
    function initializeStats
    (uint WizardId, 
    uint _element,
    uint _AttributePoints) 
    external onlyRole(DEFAULT_ADMIN_ROLE) {
        Wizard storage wizard = wizards[WizardId];
        wizard.Element = _element;
        wizard.MaxStamina = 3;
        wizard.CurrentStamina = 3;
        wizard.CurrentAttributePoints = _AttributePoints;
        InitialAttributePoints[WizardId] = _AttributePoints;
        initialized[WizardId] = true;
    }
    
    function ChangeInitialAttribute
    (uint WizardId,
    uint _AttributePoints) 
    external onlyRole(DEFAULT_ADMIN_ROLE) {
        InitialAttributePoints[WizardId] = _AttributePoints;
    }

    function LevelUp (uint WizardId,uint amount) external override onlyRole(WIZARDS_MODIFIER) {
        Wizard storage wizard = wizards[WizardId];
        wizard.Level = wizard.Level + amount;
        emit levelUp(WizardId,wizard.Level);
    }
    
    function SetStats(uint WizardId,uint MagicAttack,uint Armor,uint CriticalChance,uint Speed,uint CastingSpeed) public override onlyRole(WIZARDS_MODIFIER) {
        require(initialized[WizardId] == true);
        Wizard storage wizard = wizards[WizardId];
        wizard.MagicAttack = MagicAttack;
        wizard.Armor = Armor;
        wizard.CriticalChance = CriticalChance;
        wizard.Speed = Speed;
        wizard.CastingSpeed = CastingSpeed;
    }  
    
    function SetAtributePoints(uint WizardId,uint amount) external override onlyRole(WIZARDS_MODIFIER) {
        Wizard storage wizard = wizards[WizardId];
        wizard.CurrentAttributePoints = amount;
    }
    
    function IncreaseMaxStamina(uint WizardId,uint amount) external override onlyRole(WIZARDS_MODIFIER) {
        Wizard storage wizard = wizards[WizardId];
        wizard.MaxStamina = wizard.MaxStamina + amount;
    }

      function IncreaseStamina(uint WizardId,uint amount) external override onlyRole(WIZARDS_MODIFIER) {
        Wizard storage wizard = wizards[WizardId];
        wizard.CurrentStamina = wizard.CurrentStamina + amount;
    }

      function DecreaseStamina(uint WizardId,uint amount) external override onlyRole(WIZARDS_MODIFIER) {
          Wizard storage wizard = wizards[WizardId];
          wizard.CurrentStamina = wizard.CurrentStamina - amount;
    }
    
    function ChangeMainWeapon(uint WizardId,uint weaponId) external override onlyRole(WIZARDS_MODIFIER) {
       require(wizardOnSale[WizardId] == 0);
       WizardEquipment storage wizardgear = wizardEquipment[WizardId];
       wizardgear.MainWeapon = weaponId;
    }
    
    function ChangeCape(uint WizardId,uint CapeId) external override onlyRole(WIZARDS_MODIFIER) {
       require(wizardOnSale[WizardId] == 0);
       WizardEquipment storage wizardgear = wizardEquipment[WizardId];
       wizardgear.Cape = CapeId;
    }
    
    function ChangeHat(uint WizardId,uint HatId) external override onlyRole(WIZARDS_MODIFIER) {
       require(wizardOnSale[WizardId] == 0);
       WizardEquipment storage wizardgear = wizardEquipment[WizardId];
       wizardgear.Hat = HatId;
    }

    function ChangeFootwear(uint WizardId,uint FootwearId) external override onlyRole(WIZARDS_MODIFIER) {
       require(wizardOnSale[WizardId] == 0);
       WizardEquipment storage wizardgear = wizardEquipment[WizardId];
       wizardgear.Footwear = FootwearId;
    }

    function ChangeGloves(uint WizardId,uint GlovesId) external override onlyRole(WIZARDS_MODIFIER) {
       require(wizardOnSale[WizardId] == 0);
       WizardEquipment storage wizardgear = wizardEquipment[WizardId];
       wizardgear.Gloves = GlovesId;
    }

    function IncreaseExp(uint WizardId,uint amount) external override onlyRole(WIZARDS_MODIFIER) {
        Wizard storage wizard = wizards[WizardId];
        wizard.CurrentExp = wizard.CurrentExp + amount;
    }

    function DecreaseExp(uint WizardId,uint amount) external override onlyRole(WIZARDS_MODIFIER) {
        Wizard storage wizard = wizards[WizardId];
        wizard.CurrentExp = wizard.CurrentExp - amount;
    }
    
    function getMWeapon(uint WizardId) public view override returns (uint MWeapon) {
        return wizardEquipment[WizardId].MainWeapon;
    }

    function getTotalWizards() public view override returns(uint length){
        return WizardCounter;
    }
    function GetExp(uint WizardId) public view override returns(uint _currentExp) {
       return wizards[WizardId].CurrentExp;
    }
    
     function GetCurrentStamina(uint WizardId) public view override returns(uint _currentStamina) {
       return wizards[WizardId].CurrentStamina;
    }

    function GetMaxStamina(uint WizardId) public view override returns(uint _maxStamina) {
       return wizards[WizardId].MaxStamina;
    }

    function GetAttributePoints(uint WizardId) public view override returns(uint AttributePoints) {
      return wizards[WizardId].CurrentAttributePoints;
    }
    
     function GetInitialAttributePoints(uint WizardId) public view override returns(uint AttributePoints){
        AttributePoints = InitialAttributePoints[WizardId];
    } 

    function GetLevel(uint WizardId) public view override returns(uint _currentlevel) {
       return wizards[WizardId].Level;
    }
    
    function getName(uint WizardId) public view override returns(string memory _name) {
      return wizards[WizardId].name;
    }
    
     function getWizard(uint WizardId) public view override returns (Wizard memory wizard) {
        return wizards[WizardId];
    }

    function GetFightingStats(uint WizardId) public view override returns(
        uint MagicAttack,
        uint Armor,
        uint CriticalChance,
        uint Speed,
        uint CastingSpeed
        ){
        Wizard memory wizard = wizards[WizardId];
        MagicAttack = wizard.MagicAttack;
        Armor = wizard.Armor;
        CriticalChance = wizard.CriticalChance;
        Speed = wizard.Speed;
        CastingSpeed = wizard.CastingSpeed;
    }
    
    function GetEquipment (uint WizardId) public view override returns(
        uint _MainWeapon,
        uint _Cape,
        uint _Hat,
        uint _Footwear,
        uint _Gloves
    ){
        WizardEquipment memory wizardgear = wizardEquipment[WizardId];
        _MainWeapon = wizardgear.MainWeapon;
        _Cape = wizardgear.Cape;
        _Hat = wizardgear.Hat;
        _Footwear = wizardgear.Footwear;
        _Gloves = wizardgear.Gloves;
    }
    
    function FetchAllWizardsEquipment(uint cursor) public view returns (WizardEquipment[] memory) {
        uint start_point = cursor*500 + 1;
        uint end_point;
        WizardCounter < start_point + 499 ? end_point = WizardCounter : end_point = start_point + 499;
        uint TotalWizards = end_point - start_point + 1;
        WizardEquipment[] memory AllEquipment = new WizardEquipment[](TotalWizards);
        uint currentindex;
        for (uint i = start_point; i <= end_point; i++) {
         WizardEquipment storage equipment = wizardEquipment[i];
         AllEquipment[currentindex] = equipment;
         currentindex += 1;
        }
        return AllEquipment;
    }
    
     function FetchAllWizards(uint cursor) public view returns (Wizard[] memory) {
        
        uint start_point = cursor*500 + 1;
        uint end_point;
        WizardCounter < start_point + 499 ? end_point = WizardCounter : end_point = start_point + 499;
        uint TotalWizards = end_point - start_point + 1;
        Wizard[] memory AllWizards = new Wizard[](TotalWizards);
        uint currentindex;
        for (uint i = start_point; i <= end_point; i++) {
         Wizard storage wizard = wizards[i];
         AllWizards[currentindex] = wizard;
        currentindex += 1;
        }
        return AllWizards;
    }
    
    function FetchWizardsPrice(uint cursor) public view returns (uint[] memory) {
        uint start_point = cursor*500 + 1;
        uint end_point;
        WizardCounter < start_point + 499 ? end_point = WizardCounter : end_point = start_point + 499;
        uint TotalWizards = end_point - start_point + 1;
        uint[] memory AllWizardsPrices = new uint[](TotalWizards);
        uint currentindex;
        for (uint i = start_point; i <= end_point; i++) {
         uint wizardPrice = wizardOnSale[i];
         AllWizardsPrices[currentindex] = wizardPrice;
         currentindex += 1;
        }
        return AllWizardsPrices;
    }

    function list(uint wizardId, uint price) external override {
        require(ownerOf(wizardId) == msg.sender);
        wizardOnSale[wizardId] = price;
        emit WizardListed(wizardId,price);
    }

    function delist(uint wizardId) external override {
        require(ownerOf(wizardId) == msg.sender);
        require(wizardOnSale[wizardId] > 0);
        wizardOnSale[wizardId] = 0;
        emit WizardDelisted(wizardId);
    }

    function BuyWizard(uint wizardId) external override payable nonReentrant{
        uint price = wizardOnSale[wizardId];
        address seller = ownerOf(wizardId);
        address buyer = msg.sender;
        require(price > 0);
        require(msg.value == price);
        require(buyer != seller);
        wizardOnSale[wizardId] = 0;
        TotalWizardsSold = TotalWizardsSold + 1;
        TotalVolume = TotalVolume + msg.value;
        msg.value > HighestSell ? HighestSell = msg.value : 0;
        uint256 CROforMagicFarm = msg.value*Farmfee/10000;
        uint256 CROforDistribution = msg.value*Distfee/10000;
        uint256 CROforSeller = msg.value-CROforMagicFarm-CROforDistribution;
        payable(seller).transfer(CROforSeller);
        payable(MagicFarmWallet).transfer(CROforMagicFarm);
        payable(DistributorWallet).transfer(CROforDistribution);
        _transfer(seller, buyer, wizardId);
        emit WizardBought(wizardId,buyer,seller,price);
    }

}

File 1 of 18: AccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;

import "./IAccessControl.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(account),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleGranted} event.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleRevoked} event.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     *
     * May emit a {RoleRevoked} event.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * May emit a {RoleGranted} event.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

File 2 of 18: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.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 functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 3 of 18: Context.sol
// SPDX-License-Identifier: MIT
// 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 5 of 18: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 6 of 18: ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

/**
 * @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: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 token owner or approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token owner or 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: caller is not token owner or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @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 _ownerOf(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) {
        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, 1);

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId, 1);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId, 1);

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId, 1);
    }

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

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

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

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 /* firstTokenId */,
        uint256 batchSize
    ) internal virtual {
        if (batchSize > 1) {
            if (from != address(0)) {
                _balances[from] -= batchSize;
            }
            if (to != address(0)) {
                _balances[to] += batchSize;
            }
        }
    }

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}
}

File 7 of 18: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @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 See {ERC721-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, firstTokenId, batchSize);

        if (batchSize > 1) {
            // Will only trigger during construction. Batch transferring (minting) is not available afterwards.
            revert("ERC721Enumerable: consecutive transfers not supported");
        }

        uint256 tokenId = firstTokenId;

        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 8 of 18: IAccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

File 9 of 18: IElementalWizards.sol
//SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

interface IElementalWizards {
    struct Wizard {
        string name;
        uint Element;
        uint CurrentExp;
        uint Level;
        uint CurrentAttributePoints;
        uint CurrentStamina;
        uint MaxStamina;
        uint MagicAttack;
        uint Armor;
        uint CriticalChance;
        uint Speed;
        uint CastingSpeed;
    }
    
    struct WizardEquipment {
        uint MainWeapon;
        uint Cape;
        uint Hat;
        uint Footwear;
        uint Gloves;
    }
    
    event WizardListed(uint indexed WizardID,uint Price);
    event WizardDelisted(uint indexed WizardID);
    event WizardBought(uint indexed WizardID, address buyer, address seller, uint price);
    event WizardMinted(uint indexed WizardID, address indexed Minter);
    event levelUp(uint indexed WizardID, uint lvl);
    event NameChanged(uint indexed WizardID, string newName);
    
    function getTotalWizards() external view returns(uint length);
    
    function GetAttributePoints(uint WizardId) external view returns(uint AttributePoints);
    
    function GetInitialAttributePoints(uint WizardId) external view returns(uint InitialAttributePoints);

    function changeName(uint WizardId,string memory newName) external;
   
    function GetCurrentStamina(uint WizardId) external view returns(uint _currentStamina);

    function GetMaxStamina(uint WizardId) external view returns(uint _maxStamina);

    function GetExp(uint WizardId) external view returns(uint _currentExp);

    function GetLevel(uint WizardId) external view returns(uint _currentlevel);
    
    function list(uint wizardId, uint price) external;

    function delist(uint wizardId) external;

    function BuyWizard(uint wizardId) external payable;

    function ChangeMainWeapon(uint WizardId,uint weaponId) external;

    function ChangeCape(uint WizardId,uint CapeId) external;

    function ChangeHat(uint WizardId,uint HatId) external;

    function ChangeFootwear(uint WizardId,uint FootwearId) external;

    function ChangeGloves(uint WizardId,uint GlovesId) external;

    function getWizard(uint WizardId) external view returns (Wizard memory wizard);

    function LevelUp (uint WizardId,uint amount) external;
    
    function IncreaseMaxStamina(uint WizardId,uint amount) external;

    function IncreaseStamina(uint WizardId,uint amount) external;

    function DecreaseStamina(uint WizardId,uint amount) external;

    function IncreaseExp(uint WizardId,uint amount) external;

    function DecreaseExp(uint WizardId,uint amount) external;

    function SetAtributePoints(uint WizardId,uint amount) external;

    function SetStats(uint WizardId,uint MagicAttack,uint Armor,uint CriticalChance,uint Speed,uint CastingSpeed) external;
    
    function getName(uint WizardId) external view returns(string memory _name);

    function GetFightingStats(uint WizardId) external view returns(
        uint MagicAttack,
        uint Armor,
        uint CriticalChance,
        uint Speed,
        uint CastingSpeed
        );

    
    function getMWeapon(uint WizardId) external view returns (uint MWeapon);

    function GetEquipment (uint WizardId) external view returns(
        uint _MainWeapon,
        uint _Cape,
        uint _Hat,
        uint _Footwear,
        uint _Gloves
    );
    
}

File 10 of 18: IERC165.sol
// SPDX-License-Identifier: MIT
// 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 11 of 18: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

File 12 of 18: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @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 13 of 18: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @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 14 of 18: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// 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 15 of 18: Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 16 of 18: ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

File 17 of 18: SignedMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

File 18 of 18: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./Math.sol";
import "./SignedMath.sol";

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

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

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

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_MagicFarm","type":"address"},{"internalType":"address","name":"_DistributorWallet","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":"uint256","name":"WizardID","type":"uint256"},{"indexed":false,"internalType":"string","name":"newName","type":"string"}],"name":"NameChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"WizardID","type":"uint256"},{"indexed":false,"internalType":"address","name":"buyer","type":"address"},{"indexed":false,"internalType":"address","name":"seller","type":"address"},{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"}],"name":"WizardBought","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"WizardID","type":"uint256"}],"name":"WizardDelisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"WizardID","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"Price","type":"uint256"}],"name":"WizardListed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"WizardID","type":"uint256"},{"indexed":true,"internalType":"address","name":"Minter","type":"address"}],"name":"WizardMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"WizardID","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lvl","type":"uint256"}],"name":"levelUp","type":"event"},{"inputs":[{"internalType":"uint256","name":"wizardId","type":"uint256"}],"name":"BuyWizard","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"WizardId","type":"uint256"},{"internalType":"uint256","name":"CapeId","type":"uint256"}],"name":"ChangeCape","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"WizardId","type":"uint256"},{"internalType":"uint256","name":"FootwearId","type":"uint256"}],"name":"ChangeFootwear","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"WizardId","type":"uint256"},{"internalType":"uint256","name":"GlovesId","type":"uint256"}],"name":"ChangeGloves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"WizardId","type":"uint256"},{"internalType":"uint256","name":"HatId","type":"uint256"}],"name":"ChangeHat","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"WizardId","type":"uint256"},{"internalType":"uint256","name":"_AttributePoints","type":"uint256"}],"name":"ChangeInitialAttribute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"WizardId","type":"uint256"},{"internalType":"uint256","name":"weaponId","type":"uint256"}],"name":"ChangeMainWeapon","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"WizardId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"DecreaseExp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"WizardId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"DecreaseStamina","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"DistributorWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"cursor","type":"uint256"}],"name":"FetchAllWizards","outputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"uint256","name":"Element","type":"uint256"},{"internalType":"uint256","name":"CurrentExp","type":"uint256"},{"internalType":"uint256","name":"Level","type":"uint256"},{"internalType":"uint256","name":"CurrentAttributePoints","type":"uint256"},{"internalType":"uint256","name":"CurrentStamina","type":"uint256"},{"internalType":"uint256","name":"MaxStamina","type":"uint256"},{"internalType":"uint256","name":"MagicAttack","type":"uint256"},{"internalType":"uint256","name":"Armor","type":"uint256"},{"internalType":"uint256","name":"CriticalChance","type":"uint256"},{"internalType":"uint256","name":"Speed","type":"uint256"},{"internalType":"uint256","name":"CastingSpeed","type":"uint256"}],"internalType":"struct IElementalWizards.Wizard[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"cursor","type":"uint256"}],"name":"FetchAllWizardsEquipment","outputs":[{"components":[{"internalType":"uint256","name":"MainWeapon","type":"uint256"},{"internalType":"uint256","name":"Cape","type":"uint256"},{"internalType":"uint256","name":"Hat","type":"uint256"},{"internalType":"uint256","name":"Footwear","type":"uint256"},{"internalType":"uint256","name":"Gloves","type":"uint256"}],"internalType":"struct IElementalWizards.WizardEquipment[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"cursor","type":"uint256"}],"name":"FetchWizardsPrice","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"WizardId","type":"uint256"}],"name":"GetAttributePoints","outputs":[{"internalType":"uint256","name":"AttributePoints","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"WizardId","type":"uint256"}],"name":"GetCurrentStamina","outputs":[{"internalType":"uint256","name":"_currentStamina","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"WizardId","type":"uint256"}],"name":"GetEquipment","outputs":[{"internalType":"uint256","name":"_MainWeapon","type":"uint256"},{"internalType":"uint256","name":"_Cape","type":"uint256"},{"internalType":"uint256","name":"_Hat","type":"uint256"},{"internalType":"uint256","name":"_Footwear","type":"uint256"},{"internalType":"uint256","name":"_Gloves","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"WizardId","type":"uint256"}],"name":"GetExp","outputs":[{"internalType":"uint256","name":"_currentExp","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"WizardId","type":"uint256"}],"name":"GetFightingStats","outputs":[{"internalType":"uint256","name":"MagicAttack","type":"uint256"},{"internalType":"uint256","name":"Armor","type":"uint256"},{"internalType":"uint256","name":"CriticalChance","type":"uint256"},{"internalType":"uint256","name":"Speed","type":"uint256"},{"internalType":"uint256","name":"CastingSpeed","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"WizardId","type":"uint256"}],"name":"GetInitialAttributePoints","outputs":[{"internalType":"uint256","name":"AttributePoints","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"WizardId","type":"uint256"}],"name":"GetLevel","outputs":[{"internalType":"uint256","name":"_currentlevel","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"WizardId","type":"uint256"}],"name":"GetMaxStamina","outputs":[{"internalType":"uint256","name":"_maxStamina","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"HighestSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"WizardId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"IncreaseExp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"WizardId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"IncreaseMaxStamina","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"WizardId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"IncreaseStamina","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"InitialAttributePoints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"WizardId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"LevelUp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"MagicFarmWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MintWizard","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MintWizardsForGiveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"MintingPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"WizardId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SetAtributePoints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"WizardId","type":"uint256"},{"internalType":"uint256","name":"MagicAttack","type":"uint256"},{"internalType":"uint256","name":"Armor","type":"uint256"},{"internalType":"uint256","name":"CriticalChance","type":"uint256"},{"internalType":"uint256","name":"Speed","type":"uint256"},{"internalType":"uint256","name":"CastingSpeed","type":"uint256"}],"name":"SetStats","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"TotalVolume","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TotalWizardsSold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WIZARDS_MODIFIER","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"WizardId","type":"uint256"},{"internalType":"string","name":"newName","type":"string"}],"name":"changeName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_farm","type":"uint256"},{"internalType":"uint256","name":"_distr","type":"uint256"}],"name":"changefee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"wizardId","type":"uint256"}],"name":"delist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"WizardId","type":"uint256"}],"name":"getMWeapon","outputs":[{"internalType":"uint256","name":"MWeapon","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"WizardId","type":"uint256"}],"name":"getName","outputs":[{"internalType":"string","name":"_name","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalWizards","outputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"WizardId","type":"uint256"}],"name":"getWizard","outputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"uint256","name":"Element","type":"uint256"},{"internalType":"uint256","name":"CurrentExp","type":"uint256"},{"internalType":"uint256","name":"Level","type":"uint256"},{"internalType":"uint256","name":"CurrentAttributePoints","type":"uint256"},{"internalType":"uint256","name":"CurrentStamina","type":"uint256"},{"internalType":"uint256","name":"MaxStamina","type":"uint256"},{"internalType":"uint256","name":"MagicAttack","type":"uint256"},{"internalType":"uint256","name":"Armor","type":"uint256"},{"internalType":"uint256","name":"CriticalChance","type":"uint256"},{"internalType":"uint256","name":"Speed","type":"uint256"},{"internalType":"uint256","name":"CastingSpeed","type":"uint256"}],"internalType":"struct IElementalWizards.Wizard","name":"wizard","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"WizardId","type":"uint256"},{"internalType":"uint256","name":"_element","type":"uint256"},{"internalType":"uint256","name":"_AttributePoints","type":"uint256"}],"name":"initializeStats","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"wizardId","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"}],"name":"list","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newmax","type":"uint256"}],"name":"maxWiz","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxWizards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"newfee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"uint256","name":"newPrice","type":"uint256"}],"name":"wizPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"wizardEquipment","outputs":[{"internalType":"uint256","name":"MainWeapon","type":"uint256"},{"internalType":"uint256","name":"Cape","type":"uint256"},{"internalType":"uint256","name":"Hat","type":"uint256"},{"internalType":"uint256","name":"Footwear","type":"uint256"},{"internalType":"uint256","name":"Gloves","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"wizardOnSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"wizards","outputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"uint256","name":"Element","type":"uint256"},{"internalType":"uint256","name":"CurrentExp","type":"uint256"},{"internalType":"uint256","name":"Level","type":"uint256"},{"internalType":"uint256","name":"CurrentAttributePoints","type":"uint256"},{"internalType":"uint256","name":"CurrentStamina","type":"uint256"},{"internalType":"uint256","name":"MaxStamina","type":"uint256"},{"internalType":"uint256","name":"MagicAttack","type":"uint256"},{"internalType":"uint256","name":"Armor","type":"uint256"},{"internalType":"uint256","name":"CriticalChance","type":"uint256"},{"internalType":"uint256","name":"Speed","type":"uint256"},{"internalType":"uint256","name":"CastingSpeed","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040526812f939c99edab80000600f5560c860125561019060135560966016553480156200002e57600080fd5b5060405162004ee938038062004ee983398101604081905262000051916200041b565b60405180604001604052806011815260200170456c656d656e74616c2057697a6172647360781b8152506040518060400160405280600781526020016657697a6172647360c81b8152508160009081620000ac9190620004f8565b506001620000bb8282620004f8565b50506001600b5550600d80546001600160a01b038084166001600160a01b031992831617909255600e8054928516929091169190911790556200010060003362000359565b6200012c7f59c0d2a11c10bba550df025acfaaa45dd8a81d6a494812c6b505a8d87cd62f4d3362000359565b604080516101a08101825260006101808201818152825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081018290526101008101829052610120810182905261014081018290526101608101829052601b8054600181018255925280519091600c027f3ad8aa4f87544323a9d1e5dd902f40c356527a7955687113db5f9a85ad579dc101908190620001d79082620004f8565b5060208281015160018084019190915560408085015160028501556060808601516003860155608080870151600487015560a08088015160058089019190915560c0890151600689015560e0890151600789015561010089015160088901556101208901516009890155610140890151600a89015561016090980151600b90970196909655825195860183526000808752948601858152928601858152918601858152908601858152601a805495860181559095529451929095027f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff63e810192909255517f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff63f82015592517f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff64084015590517f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff641830155517f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff6429091015550620005c49050565b6000828152600a602090815260408083206001600160a01b038516845290915290205460ff16620003fa576000828152600a602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620003b93390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b80516001600160a01b03811681146200041657600080fd5b919050565b600080604083850312156200042f57600080fd5b6200043a83620003fe565b91506200044a60208401620003fe565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200047e57607f821691505b6020821081036200049f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004f357600081815260208120601f850160051c81016020861015620004ce5750805b601f850160051c820191505b81811015620004ef57828155600101620004da565b5050505b505050565b81516001600160401b0381111562000514576200051462000453565b6200052c8162000525845462000469565b84620004a5565b602080601f8311600181146200056457600084156200054b5750858301515b600019600386901b1c1916600185901b178555620004ef565b600085815260208120601f198616915b82811015620005955788860151825594840194600190910190840162000574565b5085821015620005b45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61491580620005d46000396000f3fe6080604052600436106104475760003560e01c806383838d1211610234578063bd1e2a611161012e578063e985e9c5116100b6578063f43e36bf1161007a578063f43e36bf14610dd6578063f4f8f7c714610df6578063f9ce0ad714610e16578063fac8eafc14610e2c578063facb347614610e5957600080fd5b8063e985e9c514610d00578063ea35d74a14610d49578063ec56a1ea14610d69578063ee95758114610d89578063f3847fa714610da957600080fd5b8063d547741f116100fd578063d547741f14610c5e578063d58686e214610c7e578063d8c0884214610c9e578063dfb98ff214610cc0578063e239df6a14610ce057600080fd5b8063bd1e2a6114610bde578063c39cbef114610bfe578063c87b56dd14610c1e578063ca4f971914610c3e57600080fd5b8063a217fddf116101bc578063b0eed65f11610180578063b0eed65f14610b3e578063b33f90b114610b5e578063b42a5a3b14610b7e578063b562938614610b9e578063b88d4fde14610bbe57600080fd5b8063a217fddf14610a9c578063a22cb46514610ab1578063a37d33ed14610ad1578063a890753914610af1578063ae32441f14610b1e57600080fd5b806395d89b411161020357806395d89b4114610a01578063964bc33f14610a165780639797116014610a3657806399f45add14610a665780639f1f619d14610a8657600080fd5b806383838d121461098e5780638fa65bc9146109ae57806390a15776146109c157806391d14854146109e157600080fd5b806335051b58116103455780634fbfe712116102cd5780636352211e116102915780636352211e146108ec5780636b8ff5741461090c57806370a082311461092c57806374b3112b1461094c57806375e333c71461096157600080fd5b80634fbfe7121461085657806350fd73671461086957806355f804b3146108895780635cd2dd9b146108a9578063627a308c146108d657600080fd5b8063417c989511610314578063417c9895146107c057806342842e0e146107e057806343602684146108005780634bc922cf146108205780634f6ccce71461083657600080fd5b806335051b581461074057806336568abe1461076057806339bb960b146107805780633b7ca85b146107a057600080fd5b806316b282cf116103d3578063248a9ca311610397578063248a9ca31461068d57806324bd81a5146106bd5780632f2ff15d146106d35780632f745c59146106f357806331163be11461071357600080fd5b806316b282cf146105ea578063175095931461060a57806318160ddd146106385780631c3f74721461064d57806323b872dd1461066d57600080fd5b8063095ea7b31161041a578063095ea7b3146104fd5780630b6238391461051d5780630d0ae459146105655780630d7f6c0e146105925780630fa86617146105b257600080fd5b806301ffc9a71461044c57806305381dcb1461048157806306fdde03146104a3578063081812fc146104c5575b600080fd5b34801561045857600080fd5b5061046c610467366004613eaa565b610e79565b60405190151581526020015b60405180910390f35b34801561048d57600080fd5b506104a161049c366004613ec7565b610e8a565b005b3480156104af57600080fd5b506104b8611158565b6040516104789190613f30565b3480156104d157600080fd5b506104e56104e0366004613ec7565b6111ea565b6040516001600160a01b039091168152602001610478565b34801561050957600080fd5b506104a1610518366004613f5f565b611211565b34801561052957600080fd5b5061053d610538366004613ec7565b611326565b604080519586526020860194909452928401919091526060830152608082015260a001610478565b34801561057157600080fd5b50610585610580366004613ec7565b61148f565b6040516104789190614022565b34801561059e57600080fd5b506104a16105ad366004614084565b6116d4565b3480156105be57600080fd5b506105d26105cd366004613ec7565b611736565b6040516104789c9b9a999897969594939291906140a6565b3480156105f657600080fd5b506104a1610605366004614084565b61182e565b34801561061657600080fd5b5061062a610625366004613ec7565b611886565b604051908152602001610478565b34801561064457600080fd5b5060085461062a565b34801561065957600080fd5b506104a1610668366004614084565b6118b4565b34801561067957600080fd5b506104a161068836600461410f565b611913565b34801561069957600080fd5b5061062a6106a8366004613ec7565b6000908152600a602052604090206001015490565b3480156106c957600080fd5b5061062a600f5481565b3480156106df57600080fd5b506104a16106ee36600461414b565b611944565b3480156106ff57600080fd5b5061062a61070e366004613f5f565b611969565b34801561071f57600080fd5b5061062a61072e366004613ec7565b60186020526000908152604090205481565b34801561074c57600080fd5b5061062a61075b366004613ec7565b6119ff565b34801561076c57600080fd5b506104a161077b36600461414b565b611a2d565b34801561078c57600080fd5b506104a161079b366004614084565b611aab565b3480156107ac57600080fd5b506104a16107bb366004614084565b611af4565b3480156107cc57600080fd5b5061053d6107db366004613ec7565b611b84565b3480156107ec57600080fd5b506104a16107fb36600461410f565b611bc5565b34801561080c57600080fd5b506104a161081b366004614177565b611be0565b34801561082c57600080fd5b5061062a60115481565b34801561084257600080fd5b5061062a610851366004613ec7565b611c0e565b6104a1610864366004613f5f565b611ca1565b34801561087557600080fd5b506104a1610884366004614084565b611fcd565b34801561089557600080fd5b506104a16108a436600461423e565b61203b565b3480156108b557600080fd5b506108c96108c4366004613ec7565b612052565b6040516104789190614273565b3480156108e257600080fd5b5061062a60145481565b3480156108f857600080fd5b506104e5610907366004613ec7565b6121e6565b34801561091857600080fd5b506104b8610927366004613ec7565b612246565b34801561093857600080fd5b5061062a610947366004614177565b6122fc565b34801561095857600080fd5b5060155461062a565b34801561096d57600080fd5b5061062a61097c366004613ec7565b60176020526000908152604090205481565b34801561099a57600080fd5b506104a16109a9366004614084565b612382565b6104a16109bc366004613ec7565b6123da565b3480156109cd57600080fd5b506104a16109dc3660046142e1565b6125eb565b3480156109ed57600080fd5b5061046c6109fc36600461414b565b612670565b348015610a0d57600080fd5b506104b861269b565b348015610a2257600080fd5b506104a1610a31366004613ec7565b6126aa565b348015610a4257600080fd5b5061046c610a51366004613ec7565b60196020526000908152604090205460ff1681565b348015610a7257600080fd5b506104a1610a81366004614084565b61271a565b348015610a9257600080fd5b5061062a60165481565b348015610aa857600080fd5b5061062a600081565b348015610abd57600080fd5b506104a1610acc366004614324565b612767565b348015610add57600080fd5b5061062a610aec366004613ec7565b612772565b348015610afd57600080fd5b50610b11610b0c366004613ec7565b6127a0565b6040516104789190614360565b348015610b2a57600080fd5b506104a1610b39366004614084565b6128aa565b348015610b4a57600080fd5b5061062a610b59366004613ec7565b612902565b348015610b6a57600080fd5b5061062a610b79366004613ec7565b612930565b348015610b8a57600080fd5b50600d546104e5906001600160a01b031681565b348015610baa57600080fd5b506104a1610bb9366004614084565b61295e565b348015610bca57600080fd5b506104a1610bd9366004614398565b61297c565b348015610bea57600080fd5b506104a1610bf9366004614084565b6129ae565b348015610c0a57600080fd5b506104a1610c19366004614414565b6129c5565b348015610c2a57600080fd5b506104b8610c39366004613ec7565b612a40565b348015610c4a57600080fd5b506104a1610c59366004614084565b612aa7565b348015610c6a57600080fd5b506104a1610c7936600461414b565b612b09565b348015610c8a57600080fd5b5061053d610c99366004613ec7565b612b2e565b348015610caa57600080fd5b5061062a6000805160206148c083398151915281565b348015610ccc57600080fd5b5061062a610cdb366004613ec7565b612bad565b348015610cec57600080fd5b50600e546104e5906001600160a01b031681565b348015610d0c57600080fd5b5061046c610d1b36600461445b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610d5557600080fd5b506104a1610d64366004613ec7565b612bdb565b348015610d7557600080fd5b506104a1610d84366004613ec7565b612bec565b348015610d9557600080fd5b506104a1610da4366004614485565b612bfd565b348015610db557600080fd5b5061062a610dc4366004613ec7565b60009081526018602052604090205490565b348015610de257600080fd5b506104a1610df1366004614084565b612c72565b348015610e0257600080fd5b506104a1610e11366004614084565b612cd4565b348015610e2257600080fd5b5061062a60105481565b348015610e3857600080fd5b50610e4c610e47366004613ec7565b612d36565b60405161047891906144b1565b348015610e6557600080fd5b506104a1610e74366004614084565b612e72565b6000610e8482612ebf565b92915050565b6000610e9581612ee4565b60165482601554610ea691906144da565b1115610eb157600080fd5b60005b8281101561115357610ed4336015546001610ecf91906144da565b612eee565b604080516101a081018252600061018082018181528252602082018190529181018290526001606082018190526080820183905260a0820183905260c0820183905260e082018390526101008201839052610120820183905261014082018390526101608201839052601b8054918201815590925280519091600c027f3ad8aa4f87544323a9d1e5dd902f40c356527a7955687113db5f9a85ad579dc101908190610f7f9082614575565b5060208281015160018084019190915560408085015160028501556060808601516003860155608080870151600487015560a08088015160058089019190915560c0890151600689015560e0890151600789015561010089015160088901556101208901516009890155610140890151600a89015561016090980151600b90970196909655825195860183526000808752948601858152928601858152918601858152908601858152601a805480870182559087529651969097027f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff63e81019690965591517f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff63f860155517f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff640850155517f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff64184015592517f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff642909201919091556015805490919061110d9084906144da565b90915550506015546040513391907fc2147c4185f90300f3520a640869d2fe7fdccea8e247b566a7c065547c7e163490600090a38061114b81614635565b915050610eb4565b505050565b606060008054611167906144ed565b80601f0160208091040260200160405190810160405280929190818152602001828054611193906144ed565b80156111e05780601f106111b5576101008083540402835291602001916111e0565b820191906000526020600020905b8154815290600101906020018083116111c357829003601f168201915b5050505050905090565b60006111f582612f08565b506000908152600460205260409020546001600160a01b031690565b600061121c826121e6565b9050806001600160a01b0316836001600160a01b03160361128e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806112aa57506112aa8133610d1b565b61131c5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401611285565b6111538383612f67565b600080600080600080601b87815481106113425761134261464e565b90600052602060002090600c02016040518061018001604052908160008201805461136c906144ed565b80601f0160208091040260200160405190810160405280929190818152602001828054611398906144ed565b80156113e55780601f106113ba576101008083540402835291602001916113e5565b820191906000526020600020905b8154815290600101906020018083116113c857829003601f168201915b50505050508152602001600182015481526020016002820154815260200160038201548152602001600482015481526020016005820154815260200160068201548152602001600782015481526020016008820154815260200160098201548152602001600a8201548152602001600b8201548152505090508060e00151955080610100015194508061012001519350806101400151925080610160015191505091939590929450565b6060600061149f836101f4614664565b6114aa9060016144da565b905060006114ba826101f36144da565b601554106114d6576114ce826101f36144da565b9050806114dc565b50601554805b5060006114e9838361467b565b6114f49060016144da565b905060008167ffffffffffffffff81111561151157611511614192565b60405190808252806020026020018201604052801561154a57816020015b611537613e33565b81526020019060019003908161152f5790505b5090506000845b8481116116c8576000601b828154811061156d5761156d61464e565b90600052602060002090600c02019050806040518061018001604052908160008201805461159a906144ed565b80601f01602080910402602001604051908101604052809291908181526020018280546115c6906144ed565b80156116135780601f106115e857610100808354040283529160200191611613565b820191906000526020600020905b8154815290600101906020018083116115f657829003601f168201915b50505050508152602001600182015481526020016002820154815260200160038201548152602001600482015481526020016005820154815260200160068201548152602001600782015481526020016008820154815260200160098201548152602001600a8201548152602001600b8201548152505084848151811061169c5761169c61464e565b60209081029190910101526116b26001846144da565b92505080806116c090614635565b915050611551565b50909695505050505050565b6000805160206148c08339815191526116ec81612ee4565b6000838152601760205260409020541561170557600080fd5b6000601a848154811061171a5761171a61464e565b6000918252602090912060036005909202010192909255505050565b601b818154811061174657600080fd5b90600052602060002090600c0201600091509050806000018054611769906144ed565b80601f0160208091040260200160405190810160405280929190818152602001828054611795906144ed565b80156117e25780601f106117b7576101008083540402835291602001916117e2565b820191906000526020600020905b8154815290600101906020018083116117c557829003601f168201915b50505050509080600101549080600201549080600301549080600401549080600501549080600601549080600701549080600801549080600901549080600a01549080600b015490508c565b6000805160206148c083398151915261184681612ee4565b6000601b848154811061185b5761185b61464e565b90600052602060002090600c0201905082816005015461187b919061467b565b600590910155505050565b6000601b828154811061189b5761189b61464e565b90600052602060002090600c0201600401549050919050565b6000805160206148c08339815191526118cc81612ee4565b600083815260176020526040902054156118e557600080fd5b6000601a84815481106118fa576118fa61464e565b6000918252602090912060059091020192909255505050565b61191d3382612fd5565b6119395760405162461bcd60e51b81526004016112859061468e565b611153838383613054565b6000828152600a602052604090206001015461195f81612ee4565b61115383836131c5565b6000611974836122fc565b82106119d65760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401611285565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000601a8281548110611a1457611a1461464e565b9060005260206000209060050201600001549050919050565b6001600160a01b0381163314611a9d5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401611285565b611aa7828261324b565b5050565b6000805160206148c0833981519152611ac381612ee4565b6000601b8481548110611ad857611ad861464e565b600091825260209091206004600c909202010192909255505050565b6000805160206148c0833981519152611b0c81612ee4565b6000601b8481548110611b2157611b2161464e565b90600052602060002090600c02019050828160030154611b4191906144da565b6003820181905560405190815284907f5226dc93e23cf0c9544b273c54a40394c171b04f887c3c2b6cfde807043fd1e7906020015b60405180910390a250505050565b601a8181548110611b9457600080fd5b6000918252602090912060059091020180546001820154600283015460038401546004909401549294509092909185565b6111538383836040518060200160405280600081525061297c565b6000611beb81612ee4565b50600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6000611c1960085490565b8210611c7c5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401611285565b60088281548110611c8f57611c8f61464e565b90600052602060002001549050919050565b6003811115611caf57600080fd5b6000600f5482611cbf9190614664565b9050803414611ccd57600080fd5b60165482601554611cde91906144da565b1115611ce957600080fd5b60005b82811015611f8c57611d07846015546001610ecf91906144da565b600160156000828254611d1a91906144da565b9091555050604080516101a081018252600061018082018181528252602082018190529181018290526001606082018190526080820183905260a0820183905260c0820183905260e082018390526101008201839052610120820183905261014082018390526101608201839052601b8054918201815590925280519091600c027f3ad8aa4f87544323a9d1e5dd902f40c356527a7955687113db5f9a85ad579dc101908190611dca9082614575565b5060208281015160018084019190915560408085015160028501556060808601516003860155608080870151600487015560a08088015160058089019190915560c0890151600689015560e0890151600789015561010089015160088901556101208901516009890155610140890151600a89015561016090980151600b90970196909655825195860183526000808752948601858152868401868152928701868152918701868152601a8054968701815587529651949097027f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff63e81019490945595517f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff63f840155517f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff64083015593517f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff64182015591517f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff6429092019190915560155491516001600160a01b03871692917fc2147c4185f90300f3520a640869d2fe7fdccea8e247b566a7c065547c7e163491a380611f8481614635565b915050611cec565b50600d546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611fc7573d6000803e3d6000fd5b50505050565b33611fd7836121e6565b6001600160a01b031614611fea57600080fd5b600082815260176020526040908190208290555182907fa40c0307faefd4ffa0af59b5ec7769b00c650d6fe2a01d2846b27db60cb770b69061202f9084815260200190565b60405180910390a25050565b600061204681612ee4565b600c6111538382614575565b60606000612062836101f4614664565b61206d9060016144da565b9050600061207d826101f36144da565b6015541061209957612091826101f36144da565b90508061209f565b50601554805b5060006120ac838361467b565b6120b79060016144da565b905060008167ffffffffffffffff8111156120d4576120d4614192565b60405190808252806020026020018201604052801561213757816020015b6121246040518060a0016040528060008152602001600081526020016000815260200160008152602001600081525090565b8152602001906001900390816120f25790505b5090506000845b8481116116c8576000601a828154811061215a5761215a61464e565b90600052602060002090600502019050806040518060a0016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820154815250508484815181106121ba576121ba61464e565b60209081029190910101526121d06001846144da565b92505080806121de90614635565b91505061213e565b6000818152600260205260408120546001600160a01b031680610e845760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401611285565b6060601b828154811061225b5761225b61464e565b90600052602060002090600c02016000018054612277906144ed565b80601f01602080910402602001604051908101604052809291908181526020018280546122a3906144ed565b80156122f05780601f106122c5576101008083540402835291602001916122f0565b820191906000526020600020905b8154815290600101906020018083116122d357829003601f168201915b50505050509050919050565b60006001600160a01b0382166123665760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401611285565b506001600160a01b031660009081526003602052604090205490565b6000805160206148c083398151915261239a81612ee4565b6000601b84815481106123af576123af61464e565b90600052602060002090600c020190508281600201546123cf919061467b565b600290910155505050565b6123e26132b2565b600081815260176020526040812054906123fb836121e6565b9050338261240857600080fd5b82341461241457600080fd5b816001600160a01b0316816001600160a01b03160361243257600080fd5b60008481526017602052604081205560145461244f9060016144da565b6014556011546124609034906144da565b601155601054341161247357600061247a565b3460108190555b5060006127106012543461248e9190614664565b61249891906146db565b90506000612710601354346124ad9190614664565b6124b791906146db565b90506000816124c6843461467b565b6124d0919061467b565b6040519091506001600160a01b0386169082156108fc029083906000818181858888f19350505050158015612509573d6000803e3d6000fd5b50600e546040516001600160a01b039091169084156108fc029085906000818181858888f19350505050158015612544573d6000803e3d6000fd5b50600d546040516001600160a01b039091169083156108fc029084906000818181858888f1935050505015801561257f573d6000803e3d6000fd5b5061258b858589613054565b604080516001600160a01b0380871682528716602082015290810187905287907f82be97f09517ce5805917d6b4dd93955b926771bd10f72669c9d6ab3fe43d9ca9060600160405180910390a25050505050506125e86001600b55565b50565b6000805160206148c083398151915261260381612ee4565b60008781526019602052604090205460ff16151560011461262357600080fd5b6000601b88815481106126385761263861464e565b60009182526020909120600c909102016007810197909755505060088501939093556009840191909155600a830155600b9091015550565b6000918252600a602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060018054611167906144ed565b336126b4826121e6565b6001600160a01b0316146126c757600080fd5b6000818152601760205260409020546126df57600080fd5b6000818152601760205260408082208290555182917f89c949bbfc3bab5240a1e5412df49d31fdff60861027d06aa4addebd477b5aab91a250565b6000805160206148c083398151915261273281612ee4565b6000601b84815481106127475761274761464e565b90600052602060002090600c020190508281600201546123cf91906144da565b611aa733838361330b565b6000601b82815481106127875761278761464e565b90600052602060002090600c0201600601549050919050565b606060006127b0836101f4614664565b6127bb9060016144da565b905060006127cb826101f36144da565b601554106127e7576127df826101f36144da565b9050806127ed565b50601554805b5060006127fa838361467b565b6128059060016144da565b905060008167ffffffffffffffff81111561282257612822614192565b60405190808252806020026020018201604052801561284b578160200160208202803683370190505b5090506000845b8481116116c8576000818152601760205260409020548351819085908590811061287e5761287e61464e565b60209081029190910101526128946001846144da565b92505080806128a290614635565b915050612852565b6000805160206148c08339815191526128c281612ee4565b6000601b84815481106128d7576128d761464e565b90600052602060002090600c020190508281600601546128f791906144da565b600690910155505050565b6000601b82815481106129175761291761464e565b90600052602060002090600c0201600301549050919050565b6000601b82815481106129455761294561464e565b90600052602060002090600c0201600501549050919050565b600061296981612ee4565b5060009182526018602052604090912055565b6129863383612fd5565b6129a25760405162461bcd60e51b81526004016112859061468e565b611fc7848484846133d9565b60006129b981612ee4565b50601291909155601355565b6000805160206148c08339815191526129dd81612ee4565b6000601b84815481106129f2576129f261464e565b60009182526020909120600c90910201905080612a0f8482614575565b50837f8edfa912e70e283a8ef6d6f52cd1faef9690ff989eff2f11a134e8478ba7b28b84604051611b769190613f30565b6060612a4b82612f08565b6000612a5561340c565b90506000815111612a755760405180602001604052806000815250612aa0565b80612a7f8461341b565b604051602001612a909291906146fd565b6040516020818303038152906040525b9392505050565b6000805160206148c0833981519152612abf81612ee4565b60008381526017602052604090205415612ad857600080fd5b6000601a8481548110612aed57612aed61464e565b6000918252602090912060026005909202010192909255505050565b6000828152600a6020526040902060010154612b2481612ee4565b611153838361324b565b600080600080600080601a8781548110612b4a57612b4a61464e565b60009182526020918290206040805160a081018252600590930290910180548084526001820154948401859052600282015492840183905260038201546060850181905260049092015460809094018490529b939a509098509650945092505050565b6000601b8281548110612bc257612bc261464e565b90600052602060002090600c0201600201549050919050565b6000612be681612ee4565b50601655565b6000612bf781612ee4565b50600f55565b6000612c0881612ee4565b6000601b8581548110612c1d57612c1d61464e565b600091825260208083206001600c90930201828101979097556003600688018190556005880155600490960185905595815260188552604080822094909455601990945250509020805460ff19169091179055565b6000805160206148c0833981519152612c8a81612ee4565b60008381526017602052604090205415612ca357600080fd5b6000601a8481548110612cb857612cb861464e565b6000918252602090912060046005909202010192909255505050565b6000805160206148c0833981519152612cec81612ee4565b60008381526017602052604090205415612d0557600080fd5b6000601a8481548110612d1a57612d1a61464e565b6000918252602090912060016005909202010192909255505050565b612d3e613e33565b601b8281548110612d5157612d5161464e565b90600052602060002090600c020160405180610180016040529081600082018054612d7b906144ed565b80601f0160208091040260200160405190810160405280929190818152602001828054612da7906144ed565b8015612df45780601f10612dc957610100808354040283529160200191612df4565b820191906000526020600020905b815481529060010190602001808311612dd757829003601f168201915b50505050508152602001600182015481526020016002820154815260200160038201548152602001600482015481526020016005820154815260200160068201548152602001600782015481526020016008820154815260200160098201548152602001600a8201548152602001600b820154815250509050919050565b6000805160206148c0833981519152612e8a81612ee4565b6000601b8481548110612e9f57612e9f61464e565b90600052602060002090600c0201905082816005015461187b91906144da565b60006001600160e01b03198216637965db0b60e01b1480610e845750610e84826134ae565b6125e881336134d3565b611aa782826040518060200160405280600081525061352c565b6000818152600260205260409020546001600160a01b03166125e85760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401611285565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612f9c826121e6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080612fe1836121e6565b9050806001600160a01b0316846001600160a01b0316148061302857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061304c5750836001600160a01b0316613041846111ea565b6001600160a01b0316145b949350505050565b826001600160a01b0316613067826121e6565b6001600160a01b03161461308d5760405162461bcd60e51b81526004016112859061472c565b6001600160a01b0382166130ef5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401611285565b6130fc838383600161355f565b826001600160a01b031661310f826121e6565b6001600160a01b0316146131355760405162461bcd60e51b81526004016112859061472c565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6131cf8282612670565b611aa7576000828152600a602090815260408083206001600160a01b03851684529091529020805460ff191660011790556132073390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6132558282612670565b15611aa7576000828152600a602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6002600b54036133045760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401611285565b6002600b55565b816001600160a01b0316836001600160a01b03160361336c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401611285565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6133e4848484613054565b6133f08484848461356b565b611fc75760405162461bcd60e51b815260040161128590614771565b6060600c8054611167906144ed565b606060006134288361366c565b600101905060008167ffffffffffffffff81111561344857613448614192565b6040519080825280601f01601f191660200182016040528015613472576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461347c57509392505050565b60006001600160e01b0319821663780e9d6360e01b1480610e845750610e8482613744565b6134dd8282612670565b611aa7576134ea81613794565b6134f58360206137a6565b6040516020016135069291906147c3565b60408051601f198184030181529082905262461bcd60e51b825261128591600401613f30565b6135368383613942565b613543600084848461356b565b6111535760405162461bcd60e51b815260040161128590614771565b611fc784848484613adb565b60006001600160a01b0384163b1561366157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906135af903390899088908890600401614838565b6020604051808303816000875af19250505080156135ea575060408051601f3d908101601f191682019092526135e791810190614875565b60015b613647573d808015613618576040519150601f19603f3d011682016040523d82523d6000602084013e61361d565b606091505b50805160000361363f5760405162461bcd60e51b815260040161128590614771565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061304c565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106136ab5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106136d7576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106136f557662386f26fc10000830492506010015b6305f5e100831061370d576305f5e100830492506008015b612710831061372157612710830492506004015b60648310613733576064830492506002015b600a8310610e845760010192915050565b60006001600160e01b031982166380ac58cd60e01b148061377557506001600160e01b03198216635b5e139f60e01b145b80610e8457506301ffc9a760e01b6001600160e01b0319831614610e84565b6060610e846001600160a01b03831660145b606060006137b5836002614664565b6137c09060026144da565b67ffffffffffffffff8111156137d8576137d8614192565b6040519080825280601f01601f191660200182016040528015613802576020820181803683370190505b509050600360fc1b8160008151811061381d5761381d61464e565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061384c5761384c61464e565b60200101906001600160f81b031916908160001a9053506000613870846002614664565b61387b9060016144da565b90505b60018111156138f3576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106138af576138af61464e565b1a60f81b8282815181106138c5576138c561464e565b60200101906001600160f81b031916908160001a90535060049490941c936138ec81614892565b905061387e565b508315612aa05760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401611285565b6001600160a01b0382166139985760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401611285565b6000818152600260205260409020546001600160a01b0316156139fd5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401611285565b613a0b60008383600161355f565b6000818152600260205260409020546001600160a01b031615613a705760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401611285565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b613ae784848484613c1b565b6001811115613b565760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b6064820152608401611285565b816001600160a01b038516613bb257613bad81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b613bd5565b836001600160a01b0316856001600160a01b031614613bd557613bd58582613ca3565b6001600160a01b038416613bf157613bec81613d40565b613c14565b846001600160a01b0316846001600160a01b031614613c1457613c148482613def565b5050505050565b6001811115611fc7576001600160a01b03841615613c61576001600160a01b03841660009081526003602052604081208054839290613c5b90849061467b565b90915550505b6001600160a01b03831615611fc7576001600160a01b03831660009081526003602052604081208054839290613c989084906144da565b909155505050505050565b60006001613cb0846122fc565b613cba919061467b565b600083815260076020526040902054909150808214613d0d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090613d529060019061467b565b60008381526009602052604081205460088054939450909284908110613d7a57613d7a61464e565b906000526020600020015490508060088381548110613d9b57613d9b61464e565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480613dd357613dd36148a9565b6001900381819060005260206000200160009055905550505050565b6000613dfa836122fc565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6040518061018001604052806060815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6001600160e01b0319811681146125e857600080fd5b600060208284031215613ebc57600080fd5b8135612aa081613e94565b600060208284031215613ed957600080fd5b5035919050565b60005b83811015613efb578181015183820152602001613ee3565b50506000910152565b60008151808452613f1c816020860160208601613ee0565b601f01601f19169290920160200192915050565b602081526000612aa06020830184613f04565b80356001600160a01b0381168114613f5a57600080fd5b919050565b60008060408385031215613f7257600080fd5b613f7b83613f43565b946020939093013593505050565b60006101808251818552613f9f82860182613f04565b9150506020830151602085015260408301516040850152606083015160608501526080830151608085015260a083015160a085015260c083015160c085015260e083015160e08501526101008084015181860152506101208084015181860152506101408084015181860152506101608084015181860152508091505092915050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b8281101561407757603f19888603018452614065858351613f89565b94509285019290850190600101614049565b5092979650505050505050565b6000806040838503121561409757600080fd5b50508035926020909101359150565b610180815260006140bb61018083018f613f04565b602083019d909d5250604081019a909a5260608a0198909852608089019690965260a088019490945260c087019290925260e086015261010085015261012084015261014083015261016090910152919050565b60008060006060848603121561412457600080fd5b61412d84613f43565b925061413b60208501613f43565b9150604084013590509250925092565b6000806040838503121561415e57600080fd5b8235915061416e60208401613f43565b90509250929050565b60006020828403121561418957600080fd5b612aa082613f43565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156141c3576141c3614192565b604051601f8501601f19908116603f011681019082821181831017156141eb576141eb614192565b8160405280935085815286868601111561420457600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261422f57600080fd5b612aa0838335602085016141a8565b60006020828403121561425057600080fd5b813567ffffffffffffffff81111561426757600080fd5b61304c8482850161421e565b602080825282518282018190526000919060409081850190868401855b828110156142d45781518051855286810151878601528581015186860152606080820151908601526080908101519085015260a09093019290850190600101614290565b5091979650505050505050565b60008060008060008060c087890312156142fa57600080fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b6000806040838503121561433757600080fd5b61434083613f43565b91506020830135801515811461435557600080fd5b809150509250929050565b6020808252825182820181905260009190848201906040850190845b818110156116c85783518352928401929184019160010161437c565b600080600080608085870312156143ae57600080fd5b6143b785613f43565b93506143c560208601613f43565b925060408501359150606085013567ffffffffffffffff8111156143e857600080fd5b8501601f810187136143f957600080fd5b614408878235602084016141a8565b91505092959194509250565b6000806040838503121561442757600080fd5b82359150602083013567ffffffffffffffff81111561444557600080fd5b6144518582860161421e565b9150509250929050565b6000806040838503121561446e57600080fd5b61447783613f43565b915061416e60208401613f43565b60008060006060848603121561449a57600080fd5b505081359360208301359350604090920135919050565b602081526000612aa06020830184613f89565b634e487b7160e01b600052601160045260246000fd5b80820180821115610e8457610e846144c4565b600181811c9082168061450157607f821691505b60208210810361452157634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561115357600081815260208120601f850160051c8101602086101561454e5750805b601f850160051c820191505b8181101561456d5782815560010161455a565b505050505050565b815167ffffffffffffffff81111561458f5761458f614192565b6145a38161459d84546144ed565b84614527565b602080601f8311600181146145d857600084156145c05750858301515b600019600386901b1c1916600185901b17855561456d565b600085815260208120601f198616915b82811015614607578886015182559484019460019091019084016145e8565b50858210156146255787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060018201614647576146476144c4565b5060010190565b634e487b7160e01b600052603260045260246000fd5b8082028115828204841417610e8457610e846144c4565b81810381811115610e8457610e846144c4565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b6000826146f857634e487b7160e01b600052601260045260246000fd5b500490565b6000835161470f818460208801613ee0565b835190830190614723818360208801613ee0565b01949350505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516147fb816017850160208801613ee0565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161482c816028840160208801613ee0565b01602801949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061486b90830184613f04565b9695505050505050565b60006020828403121561488757600080fd5b8151612aa081613e94565b6000816148a1576148a16144c4565b506000190190565b634e487b7160e01b600052603160045260246000fdfe59c0d2a11c10bba550df025acfaaa45dd8a81d6a494812c6b505a8d87cd62f4da2646970667358221220873a3bcd5a450b57a3b4a026aa2c56b8da08d8c422602cca71f5004853fe8c8464736f6c63430008110033000000000000000000000000382305f7e5332e426fab9eebdd22f0471e69c24b00000000000000000000000085f9a6c59ebd043585f324077c0ab8231a53b3d0

Deployed Bytecode

0x6080604052600436106104475760003560e01c806383838d1211610234578063bd1e2a611161012e578063e985e9c5116100b6578063f43e36bf1161007a578063f43e36bf14610dd6578063f4f8f7c714610df6578063f9ce0ad714610e16578063fac8eafc14610e2c578063facb347614610e5957600080fd5b8063e985e9c514610d00578063ea35d74a14610d49578063ec56a1ea14610d69578063ee95758114610d89578063f3847fa714610da957600080fd5b8063d547741f116100fd578063d547741f14610c5e578063d58686e214610c7e578063d8c0884214610c9e578063dfb98ff214610cc0578063e239df6a14610ce057600080fd5b8063bd1e2a6114610bde578063c39cbef114610bfe578063c87b56dd14610c1e578063ca4f971914610c3e57600080fd5b8063a217fddf116101bc578063b0eed65f11610180578063b0eed65f14610b3e578063b33f90b114610b5e578063b42a5a3b14610b7e578063b562938614610b9e578063b88d4fde14610bbe57600080fd5b8063a217fddf14610a9c578063a22cb46514610ab1578063a37d33ed14610ad1578063a890753914610af1578063ae32441f14610b1e57600080fd5b806395d89b411161020357806395d89b4114610a01578063964bc33f14610a165780639797116014610a3657806399f45add14610a665780639f1f619d14610a8657600080fd5b806383838d121461098e5780638fa65bc9146109ae57806390a15776146109c157806391d14854146109e157600080fd5b806335051b58116103455780634fbfe712116102cd5780636352211e116102915780636352211e146108ec5780636b8ff5741461090c57806370a082311461092c57806374b3112b1461094c57806375e333c71461096157600080fd5b80634fbfe7121461085657806350fd73671461086957806355f804b3146108895780635cd2dd9b146108a9578063627a308c146108d657600080fd5b8063417c989511610314578063417c9895146107c057806342842e0e146107e057806343602684146108005780634bc922cf146108205780634f6ccce71461083657600080fd5b806335051b581461074057806336568abe1461076057806339bb960b146107805780633b7ca85b146107a057600080fd5b806316b282cf116103d3578063248a9ca311610397578063248a9ca31461068d57806324bd81a5146106bd5780632f2ff15d146106d35780632f745c59146106f357806331163be11461071357600080fd5b806316b282cf146105ea578063175095931461060a57806318160ddd146106385780631c3f74721461064d57806323b872dd1461066d57600080fd5b8063095ea7b31161041a578063095ea7b3146104fd5780630b6238391461051d5780630d0ae459146105655780630d7f6c0e146105925780630fa86617146105b257600080fd5b806301ffc9a71461044c57806305381dcb1461048157806306fdde03146104a3578063081812fc146104c5575b600080fd5b34801561045857600080fd5b5061046c610467366004613eaa565b610e79565b60405190151581526020015b60405180910390f35b34801561048d57600080fd5b506104a161049c366004613ec7565b610e8a565b005b3480156104af57600080fd5b506104b8611158565b6040516104789190613f30565b3480156104d157600080fd5b506104e56104e0366004613ec7565b6111ea565b6040516001600160a01b039091168152602001610478565b34801561050957600080fd5b506104a1610518366004613f5f565b611211565b34801561052957600080fd5b5061053d610538366004613ec7565b611326565b604080519586526020860194909452928401919091526060830152608082015260a001610478565b34801561057157600080fd5b50610585610580366004613ec7565b61148f565b6040516104789190614022565b34801561059e57600080fd5b506104a16105ad366004614084565b6116d4565b3480156105be57600080fd5b506105d26105cd366004613ec7565b611736565b6040516104789c9b9a999897969594939291906140a6565b3480156105f657600080fd5b506104a1610605366004614084565b61182e565b34801561061657600080fd5b5061062a610625366004613ec7565b611886565b604051908152602001610478565b34801561064457600080fd5b5060085461062a565b34801561065957600080fd5b506104a1610668366004614084565b6118b4565b34801561067957600080fd5b506104a161068836600461410f565b611913565b34801561069957600080fd5b5061062a6106a8366004613ec7565b6000908152600a602052604090206001015490565b3480156106c957600080fd5b5061062a600f5481565b3480156106df57600080fd5b506104a16106ee36600461414b565b611944565b3480156106ff57600080fd5b5061062a61070e366004613f5f565b611969565b34801561071f57600080fd5b5061062a61072e366004613ec7565b60186020526000908152604090205481565b34801561074c57600080fd5b5061062a61075b366004613ec7565b6119ff565b34801561076c57600080fd5b506104a161077b36600461414b565b611a2d565b34801561078c57600080fd5b506104a161079b366004614084565b611aab565b3480156107ac57600080fd5b506104a16107bb366004614084565b611af4565b3480156107cc57600080fd5b5061053d6107db366004613ec7565b611b84565b3480156107ec57600080fd5b506104a16107fb36600461410f565b611bc5565b34801561080c57600080fd5b506104a161081b366004614177565b611be0565b34801561082c57600080fd5b5061062a60115481565b34801561084257600080fd5b5061062a610851366004613ec7565b611c0e565b6104a1610864366004613f5f565b611ca1565b34801561087557600080fd5b506104a1610884366004614084565b611fcd565b34801561089557600080fd5b506104a16108a436600461423e565b61203b565b3480156108b557600080fd5b506108c96108c4366004613ec7565b612052565b6040516104789190614273565b3480156108e257600080fd5b5061062a60145481565b3480156108f857600080fd5b506104e5610907366004613ec7565b6121e6565b34801561091857600080fd5b506104b8610927366004613ec7565b612246565b34801561093857600080fd5b5061062a610947366004614177565b6122fc565b34801561095857600080fd5b5060155461062a565b34801561096d57600080fd5b5061062a61097c366004613ec7565b60176020526000908152604090205481565b34801561099a57600080fd5b506104a16109a9366004614084565b612382565b6104a16109bc366004613ec7565b6123da565b3480156109cd57600080fd5b506104a16109dc3660046142e1565b6125eb565b3480156109ed57600080fd5b5061046c6109fc36600461414b565b612670565b348015610a0d57600080fd5b506104b861269b565b348015610a2257600080fd5b506104a1610a31366004613ec7565b6126aa565b348015610a4257600080fd5b5061046c610a51366004613ec7565b60196020526000908152604090205460ff1681565b348015610a7257600080fd5b506104a1610a81366004614084565b61271a565b348015610a9257600080fd5b5061062a60165481565b348015610aa857600080fd5b5061062a600081565b348015610abd57600080fd5b506104a1610acc366004614324565b612767565b348015610add57600080fd5b5061062a610aec366004613ec7565b612772565b348015610afd57600080fd5b50610b11610b0c366004613ec7565b6127a0565b6040516104789190614360565b348015610b2a57600080fd5b506104a1610b39366004614084565b6128aa565b348015610b4a57600080fd5b5061062a610b59366004613ec7565b612902565b348015610b6a57600080fd5b5061062a610b79366004613ec7565b612930565b348015610b8a57600080fd5b50600d546104e5906001600160a01b031681565b348015610baa57600080fd5b506104a1610bb9366004614084565b61295e565b348015610bca57600080fd5b506104a1610bd9366004614398565b61297c565b348015610bea57600080fd5b506104a1610bf9366004614084565b6129ae565b348015610c0a57600080fd5b506104a1610c19366004614414565b6129c5565b348015610c2a57600080fd5b506104b8610c39366004613ec7565b612a40565b348015610c4a57600080fd5b506104a1610c59366004614084565b612aa7565b348015610c6a57600080fd5b506104a1610c7936600461414b565b612b09565b348015610c8a57600080fd5b5061053d610c99366004613ec7565b612b2e565b348015610caa57600080fd5b5061062a6000805160206148c083398151915281565b348015610ccc57600080fd5b5061062a610cdb366004613ec7565b612bad565b348015610cec57600080fd5b50600e546104e5906001600160a01b031681565b348015610d0c57600080fd5b5061046c610d1b36600461445b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610d5557600080fd5b506104a1610d64366004613ec7565b612bdb565b348015610d7557600080fd5b506104a1610d84366004613ec7565b612bec565b348015610d9557600080fd5b506104a1610da4366004614485565b612bfd565b348015610db557600080fd5b5061062a610dc4366004613ec7565b60009081526018602052604090205490565b348015610de257600080fd5b506104a1610df1366004614084565b612c72565b348015610e0257600080fd5b506104a1610e11366004614084565b612cd4565b348015610e2257600080fd5b5061062a60105481565b348015610e3857600080fd5b50610e4c610e47366004613ec7565b612d36565b60405161047891906144b1565b348015610e6557600080fd5b506104a1610e74366004614084565b612e72565b6000610e8482612ebf565b92915050565b6000610e9581612ee4565b60165482601554610ea691906144da565b1115610eb157600080fd5b60005b8281101561115357610ed4336015546001610ecf91906144da565b612eee565b604080516101a081018252600061018082018181528252602082018190529181018290526001606082018190526080820183905260a0820183905260c0820183905260e082018390526101008201839052610120820183905261014082018390526101608201839052601b8054918201815590925280519091600c027f3ad8aa4f87544323a9d1e5dd902f40c356527a7955687113db5f9a85ad579dc101908190610f7f9082614575565b5060208281015160018084019190915560408085015160028501556060808601516003860155608080870151600487015560a08088015160058089019190915560c0890151600689015560e0890151600789015561010089015160088901556101208901516009890155610140890151600a89015561016090980151600b90970196909655825195860183526000808752948601858152928601858152918601858152908601858152601a805480870182559087529651969097027f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff63e81019690965591517f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff63f860155517f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff640850155517f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff64184015592517f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff642909201919091556015805490919061110d9084906144da565b90915550506015546040513391907fc2147c4185f90300f3520a640869d2fe7fdccea8e247b566a7c065547c7e163490600090a38061114b81614635565b915050610eb4565b505050565b606060008054611167906144ed565b80601f0160208091040260200160405190810160405280929190818152602001828054611193906144ed565b80156111e05780601f106111b5576101008083540402835291602001916111e0565b820191906000526020600020905b8154815290600101906020018083116111c357829003601f168201915b5050505050905090565b60006111f582612f08565b506000908152600460205260409020546001600160a01b031690565b600061121c826121e6565b9050806001600160a01b0316836001600160a01b03160361128e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806112aa57506112aa8133610d1b565b61131c5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401611285565b6111538383612f67565b600080600080600080601b87815481106113425761134261464e565b90600052602060002090600c02016040518061018001604052908160008201805461136c906144ed565b80601f0160208091040260200160405190810160405280929190818152602001828054611398906144ed565b80156113e55780601f106113ba576101008083540402835291602001916113e5565b820191906000526020600020905b8154815290600101906020018083116113c857829003601f168201915b50505050508152602001600182015481526020016002820154815260200160038201548152602001600482015481526020016005820154815260200160068201548152602001600782015481526020016008820154815260200160098201548152602001600a8201548152602001600b8201548152505090508060e00151955080610100015194508061012001519350806101400151925080610160015191505091939590929450565b6060600061149f836101f4614664565b6114aa9060016144da565b905060006114ba826101f36144da565b601554106114d6576114ce826101f36144da565b9050806114dc565b50601554805b5060006114e9838361467b565b6114f49060016144da565b905060008167ffffffffffffffff81111561151157611511614192565b60405190808252806020026020018201604052801561154a57816020015b611537613e33565b81526020019060019003908161152f5790505b5090506000845b8481116116c8576000601b828154811061156d5761156d61464e565b90600052602060002090600c02019050806040518061018001604052908160008201805461159a906144ed565b80601f01602080910402602001604051908101604052809291908181526020018280546115c6906144ed565b80156116135780601f106115e857610100808354040283529160200191611613565b820191906000526020600020905b8154815290600101906020018083116115f657829003601f168201915b50505050508152602001600182015481526020016002820154815260200160038201548152602001600482015481526020016005820154815260200160068201548152602001600782015481526020016008820154815260200160098201548152602001600a8201548152602001600b8201548152505084848151811061169c5761169c61464e565b60209081029190910101526116b26001846144da565b92505080806116c090614635565b915050611551565b50909695505050505050565b6000805160206148c08339815191526116ec81612ee4565b6000838152601760205260409020541561170557600080fd5b6000601a848154811061171a5761171a61464e565b6000918252602090912060036005909202010192909255505050565b601b818154811061174657600080fd5b90600052602060002090600c0201600091509050806000018054611769906144ed565b80601f0160208091040260200160405190810160405280929190818152602001828054611795906144ed565b80156117e25780601f106117b7576101008083540402835291602001916117e2565b820191906000526020600020905b8154815290600101906020018083116117c557829003601f168201915b50505050509080600101549080600201549080600301549080600401549080600501549080600601549080600701549080600801549080600901549080600a01549080600b015490508c565b6000805160206148c083398151915261184681612ee4565b6000601b848154811061185b5761185b61464e565b90600052602060002090600c0201905082816005015461187b919061467b565b600590910155505050565b6000601b828154811061189b5761189b61464e565b90600052602060002090600c0201600401549050919050565b6000805160206148c08339815191526118cc81612ee4565b600083815260176020526040902054156118e557600080fd5b6000601a84815481106118fa576118fa61464e565b6000918252602090912060059091020192909255505050565b61191d3382612fd5565b6119395760405162461bcd60e51b81526004016112859061468e565b611153838383613054565b6000828152600a602052604090206001015461195f81612ee4565b61115383836131c5565b6000611974836122fc565b82106119d65760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401611285565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000601a8281548110611a1457611a1461464e565b9060005260206000209060050201600001549050919050565b6001600160a01b0381163314611a9d5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401611285565b611aa7828261324b565b5050565b6000805160206148c0833981519152611ac381612ee4565b6000601b8481548110611ad857611ad861464e565b600091825260209091206004600c909202010192909255505050565b6000805160206148c0833981519152611b0c81612ee4565b6000601b8481548110611b2157611b2161464e565b90600052602060002090600c02019050828160030154611b4191906144da565b6003820181905560405190815284907f5226dc93e23cf0c9544b273c54a40394c171b04f887c3c2b6cfde807043fd1e7906020015b60405180910390a250505050565b601a8181548110611b9457600080fd5b6000918252602090912060059091020180546001820154600283015460038401546004909401549294509092909185565b6111538383836040518060200160405280600081525061297c565b6000611beb81612ee4565b50600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6000611c1960085490565b8210611c7c5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401611285565b60088281548110611c8f57611c8f61464e565b90600052602060002001549050919050565b6003811115611caf57600080fd5b6000600f5482611cbf9190614664565b9050803414611ccd57600080fd5b60165482601554611cde91906144da565b1115611ce957600080fd5b60005b82811015611f8c57611d07846015546001610ecf91906144da565b600160156000828254611d1a91906144da565b9091555050604080516101a081018252600061018082018181528252602082018190529181018290526001606082018190526080820183905260a0820183905260c0820183905260e082018390526101008201839052610120820183905261014082018390526101608201839052601b8054918201815590925280519091600c027f3ad8aa4f87544323a9d1e5dd902f40c356527a7955687113db5f9a85ad579dc101908190611dca9082614575565b5060208281015160018084019190915560408085015160028501556060808601516003860155608080870151600487015560a08088015160058089019190915560c0890151600689015560e0890151600789015561010089015160088901556101208901516009890155610140890151600a89015561016090980151600b90970196909655825195860183526000808752948601858152868401868152928701868152918701868152601a8054968701815587529651949097027f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff63e81019490945595517f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff63f840155517f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff64083015593517f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff64182015591517f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff6429092019190915560155491516001600160a01b03871692917fc2147c4185f90300f3520a640869d2fe7fdccea8e247b566a7c065547c7e163491a380611f8481614635565b915050611cec565b50600d546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611fc7573d6000803e3d6000fd5b50505050565b33611fd7836121e6565b6001600160a01b031614611fea57600080fd5b600082815260176020526040908190208290555182907fa40c0307faefd4ffa0af59b5ec7769b00c650d6fe2a01d2846b27db60cb770b69061202f9084815260200190565b60405180910390a25050565b600061204681612ee4565b600c6111538382614575565b60606000612062836101f4614664565b61206d9060016144da565b9050600061207d826101f36144da565b6015541061209957612091826101f36144da565b90508061209f565b50601554805b5060006120ac838361467b565b6120b79060016144da565b905060008167ffffffffffffffff8111156120d4576120d4614192565b60405190808252806020026020018201604052801561213757816020015b6121246040518060a0016040528060008152602001600081526020016000815260200160008152602001600081525090565b8152602001906001900390816120f25790505b5090506000845b8481116116c8576000601a828154811061215a5761215a61464e565b90600052602060002090600502019050806040518060a0016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820154815250508484815181106121ba576121ba61464e565b60209081029190910101526121d06001846144da565b92505080806121de90614635565b91505061213e565b6000818152600260205260408120546001600160a01b031680610e845760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401611285565b6060601b828154811061225b5761225b61464e565b90600052602060002090600c02016000018054612277906144ed565b80601f01602080910402602001604051908101604052809291908181526020018280546122a3906144ed565b80156122f05780601f106122c5576101008083540402835291602001916122f0565b820191906000526020600020905b8154815290600101906020018083116122d357829003601f168201915b50505050509050919050565b60006001600160a01b0382166123665760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401611285565b506001600160a01b031660009081526003602052604090205490565b6000805160206148c083398151915261239a81612ee4565b6000601b84815481106123af576123af61464e565b90600052602060002090600c020190508281600201546123cf919061467b565b600290910155505050565b6123e26132b2565b600081815260176020526040812054906123fb836121e6565b9050338261240857600080fd5b82341461241457600080fd5b816001600160a01b0316816001600160a01b03160361243257600080fd5b60008481526017602052604081205560145461244f9060016144da565b6014556011546124609034906144da565b601155601054341161247357600061247a565b3460108190555b5060006127106012543461248e9190614664565b61249891906146db565b90506000612710601354346124ad9190614664565b6124b791906146db565b90506000816124c6843461467b565b6124d0919061467b565b6040519091506001600160a01b0386169082156108fc029083906000818181858888f19350505050158015612509573d6000803e3d6000fd5b50600e546040516001600160a01b039091169084156108fc029085906000818181858888f19350505050158015612544573d6000803e3d6000fd5b50600d546040516001600160a01b039091169083156108fc029084906000818181858888f1935050505015801561257f573d6000803e3d6000fd5b5061258b858589613054565b604080516001600160a01b0380871682528716602082015290810187905287907f82be97f09517ce5805917d6b4dd93955b926771bd10f72669c9d6ab3fe43d9ca9060600160405180910390a25050505050506125e86001600b55565b50565b6000805160206148c083398151915261260381612ee4565b60008781526019602052604090205460ff16151560011461262357600080fd5b6000601b88815481106126385761263861464e565b60009182526020909120600c909102016007810197909755505060088501939093556009840191909155600a830155600b9091015550565b6000918252600a602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060018054611167906144ed565b336126b4826121e6565b6001600160a01b0316146126c757600080fd5b6000818152601760205260409020546126df57600080fd5b6000818152601760205260408082208290555182917f89c949bbfc3bab5240a1e5412df49d31fdff60861027d06aa4addebd477b5aab91a250565b6000805160206148c083398151915261273281612ee4565b6000601b84815481106127475761274761464e565b90600052602060002090600c020190508281600201546123cf91906144da565b611aa733838361330b565b6000601b82815481106127875761278761464e565b90600052602060002090600c0201600601549050919050565b606060006127b0836101f4614664565b6127bb9060016144da565b905060006127cb826101f36144da565b601554106127e7576127df826101f36144da565b9050806127ed565b50601554805b5060006127fa838361467b565b6128059060016144da565b905060008167ffffffffffffffff81111561282257612822614192565b60405190808252806020026020018201604052801561284b578160200160208202803683370190505b5090506000845b8481116116c8576000818152601760205260409020548351819085908590811061287e5761287e61464e565b60209081029190910101526128946001846144da565b92505080806128a290614635565b915050612852565b6000805160206148c08339815191526128c281612ee4565b6000601b84815481106128d7576128d761464e565b90600052602060002090600c020190508281600601546128f791906144da565b600690910155505050565b6000601b82815481106129175761291761464e565b90600052602060002090600c0201600301549050919050565b6000601b82815481106129455761294561464e565b90600052602060002090600c0201600501549050919050565b600061296981612ee4565b5060009182526018602052604090912055565b6129863383612fd5565b6129a25760405162461bcd60e51b81526004016112859061468e565b611fc7848484846133d9565b60006129b981612ee4565b50601291909155601355565b6000805160206148c08339815191526129dd81612ee4565b6000601b84815481106129f2576129f261464e565b60009182526020909120600c90910201905080612a0f8482614575565b50837f8edfa912e70e283a8ef6d6f52cd1faef9690ff989eff2f11a134e8478ba7b28b84604051611b769190613f30565b6060612a4b82612f08565b6000612a5561340c565b90506000815111612a755760405180602001604052806000815250612aa0565b80612a7f8461341b565b604051602001612a909291906146fd565b6040516020818303038152906040525b9392505050565b6000805160206148c0833981519152612abf81612ee4565b60008381526017602052604090205415612ad857600080fd5b6000601a8481548110612aed57612aed61464e565b6000918252602090912060026005909202010192909255505050565b6000828152600a6020526040902060010154612b2481612ee4565b611153838361324b565b600080600080600080601a8781548110612b4a57612b4a61464e565b60009182526020918290206040805160a081018252600590930290910180548084526001820154948401859052600282015492840183905260038201546060850181905260049092015460809094018490529b939a509098509650945092505050565b6000601b8281548110612bc257612bc261464e565b90600052602060002090600c0201600201549050919050565b6000612be681612ee4565b50601655565b6000612bf781612ee4565b50600f55565b6000612c0881612ee4565b6000601b8581548110612c1d57612c1d61464e565b600091825260208083206001600c90930201828101979097556003600688018190556005880155600490960185905595815260188552604080822094909455601990945250509020805460ff19169091179055565b6000805160206148c0833981519152612c8a81612ee4565b60008381526017602052604090205415612ca357600080fd5b6000601a8481548110612cb857612cb861464e565b6000918252602090912060046005909202010192909255505050565b6000805160206148c0833981519152612cec81612ee4565b60008381526017602052604090205415612d0557600080fd5b6000601a8481548110612d1a57612d1a61464e565b6000918252602090912060016005909202010192909255505050565b612d3e613e33565b601b8281548110612d5157612d5161464e565b90600052602060002090600c020160405180610180016040529081600082018054612d7b906144ed565b80601f0160208091040260200160405190810160405280929190818152602001828054612da7906144ed565b8015612df45780601f10612dc957610100808354040283529160200191612df4565b820191906000526020600020905b815481529060010190602001808311612dd757829003601f168201915b50505050508152602001600182015481526020016002820154815260200160038201548152602001600482015481526020016005820154815260200160068201548152602001600782015481526020016008820154815260200160098201548152602001600a8201548152602001600b820154815250509050919050565b6000805160206148c0833981519152612e8a81612ee4565b6000601b8481548110612e9f57612e9f61464e565b90600052602060002090600c0201905082816005015461187b91906144da565b60006001600160e01b03198216637965db0b60e01b1480610e845750610e84826134ae565b6125e881336134d3565b611aa782826040518060200160405280600081525061352c565b6000818152600260205260409020546001600160a01b03166125e85760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401611285565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612f9c826121e6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080612fe1836121e6565b9050806001600160a01b0316846001600160a01b0316148061302857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061304c5750836001600160a01b0316613041846111ea565b6001600160a01b0316145b949350505050565b826001600160a01b0316613067826121e6565b6001600160a01b03161461308d5760405162461bcd60e51b81526004016112859061472c565b6001600160a01b0382166130ef5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401611285565b6130fc838383600161355f565b826001600160a01b031661310f826121e6565b6001600160a01b0316146131355760405162461bcd60e51b81526004016112859061472c565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6131cf8282612670565b611aa7576000828152600a602090815260408083206001600160a01b03851684529091529020805460ff191660011790556132073390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6132558282612670565b15611aa7576000828152600a602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6002600b54036133045760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401611285565b6002600b55565b816001600160a01b0316836001600160a01b03160361336c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401611285565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6133e4848484613054565b6133f08484848461356b565b611fc75760405162461bcd60e51b815260040161128590614771565b6060600c8054611167906144ed565b606060006134288361366c565b600101905060008167ffffffffffffffff81111561344857613448614192565b6040519080825280601f01601f191660200182016040528015613472576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461347c57509392505050565b60006001600160e01b0319821663780e9d6360e01b1480610e845750610e8482613744565b6134dd8282612670565b611aa7576134ea81613794565b6134f58360206137a6565b6040516020016135069291906147c3565b60408051601f198184030181529082905262461bcd60e51b825261128591600401613f30565b6135368383613942565b613543600084848461356b565b6111535760405162461bcd60e51b815260040161128590614771565b611fc784848484613adb565b60006001600160a01b0384163b1561366157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906135af903390899088908890600401614838565b6020604051808303816000875af19250505080156135ea575060408051601f3d908101601f191682019092526135e791810190614875565b60015b613647573d808015613618576040519150601f19603f3d011682016040523d82523d6000602084013e61361d565b606091505b50805160000361363f5760405162461bcd60e51b815260040161128590614771565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061304c565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106136ab5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106136d7576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106136f557662386f26fc10000830492506010015b6305f5e100831061370d576305f5e100830492506008015b612710831061372157612710830492506004015b60648310613733576064830492506002015b600a8310610e845760010192915050565b60006001600160e01b031982166380ac58cd60e01b148061377557506001600160e01b03198216635b5e139f60e01b145b80610e8457506301ffc9a760e01b6001600160e01b0319831614610e84565b6060610e846001600160a01b03831660145b606060006137b5836002614664565b6137c09060026144da565b67ffffffffffffffff8111156137d8576137d8614192565b6040519080825280601f01601f191660200182016040528015613802576020820181803683370190505b509050600360fc1b8160008151811061381d5761381d61464e565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061384c5761384c61464e565b60200101906001600160f81b031916908160001a9053506000613870846002614664565b61387b9060016144da565b90505b60018111156138f3576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106138af576138af61464e565b1a60f81b8282815181106138c5576138c561464e565b60200101906001600160f81b031916908160001a90535060049490941c936138ec81614892565b905061387e565b508315612aa05760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401611285565b6001600160a01b0382166139985760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401611285565b6000818152600260205260409020546001600160a01b0316156139fd5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401611285565b613a0b60008383600161355f565b6000818152600260205260409020546001600160a01b031615613a705760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401611285565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b613ae784848484613c1b565b6001811115613b565760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b6064820152608401611285565b816001600160a01b038516613bb257613bad81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b613bd5565b836001600160a01b0316856001600160a01b031614613bd557613bd58582613ca3565b6001600160a01b038416613bf157613bec81613d40565b613c14565b846001600160a01b0316846001600160a01b031614613c1457613c148482613def565b5050505050565b6001811115611fc7576001600160a01b03841615613c61576001600160a01b03841660009081526003602052604081208054839290613c5b90849061467b565b90915550505b6001600160a01b03831615611fc7576001600160a01b03831660009081526003602052604081208054839290613c989084906144da565b909155505050505050565b60006001613cb0846122fc565b613cba919061467b565b600083815260076020526040902054909150808214613d0d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090613d529060019061467b565b60008381526009602052604081205460088054939450909284908110613d7a57613d7a61464e565b906000526020600020015490508060088381548110613d9b57613d9b61464e565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480613dd357613dd36148a9565b6001900381819060005260206000200160009055905550505050565b6000613dfa836122fc565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6040518061018001604052806060815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6001600160e01b0319811681146125e857600080fd5b600060208284031215613ebc57600080fd5b8135612aa081613e94565b600060208284031215613ed957600080fd5b5035919050565b60005b83811015613efb578181015183820152602001613ee3565b50506000910152565b60008151808452613f1c816020860160208601613ee0565b601f01601f19169290920160200192915050565b602081526000612aa06020830184613f04565b80356001600160a01b0381168114613f5a57600080fd5b919050565b60008060408385031215613f7257600080fd5b613f7b83613f43565b946020939093013593505050565b60006101808251818552613f9f82860182613f04565b9150506020830151602085015260408301516040850152606083015160608501526080830151608085015260a083015160a085015260c083015160c085015260e083015160e08501526101008084015181860152506101208084015181860152506101408084015181860152506101608084015181860152508091505092915050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b8281101561407757603f19888603018452614065858351613f89565b94509285019290850190600101614049565b5092979650505050505050565b6000806040838503121561409757600080fd5b50508035926020909101359150565b610180815260006140bb61018083018f613f04565b602083019d909d5250604081019a909a5260608a0198909852608089019690965260a088019490945260c087019290925260e086015261010085015261012084015261014083015261016090910152919050565b60008060006060848603121561412457600080fd5b61412d84613f43565b925061413b60208501613f43565b9150604084013590509250925092565b6000806040838503121561415e57600080fd5b8235915061416e60208401613f43565b90509250929050565b60006020828403121561418957600080fd5b612aa082613f43565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156141c3576141c3614192565b604051601f8501601f19908116603f011681019082821181831017156141eb576141eb614192565b8160405280935085815286868601111561420457600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261422f57600080fd5b612aa0838335602085016141a8565b60006020828403121561425057600080fd5b813567ffffffffffffffff81111561426757600080fd5b61304c8482850161421e565b602080825282518282018190526000919060409081850190868401855b828110156142d45781518051855286810151878601528581015186860152606080820151908601526080908101519085015260a09093019290850190600101614290565b5091979650505050505050565b60008060008060008060c087890312156142fa57600080fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b6000806040838503121561433757600080fd5b61434083613f43565b91506020830135801515811461435557600080fd5b809150509250929050565b6020808252825182820181905260009190848201906040850190845b818110156116c85783518352928401929184019160010161437c565b600080600080608085870312156143ae57600080fd5b6143b785613f43565b93506143c560208601613f43565b925060408501359150606085013567ffffffffffffffff8111156143e857600080fd5b8501601f810187136143f957600080fd5b614408878235602084016141a8565b91505092959194509250565b6000806040838503121561442757600080fd5b82359150602083013567ffffffffffffffff81111561444557600080fd5b6144518582860161421e565b9150509250929050565b6000806040838503121561446e57600080fd5b61447783613f43565b915061416e60208401613f43565b60008060006060848603121561449a57600080fd5b505081359360208301359350604090920135919050565b602081526000612aa06020830184613f89565b634e487b7160e01b600052601160045260246000fd5b80820180821115610e8457610e846144c4565b600181811c9082168061450157607f821691505b60208210810361452157634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561115357600081815260208120601f850160051c8101602086101561454e5750805b601f850160051c820191505b8181101561456d5782815560010161455a565b505050505050565b815167ffffffffffffffff81111561458f5761458f614192565b6145a38161459d84546144ed565b84614527565b602080601f8311600181146145d857600084156145c05750858301515b600019600386901b1c1916600185901b17855561456d565b600085815260208120601f198616915b82811015614607578886015182559484019460019091019084016145e8565b50858210156146255787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060018201614647576146476144c4565b5060010190565b634e487b7160e01b600052603260045260246000fd5b8082028115828204841417610e8457610e846144c4565b81810381811115610e8457610e846144c4565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b6000826146f857634e487b7160e01b600052601260045260246000fd5b500490565b6000835161470f818460208801613ee0565b835190830190614723818360208801613ee0565b01949350505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516147fb816017850160208801613ee0565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161482c816028840160208801613ee0565b01602801949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061486b90830184613f04565b9695505050505050565b60006020828403121561488757600080fd5b8151612aa081613e94565b6000816148a1576148a16144c4565b506000190190565b634e487b7160e01b600052603160045260246000fdfe59c0d2a11c10bba550df025acfaaa45dd8a81d6a494812c6b505a8d87cd62f4da2646970667358221220873a3bcd5a450b57a3b4a026aa2c56b8da08d8c422602cca71f5004853fe8c8464736f6c63430008110033

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

000000000000000000000000382305f7e5332e426fab9eebdd22f0471e69c24b00000000000000000000000085f9a6c59ebd043585f324077c0ab8231a53b3d0

-----Decoded View---------------
Arg [0] : _MagicFarm (address): 0x382305F7e5332E426fab9eeBdd22F0471e69c24b
Arg [1] : _DistributorWallet (address): 0x85f9a6C59EbD043585F324077c0Ab8231A53b3d0

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000382305f7e5332e426fab9eebdd22f0471e69c24b
Arg [1] : 00000000000000000000000085f9a6c59ebd043585f324077c0ab8231a53b3d0


Deployed Bytecode Sourcemap

221:13798:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3558:227;;;;;;;;;;-1:-1:-1;3558:227:6;;;;;:::i;:::-;;:::i;:::-;;;565:14:18;;558:22;540:41;;528:2;513:18;3558:227:6;;;;;;;;1923:449;;;;;;;;;;-1:-1:-1;1923:449:6;;;;;:::i;:::-;;:::i;:::-;;2484:100:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3996:171::-;;;;;;;;;;-1:-1:-1;3996:171:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:18;;;1679:51;;1667:2;1652:18;3996:171:4;1533:203:18;3514:416:4;;;;;;;;;;-1:-1:-1;3514:416:4;;;;;:::i;:::-;;:::i;9619:465:6:-;;;;;;;;;;-1:-1:-1;9619:465:6;;;;;:::i;:::-;;:::i;:::-;;;;2437:25:18;;;2493:2;2478:18;;2471:34;;;;2521:18;;;2514:34;;;;2579:2;2564:18;;2557:34;2622:3;2607:19;;2600:35;2424:3;2409:19;9619:465:6;2178:463:18;11274:636:6;;;;;;;;;;-1:-1:-1;11274:636:6;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7156:268::-;;;;;;;;;;-1:-1:-1;7156:268:6;;;;;:::i;:::-;;:::i;1401:23::-;;;;;;;;;;-1:-1:-1;1401:23:6;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;;;;;:::i;6118:226::-;;;;;;;;;;-1:-1:-1;6118:226:6;;;;;:::i;:::-;;:::i;8850:158::-;;;;;;;;;;-1:-1:-1;8850:158:6;;;;;:::i;:::-;;:::i;:::-;;;5853:25:18;;;5841:2;5826:18;8850:158:6;5707:177:18;1673:113:5;;;;;;;;;;-1:-1:-1;1761:10:5;:17;1673:113;;6356:268:6;;;;;;;;;;-1:-1:-1;6356:268:6;;;;;:::i;:::-;;:::i;4696:301:4:-;;;;;;;;;;-1:-1:-1;4696:301:4;;;;;:::i;:::-;;:::i;4470:131:0:-;;;;;;;;;;-1:-1:-1;4470:131:0;;;;;:::i;:::-;4544:7;4571:12;;;:6;:12;;;;;:22;;;;4470:131;513:36:6;;;;;;;;;;;;;;;;4911:147:0;;;;;;;;;;-1:-1:-1;4911:147:0;;;;;:::i;:::-;;:::i;1341:256:5:-;;;;;;;;;;-1:-1:-1;1341:256:5;;;;;:::i;:::-;;:::i;1251:50:6:-;;;;;;;;;;-1:-1:-1;1251:50:6;;;;;:::i;:::-;;;;;;;;;;;;;;8140:141;;;;;;;;;;-1:-1:-1;8140:141:6;;;;;:::i;:::-;;:::i;6055:218:0:-;;;;;;;;;;-1:-1:-1;6055:218:0;;;;;:::i;:::-;;:::i;5439:208:6:-;;;;;;;;;;-1:-1:-1;5439:208:6;;;;;:::i;:::-;;:::i;4709:243::-;;;;;;;;;;-1:-1:-1;4709:243:6;;;;;:::i;:::-;;:::i;1354:40::-;;;;;;;;;;-1:-1:-1;1354:40:6;;;;;:::i;:::-;;:::i;5068:151:4:-;;;;;;;;;;-1:-1:-1;5068:151:4;;;;;:::i;:::-;;:::i;1659:113:6:-;;;;;;;;;;-1:-1:-1;1659:113:6;;;;;:::i;:::-;;:::i;589:26::-;;;;;;;;;;;;;;;;1863:233:5;;;;;;;;;;-1:-1:-1;1863:233:5;;;;;:::i;:::-;;:::i;2387:577:6:-;;;;;;:::i;:::-;;:::i;12576:203::-;;;;;;;;;;-1:-1:-1;12576:203:6;;;;;:::i;:::-;;:::i;3798:114::-;;;;;;;;;;-1:-1:-1;3798:114:6;;;;;:::i;:::-;;:::i;10569:692::-;;;;;;;;;;-1:-1:-1;10569:692:6;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;672:28::-;;;;;;;;;;;;;;;;2194:223:4;;;;;;;;;;-1:-1:-1;2194:223:4;;;;;:::i;:::-;;:::i;9341:128:6:-;;;;;;;;;;-1:-1:-1;9341:128:6;;;;;:::i;:::-;;:::i;1925:207:4:-;;;;;;;;;;-1:-1:-1;1925:207:4;;;;;:::i;:::-;;:::i;8289:107:6:-;;;;;;;;;;-1:-1:-1;8375:13:6;;8289:107;;1204:40;;;;;;;;;;-1:-1:-1;1204:40:6;;;;;:::i;:::-;;;;;;;;;;;;;;7918:210;;;;;;;;;;-1:-1:-1;7918:210:6;;;;;:::i;:::-;;:::i;13026:988::-;;;;;;:::i;:::-;;:::i;4964:461::-;;;;;;;;;;-1:-1:-1;4964:461:6;;;;;:::i;:::-;;:::i;2943:147:0:-;;;;;;;;;;-1:-1:-1;2943:147:0;;;;;:::i;:::-;;:::i;2653:104:4:-;;;;;;;;;;;;;:::i;12787:231:6:-;;;;;;;;;;-1:-1:-1;12787:231:6;;;;;:::i;:::-;;:::i;1308:39::-;;;;;;;;;;-1:-1:-1;1308:39:6;;;;;:::i;:::-;;;;;;;;;;;;;;;;7700:210;;;;;;;;;;-1:-1:-1;7700:210:6;;;;;:::i;:::-;;:::i;735:28::-;;;;;;;;;;;;;;;;2048:49:0;;;;;;;;;;-1:-1:-1;2048:49:0;2093:4;2048:49;;4239:155:4;;;;;;;;;;-1:-1:-1;4239:155:4;;;;;:::i;:::-;;:::i;8704:138:6:-;;;;;;;;;;-1:-1:-1;8704:138:6;;;;;:::i;:::-;;:::i;11922:646::-;;;;;;;;;;-1:-1:-1;11922:646:6;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;5659:217::-;;;;;;;;;;-1:-1:-1;5659:217:6;;;;;:::i;:::-;;:::i;9199:130::-;;;;;;;;;;-1:-1:-1;9199:130:6;;;;;:::i;:::-;;:::i;8546:150::-;;;;;;;;;;-1:-1:-1;8546:150:6;;;;;:::i;:::-;;:::i;437:32::-;;;;;;;;;;-1:-1:-1;437:32:6;;;;-1:-1:-1;;;;;437:32:6;;;4506:195;;;;;;;;;;-1:-1:-1;4506:195:6;;;;;:::i;:::-;;:::i;5290:279:4:-;;;;;;;;;;-1:-1:-1;5290:279:4;;;;;:::i;:::-;;:::i;1778:137:6:-;;;;;;;;;;-1:-1:-1;1778:137:6;;;;;:::i;:::-;;:::i;2976:261::-;;;;;;;;;;-1:-1:-1;2976:261:6;;;;;:::i;:::-;;:::i;2828:281:4:-;;;;;;;;;;-1:-1:-1;2828:281:4;;;;;:::i;:::-;;:::i;6900:248:6:-;;;;;;;;;;-1:-1:-1;6900:248:6;;;;;:::i;:::-;;:::i;5351:149:0:-;;;;;;;;;;-1:-1:-1;5351:149:0;;;;;:::i;:::-;;:::i;10096:461:6:-;;;;;;;;;;-1:-1:-1;10096:461:6;;;;;:::i;:::-;;:::i;332:72::-;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;332:72:6;;8402:131;;;;;;;;;;-1:-1:-1;8402:131:6;;;;;:::i;:::-;;:::i;476:30::-;;;;;;;;;;-1:-1:-1;476:30:6;;;;-1:-1:-1;;;;;476:30:6;;;4465:164:4;;;;;;;;;;-1:-1:-1;4465:164:4;;;;;:::i;:::-;-1:-1:-1;;;;;4586:25:4;;;4562:4;4586:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4465:164;1550:103:6;;;;;;;;;;-1:-1:-1;1550:103:6;;;;;:::i;:::-;;:::i;1433:111::-;;;;;;;;;;-1:-1:-1;1433:111:6;;;;;:::i;:::-;;:::i;4031:463::-;;;;;;;;;;-1:-1:-1;4031:463:6;;;;;:::i;:::-;;:::i;9021:169::-;;;;;;;;;;-1:-1:-1;9021:169:6;;;;;:::i;:::-;9100:20;9150:32;;;:22;:32;;;;;;;9021:169;7432:260;;;;;;;;;;-1:-1:-1;7432:260:6;;;;;:::i;:::-;;:::i;6636:252::-;;;;;;;;;;-1:-1:-1;6636:252:6;;;;;:::i;:::-;;:::i;556:26::-;;;;;;;;;;;;;;;;9482:129;;;;;;;;;;-1:-1:-1;9482:129:6;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;5886:222::-;;;;;;;;;;-1:-1:-1;5886:222:6;;;;;:::i;:::-;;:::i;3558:227::-;3712:4;3741:36;3765:11;3741:23;:36::i;:::-;3734:43;3558:227;-1:-1:-1;;3558:227:6:o;1923:449::-;2093:4:0;2539:16;2093:4;2539:10;:16::i;:::-;2052:10:6::1;;2041:6;2027:13;;:20;;;;:::i;:::-;2026:36;;2018:45;;;::::0;::::1;;2079:6;2074:291;2092:6;2090:1;:8;2074:291;;;2116:38;2126:10;2138:13;;2152:1;2138:15;;;;:::i;:::-;2116:9;:38::i;:::-;2178:32;::::0;;;;;;;-1:-1:-1;2178:32:6::1;::::0;::::1;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;2192:1:::1;2178:32:::0;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2178:32:6;;;;;-1:-1:-1;2178:32:6;;;;;-1:-1:-1;2178:32:6;;;;;-1:-1:-1;2178:32:6;;;;;-1:-1:-1;2178:32:6;;;;;2165:7:::1;:46:::0;;;;::::1;::::0;;;;;;;2178:32;;2165:46:::1;;::::0;::::1;::::0;;;::::1;::::0;;::::1;:::i;:::-;-1:-1:-1::0;2165:46:6::1;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;;;;::::1;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;;;;2243:26;;;;::::1;::::0;;-1:-1:-1;2243:26:6;;;;;::::1;::::0;;;;;;;;;;;;;;;;;;;;;2222:15:::1;:48:::0;;;;::::1;::::0;;;;;;;;;;::::1;::::0;;::::1;::::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2281:13:::1;:18:::0;;:13;;-1:-1:-1;2281:18:6::1;::::0;2165:46;;2281:18:::1;:::i;:::-;::::0;;;-1:-1:-1;;2328:13:6::1;::::0;2315:38:::1;::::0;2342:10:::1;::::0;2328:13;2315:38:::1;::::0;;;::::1;2100:3:::0;::::1;::::0;::::1;:::i;:::-;;;;2074:291;;;;1923:449:::0;;:::o;2484:100:4:-;2538:13;2571:5;2564:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2484:100;:::o;3996:171::-;4072:7;4092:23;4107:7;4092:14;:23::i;:::-;-1:-1:-1;4135:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;4135:24:4;;3996:171::o;3514:416::-;3595:13;3611:23;3626:7;3611:14;:23::i;:::-;3595:39;;3659:5;-1:-1:-1;;;;;3653:11:4;:2;-1:-1:-1;;;;;3653:11:4;;3645:57;;;;-1:-1:-1;;;3645:57:4;;16009:2:18;3645:57:4;;;15991:21:18;16048:2;16028:18;;;16021:30;16087:34;16067:18;;;16060:62;-1:-1:-1;;;16138:18:18;;;16131:31;16179:19;;3645:57:4;;;;;;;;;736:10:2;-1:-1:-1;;;;;3737:21:4;;;;:62;;-1:-1:-1;3762:37:4;3779:5;736:10:2;4465:164:4;:::i;3762:37::-;3715:173;;;;-1:-1:-1;;;3715:173:4;;16411:2:18;3715:173:4;;;16393:21:18;16450:2;16430:18;;;16423:30;16489:34;16469:18;;;16462:62;16560:31;16540:18;;;16533:59;16609:19;;3715:173:4;16209:425:18;3715:173:4;3901:21;3910:2;3914:7;3901:8;:21::i;9619:465:6:-;9699:16;9726:10;9747:19;9777:10;9798:17;9837:20;9860:7;9868:8;9860:17;;;;;;;;:::i;:::-;;;;;;;;;;;9837:40;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9902:6;:18;;;9888:32;;9939:6;:12;;;9931:20;;9979:6;:21;;;9962:38;;10019:6;:12;;;10011:20;;10057:6;:19;;;10042:34;;9826:258;9619:465;;;;;;;:::o;11274:636::-;11333:15;11371:16;11390:10;:6;11397:3;11390:10;:::i;:::-;:14;;11403:1;11390:14;:::i;:::-;11371:33;-1:-1:-1;11415:14:6;11456:17;11371:33;11470:3;11456:17;:::i;:::-;11440:13;;:33;:93;;11516:17;:11;11530:3;11516:17;:::i;:::-;11504:29;;;11440:93;;;-1:-1:-1;11488:13:6;;;11440:93;-1:-1:-1;11544:17:6;11564:23;11576:11;11564:9;:23;:::i;:::-;:27;;11590:1;11564:27;:::i;:::-;11544:47;;11602:26;11644:12;11631:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;11602:55:6;-1:-1:-1;11668:17:6;11710:11;11696:179;11728:9;11723:1;:14;11696:179;;11756:21;11780:7;11788:1;11780:10;;;;;;;;:::i;:::-;;;;;;;;;;;11756:34;;11829:6;11802:33;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:10;11813:12;11802:24;;;;;;;;:::i;:::-;;;;;;;;;;:33;11846:17;11862:1;11846:17;;:::i;:::-;;;11744:131;11739:3;;;;;:::i;:::-;;;;11696:179;;;-1:-1:-1;11892:10:6;;11274:636;-1:-1:-1;;;;;;11274:636:6:o;7156:268::-;-1:-1:-1;;;;;;;;;;;2539:16:0;2550:4;2539:10;:16::i;:::-;7274:22:6::1;::::0;;;:12:::1;:22;::::0;;;;;:27;7266:36:::1;;;::::0;::::1;;7312:34;7349:15;7365:8;7349:25;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;7384:19:::1;7349:25;::::0;;::::1;;7384:19;:32:::0;;;;-1:-1:-1;;;7156:268:6:o;1401:23::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6118:226::-;-1:-1:-1;;;;;;;;;;;2539:16:0;2550:4;2539:10;:16::i;:::-;6228:21:6::1;6252:7;6260:8;6252:17;;;;;;;;:::i;:::-;;;;;;;;;;;6228:41;;6330:6;6306;:21;;;:30;;;;:::i;:::-;6282:21;::::0;;::::1;:54:::0;-1:-1:-1;;;6118:226:6:o;8850:158::-;8922:20;8960:7;8968:8;8960:17;;;;;;;;:::i;:::-;;;;;;;;;;;:40;;;8953:47;;8850:158;;;:::o;6356:268::-;-1:-1:-1;;;;;;;;;;;2539:16:0;2550:4;2539:10;:16::i;:::-;6474:22:6::1;::::0;;;:12:::1;:22;::::0;;;;;:27;6466:36:::1;;;::::0;::::1;;6512:34;6549:15;6565:8;6549:25;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;6584:32:::0;;;;-1:-1:-1;;;6356:268:6:o;4696:301:4:-;4857:41;736:10:2;4890:7:4;4857:18;:41::i;:::-;4849:99;;;;-1:-1:-1;;;4849:99:4;;;;;;;:::i;:::-;4961:28;4971:4;4977:2;4981:7;4961:9;:28::i;4911:147:0:-;4544:7;4571:12;;;:6;:12;;;;;:22;;;2539:16;2550:4;2539:10;:16::i;:::-;5025:25:::1;5036:4;5042:7;5025:10;:25::i;1341:256:5:-:0;1438:7;1474:23;1491:5;1474:16;:23::i;:::-;1466:5;:31;1458:87;;;;-1:-1:-1;;;1458:87:5;;17693:2:18;1458:87:5;;;17675:21:18;17732:2;17712:18;;;17705:30;17771:34;17751:18;;;17744:62;-1:-1:-1;;;17822:18:18;;;17815:41;17873:19;;1458:87:5;17491:407:18;1458:87:5;-1:-1:-1;;;;;;1563:19:5;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1341:256::o;8140:141:6:-;8205:12;8237:15;8253:8;8237:25;;;;;;;;:::i;:::-;;;;;;;;;;;:36;;;8230:43;;8140:141;;;:::o;6055:218:0:-;-1:-1:-1;;;;;6151:23:0;;736:10:2;6151:23:0;6143:83;;;;-1:-1:-1;;;6143:83:0;;18105:2:18;6143:83:0;;;18087:21:18;18144:2;18124:18;;;18117:30;18183:34;18163:18;;;18156:62;-1:-1:-1;;;18234:18:18;;;18227:45;18289:19;;6143:83:0;17903:411:18;6143:83:0;6239:26;6251:4;6257:7;6239:11;:26::i;:::-;6055:218;;:::o;5439:208:6:-;-1:-1:-1;;;;;;;;;;;2539:16:0;2550:4;2539:10;:16::i;:::-;5549:21:6::1;5573:7;5581:8;5573:17;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;5601:29:::1;5573:17;::::0;;::::1;;5601:29;:38:::0;;;;-1:-1:-1;;;5439:208:6:o;4709:243::-;-1:-1:-1;;;;;;;;;;;2539:16:0;2550:4;2539:10;:16::i;:::-;4810:21:6::1;4834:7;4842:8;4834:17;;;;;;;;:::i;:::-;;;;;;;;;;;4810:41;;4892:6;4877;:12;;;:21;;;;:::i;:::-;4862:12;::::0;::::1;:36:::0;;;4914:30:::1;::::0;5853:25:18;;;4922:8:6;;4914:30:::1;::::0;5841:2:18;5826:18;4914:30:6::1;;;;;;;;4799:153;4709:243:::0;;;:::o;1354:40::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1354:40:6;;;;;:::o;5068:151:4:-;5172:39;5189:4;5195:2;5199:7;5172:39;;;;;;;;;;;;:16;:39::i;1659:113:6:-;2093:4:0;2539:16;2093:4;2539:10;:16::i;:::-;-1:-1:-1;1737:17:6::1;:27:::0;;-1:-1:-1;;;;;;1737:27:6::1;-1:-1:-1::0;;;;;1737:27:6;;;::::1;::::0;;;::::1;::::0;;1659:113::o;1863:233:5:-;1938:7;1974:30;1761:10;:17;;1673:113;1974:30;1966:5;:38;1958:95;;;;-1:-1:-1;;;1958:95:5;;18521:2:18;1958:95:5;;;18503:21:18;18560:2;18540:18;;;18533:30;18599:34;18579:18;;;18572:62;-1:-1:-1;;;18650:18:18;;;18643:42;18702:19;;1958:95:5;18319:408:18;1958:95:5;2071:10;2082:5;2071:17;;;;;;;;:::i;:::-;;;;;;;;;2064:24;;1863:233;;;:::o;2387:577:6:-;2476:1;2468:6;:9;;2460:18;;;;;;2489:13;2512:12;;2505:6;:19;;;;:::i;:::-;2489:35;;2556:5;2543:9;:18;2535:27;;;;;;2607:10;;2596:6;2582:13;;:20;;;;:::i;:::-;2581:36;;2573:45;;;;;;2634:6;2629:275;2647:6;2645:1;:8;2629:275;;;2671:30;2681:2;2685:13;;2699:1;2685:15;;;;:::i;2671:30::-;2729:1;2712:13;;:18;;;;;;;:::i;:::-;;;;-1:-1:-1;;2754:32:6;;;;;;;;-1:-1:-1;2754:32:6;;;;;;;;;;;;;;;;;;;;2768:1;2754:32;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2754:32:6;;;;;-1:-1:-1;2754:32:6;;;;;-1:-1:-1;2754:32:6;;;;;-1:-1:-1;2754:32:6;;;;;-1:-1:-1;2754:32:6;;;;;2741:7;:46;;;;;;;;;;;;2754:32;;2741:46;;;;;;;;;;;:::i;:::-;-1:-1:-1;2741:46:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2819:26;;;;;;;-1:-1:-1;2819:26:6;;;;;;;;;;;;;;;;;;;;;;;;;;;2798:15;:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2875:13;;2862:30;;-1:-1:-1;;;;;2862:30:6;;;2875:13;2862:30;;;2655:3;;;;:::i;:::-;;;;2629:275;;;-1:-1:-1;2922:17:6;;2914:42;;-1:-1:-1;;;;;2922:17:6;;;;2914:42;;;;;2950:5;;2922:17;2914:42;2922:17;2914:42;2950:5;2922:17;2914:42;;;;;;;;;;;;;;;;;;;;;2449:515;2387:577;;:::o;12576:203::-;12675:10;12654:17;12662:8;12654:7;:17::i;:::-;-1:-1:-1;;;;;12654:31:6;;12646:40;;;;;;12697:22;;;;:12;:22;;;;;;;:30;;;12743:28;12710:8;;12743:28;;;;12722:5;5853:25:18;;5841:2;5826:18;;5707:177;12743:28:6;;;;;;;;12576:203;;:::o;3798:114::-;2093:4:0;2539:16;2093:4;2539:10;:16::i;:::-;3890:4:6::1;:14;3897:7:::0;3890:4;:14:::1;:::i;10569:692::-:0;10637:24;10674:16;10693:10;:6;10700:3;10693:10;:::i;:::-;:14;;10706:1;10693:14;:::i;:::-;10674:33;-1:-1:-1;10718:14:6;10759:17;10674:33;10773:3;10759:17;:::i;:::-;10743:13;;:33;:93;;10819:17;:11;10833:3;10819:17;:::i;:::-;10807:29;;;10743:93;;;-1:-1:-1;10791:13:6;;;10743:93;-1:-1:-1;10847:17:6;10867:23;10879:11;10867:9;:23;:::i;:::-;:27;;10893:1;10867:27;:::i;:::-;10847:47;;10905:37;10967:12;10945:35;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10945:35:6;;;;;;;;;;;;;;;;-1:-1:-1;10905:75:6;-1:-1:-1;10991:17:6;11033:11;11019:205;11051:9;11046:1;:14;11019:205;;11079:33;11115:15;11131:1;11115:18;;;;;;;;:::i;:::-;;;;;;;;;;;11079:54;;11174:9;11145:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:12;11158;11145:26;;;;;;;;:::i;:::-;;;;;;;;;;:38;11195:17;11211:1;11195:17;;:::i;:::-;;;11067:157;11062:3;;;;;:::i;:::-;;;;11019:205;;2194:223:4;2266:7;6927:16;;;:7;:16;;;;;;-1:-1:-1;;;;;6927:16:4;;2330:56;;;;-1:-1:-1;;;2330:56:4;;18934:2:18;2330:56:4;;;18916:21:18;18973:2;18953:18;;;18946:30;-1:-1:-1;;;18992:18:18;;;18985:54;19056:18;;2330:56:4;18732:348:18;9341:128:6;9402:19;9439:7;9447:8;9439:17;;;;;;;;:::i;:::-;;;;;;;;;;;:22;;9432:29;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9341:128;;;:::o;1925:207:4:-;1997:7;-1:-1:-1;;;;;2025:19:4;;2017:73;;;;-1:-1:-1;;;2017:73:4;;19287:2:18;2017:73:4;;;19269:21:18;19326:2;19306:18;;;19299:30;19365:34;19345:18;;;19338:62;-1:-1:-1;;;19416:18:18;;;19409:39;19465:19;;2017:73:4;19085:405:18;2017:73:4;-1:-1:-1;;;;;;2108:16:4;;;;;:9;:16;;;;;;;1925:207::o;7918:210:6:-;-1:-1:-1;;;;;;;;;;;2539:16:0;2550:4;2539:10;:16::i;:::-;8022:21:6::1;8046:7;8054:8;8046:17;;;;;;;;:::i;:::-;;;;;;;;;;;8022:41;;8114:6;8094;:17;;;:26;;;;:::i;:::-;8074:17;::::0;;::::1;:46:::0;-1:-1:-1;;;7918:210:6:o;13026:988::-;2311:21:15;:19;:21::i;:::-;13109:10:6::1;13122:22:::0;;;:12:::1;:22;::::0;;;;;;13172:17:::1;13135:8:::0;13172:7:::1;:17::i;:::-;13155:34:::0;-1:-1:-1;13216:10:6::1;13245:9:::0;13237:18:::1;;;::::0;::::1;;13287:5;13274:9;:18;13266:27;;;::::0;::::1;;13321:6;-1:-1:-1::0;;;;;13312:15:6::1;:5;-1:-1:-1::0;;;;;13312:15:6::1;::::0;13304:24:::1;;;::::0;::::1;;13364:1;13339:22:::0;;;:12:::1;:22;::::0;;;;:26;13395:16:::1;::::0;:20:::1;::::0;13414:1:::1;13395:20;:::i;:::-;13376:16;:39:::0;13440:11:::1;::::0;:23:::1;::::0;13454:9:::1;::::0;13440:23:::1;:::i;:::-;13426:11;:37:::0;13486:11:::1;::::0;13474:9:::1;:23;:53;;13526:1;13474:53;;;13514:9;13500:11;:23;;;13474:53;;13538:23;13582:5;13574:7;;13564:9;:17;;;;:::i;:::-;:23;;;;:::i;:::-;13538:49;;13598:26;13645:5;13637:7;;13627:9;:17;;;;:::i;:::-;:23;;;;:::i;:::-;13598:52:::0;-1:-1:-1;13661:20:6::1;13598:52:::0;13684:25:::1;13694:15:::0;13684:9:::1;:25;:::i;:::-;:44;;;;:::i;:::-;13739:38;::::0;13661:67;;-1:-1:-1;;;;;;13739:24:6;::::1;::::0;:38;::::1;;;::::0;13661:67;;13739:38:::1;::::0;;;13661:67;13739:24;:38;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;13796:15:6::1;::::0;13788:50:::1;::::0;-1:-1:-1;;;;;13796:15:6;;::::1;::::0;13788:50;::::1;;;::::0;13822:15;;13796::::1;13788:50:::0;13796:15;13788:50;13822:15;13796;13788:50;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;13857:17:6::1;::::0;13849:55:::1;::::0;-1:-1:-1;;;;;13857:17:6;;::::1;::::0;13849:55;::::1;;;::::0;13885:18;;13857:17:::1;13849:55:::0;13857:17;13849:55;13885:18;13857:17;13849:55;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;13915:34;13925:6;13933:5;13940:8;13915:9;:34::i;:::-;13965:41;::::0;;-1:-1:-1;;;;;20107:15:18;;;20089:34;;20159:15;;20154:2;20139:18;;20132:43;20191:18;;;20184:34;;;13978:8:6;;13965:41:::1;::::0;20039:2:18;20024:18;13965:41:6::1;;;;;;;13098:916;;;;;;2355:20:15::0;1749:1;2875:7;:22;2692:213;2355:20;13026:988:6;:::o;4964:461::-;-1:-1:-1;;;;;;;;;;;2539:16:0;2550:4;2539:10;:16::i;:::-;5136:21:6::1;::::0;;;:11:::1;:21;::::0;;;;;::::1;;:29;;:21:::0;:29:::1;5128:38;;;::::0;::::1;;5177:21;5201:7;5209:8;5201:17;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;5229:18;::::0;::::1;:32:::0;;;;-1:-1:-1;;5272:12:6::1;::::0;::::1;:20:::0;;;;5303:21:::1;::::0;::::1;:38:::0;;;;5352:12:::1;::::0;::::1;:20:::0;5383:19:::1;::::0;;::::1;:34:::0;-1:-1:-1;4964:461:6:o;2943:147:0:-;3029:4;3053:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;3053:29:0;;;;;;;;;;;;;;;2943:147::o;2653:104:4:-;2709:13;2742:7;2735:14;;;;;:::i;12787:231:6:-;12876:10;12855:17;12863:8;12855:7;:17::i;:::-;-1:-1:-1;;;;;12855:31:6;;12847:40;;;;;;12931:1;12906:22;;;:12;:22;;;;;;12898:35;;;;;;12969:1;12944:22;;;:12;:22;;;;;;:26;;;12986:24;12957:8;;12986:24;;;12787:231;:::o;7700:210::-;-1:-1:-1;;;;;;;;;;;2539:16:0;2550:4;2539:10;:16::i;:::-;7804:21:6::1;7828:7;7836:8;7828:17;;;;;;;;:::i;:::-;;;;;;;;;;;7804:41;;7896:6;7876;:17;;;:26;;;;:::i;4239:155:4:-:0;4334:52;736:10:2;4367:8:4;4377;4334:18;:52::i;8704:138:6:-;8771:16;8806:7;8814:8;8806:17;;;;;;;;:::i;:::-;;;;;;;;;;;:28;;;8799:35;;8704:138;;;:::o;11922:646::-;11983:13;12009:16;12028:10;:6;12035:3;12028:10;:::i;:::-;:14;;12041:1;12028:14;:::i;:::-;12009:33;-1:-1:-1;12053:14:6;12094:17;12009:33;12108:3;12094:17;:::i;:::-;12078:13;;:33;:93;;12154:17;:11;12168:3;12154:17;:::i;:::-;12142:29;;;12078:93;;;-1:-1:-1;12126:13:6;;;12078:93;-1:-1:-1;12182:17:6;12202:23;12214:11;12202:9;:23;:::i;:::-;:27;;12228:1;12202:27;:::i;:::-;12182:47;;12240:30;12284:12;12273:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12273:24:6;-1:-1:-1;12240:57:6;-1:-1:-1;12308:17:6;12350:11;12336:191;12368:9;12363:1;:14;12336:191;;12396:16;12415:15;;;:12;:15;;;;;;12442:30;;12415:15;;12442:16;;12459:12;;12442:30;;;;;;:::i;:::-;;;;;;;;;;:44;12498:17;12514:1;12498:17;;:::i;:::-;;;12384:143;12379:3;;;;;:::i;:::-;;;;12336:191;;5659:217;-1:-1:-1;;;;;;;;;;;2539:16:0;2550:4;2539:10;:16::i;:::-;5770:21:6::1;5794:7;5802:8;5794:17;;;;;;;;:::i;:::-;;;;;;;;;;;5770:41;;5862:6;5842;:17;;;:26;;;;:::i;:::-;5822:17;::::0;;::::1;:46:::0;-1:-1:-1;;;5659:217:6:o;9199:130::-;9261:18;9298:7;9306:8;9298:17;;;;;;;;:::i;:::-;;;;;;;;;;;:23;;;9291:30;;9199:130;;;:::o;8546:150::-;8617:20;8656:7;8664:8;8656:17;;;;;;;;:::i;:::-;;;;;;;;;;;:32;;;8649:39;;8546:150;;;:::o;4506:195::-;2093:4:0;2539:16;2093:4;2539:10;:16::i;:::-;-1:-1:-1;4642:32:6::1;::::0;;;:22:::1;:32;::::0;;;;;:51;4506:195::o;5290:279:4:-;5421:41;736:10:2;5454:7:4;5421:18;:41::i;:::-;5413:99;;;;-1:-1:-1;;;5413:99:4;;;;;;;:::i;:::-;5523:38;5537:4;5543:2;5547:7;5556:4;5523:13;:38::i;1778:137:6:-;2093:4:0;2539:16;2093:4;2539:10;:16::i;:::-;-1:-1:-1;1866:7:6::1;:15:::0;;;;1891:7:::1;:16:::0;1778:137::o;2976:261::-;-1:-1:-1;;;;;;;;;;;2539:16:0;2550:4;2539:10;:16::i;:::-;3113:21:6::1;3137:7;3145:8;3137:17;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;::::0;-1:-1:-1;3137:17:6;3164:21:::1;3178:7:::0;3137:17;3164:21:::1;:::i;:::-;;3212:8;3200:29;3221:7;3200:29;;;;;;:::i;2828:281:4:-:0;2901:13;2927:23;2942:7;2927:14;:23::i;:::-;2963:21;2987:10;:8;:10::i;:::-;2963:34;;3039:1;3021:7;3015:21;:25;:86;;;;;;;;;;;;;;;;;3067:7;3076:18;:7;:16;:18::i;:::-;3050:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3015:86;3008:93;2828:281;-1:-1:-1;;;2828:281:4:o;6900:248:6:-;-1:-1:-1;;;;;;;;;;;2539:16:0;2550:4;2539:10;:16::i;:::-;7008:22:6::1;::::0;;;:12:::1;:22;::::0;;;;;:27;7000:36:::1;;;::::0;::::1;;7046:34;7083:15;7099:8;7083:25;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;7118:14:::1;7083:25;::::0;;::::1;;7118:14;:22:::0;;;;-1:-1:-1;;;6900:248:6:o;5351:149:0:-;4544:7;4571:12;;;:6;:12;;;;;:22;;;2539:16;2550:4;2539:10;:16::i;:::-;5466:26:::1;5478:4;5484:7;5466:11;:26::i;10096:461:6:-:0;10173:16;10200:10;10221:9;10241:14;10266:12;10296:33;10332:15;10348:8;10332:25;;;;;;;;:::i;:::-;;;;;;;;;;10296:61;;;;;;;;10332:25;;;;;;;10296:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10296:61:6;;-1:-1:-1;10296:61:6;-1:-1:-1;10296:61:6;-1:-1:-1;10096:461:6;-1:-1:-1;;;10096:461:6:o;8402:131::-;8462:16;8497:7;8505:8;8497:17;;;;;;;;:::i;:::-;;;;;;;;;;;:28;;;8490:35;;8402:131;;;:::o;1550:103::-;2093:4:0;2539:16;2093:4;2539:10;:16::i;:::-;-1:-1:-1;1626:10:6::1;:19:::0;1550:103::o;1433:111::-;2093:4:0;2539:16;2093:4;2539:10;:16::i;:::-;-1:-1:-1;1513:12:6::1;:23:::0;1433:111::o;4031:463::-;2093:4:0;2539:16;2093:4;2539:10;:16::i;:::-;4181:21:6::1;4205:7;4213:8;4205:17;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;4233:14:::1;4205:17;::::0;;::::1;;4233:14:::0;;::::1;:25:::0;;;;4289:1:::1;4269:17;::::0;::::1;:21:::0;;;4301::::1;::::0;::::1;:25:::0;4337:29:::1;::::0;;::::1;:48:::0;;;4396:32;;;:22:::1;:32:::0;;;;;;:51;;;;4458:11:::1;:21:::0;;;-1:-1:-1;;4458:21:6;;:28;;-1:-1:-1;;4458:28:6::1;::::0;;::::1;::::0;;4031:463::o;7432:260::-;-1:-1:-1;;;;;;;;;;;2539:16:0;2550:4;2539:10;:16::i;:::-;7546:22:6::1;::::0;;;:12:::1;:22;::::0;;;;;:27;7538:36:::1;;;::::0;::::1;;7584:34;7621:15;7637:8;7621:25;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;7656:17:::1;7621:25;::::0;;::::1;;7656:17;:28:::0;;;;-1:-1:-1;;;7432:260:6:o;6636:252::-;-1:-1:-1;;;;;;;;;;;2539:16:0;2550:4;2539:10;:16::i;:::-;6746:22:6::1;::::0;;;:12:::1;:22;::::0;;;;;:27;6738:36:::1;;;::::0;::::1;;6784:34;6821:15;6837:8;6821:25;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;6856:15:::1;6821:25;::::0;;::::1;;6856:15;:24:::0;;;;-1:-1:-1;;;6636:252:6:o;9482:129::-;9546:20;;:::i;:::-;9586:7;9594:8;9586:17;;;;;;;;:::i;:::-;;;;;;;;;;;9579:24;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9482:129;;;:::o;5886:222::-;-1:-1:-1;;;;;;;;;;;2539:16:0;2550:4;2539:10;:16::i;:::-;5994:21:6::1;6018:7;6026:8;6018:17;;;;;;;;:::i;:::-;;;;;;;;;;;5994:41;;6094:6;6070;:21;;;:30;;;;:::i;2647:204:0:-:0;2732:4;-1:-1:-1;;;;;;2756:47:0;;-1:-1:-1;;;2756:47:0;;:87;;;2807:36;2831:11;2807:23;:36::i;3394:105::-;3461:30;3472:4;736:10:2;3461::0;:30::i;8165:110:4:-;8241:26;8251:2;8255:7;8241:26;;;;;;;;;;;;:9;:26::i;13559:135::-;7329:4;6927:16;;;:7;:16;;;;;;-1:-1:-1;;;;;6927:16:4;13633:53;;;;-1:-1:-1;;;13633:53:4;;18934:2:18;13633:53:4;;;18916:21:18;18973:2;18953:18;;;18946:30;-1:-1:-1;;;18992:18:18;;;18985:54;19056:18;;13633:53:4;18732:348:18;12872:174:4;12947:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;12947:29:4;-1:-1:-1;;;;;12947:29:4;;;;;;;;:24;;13001:23;12947:24;13001:14;:23::i;:::-;-1:-1:-1;;;;;12992:46:4;;;;;;;;;;;12872:174;;:::o;7559:264::-;7652:4;7669:13;7685:23;7700:7;7685:14;:23::i;:::-;7669:39;;7738:5;-1:-1:-1;;;;;7727:16:4;:7;-1:-1:-1;;;;;7727:16:4;;:52;;;-1:-1:-1;;;;;;4586:25:4;;;4562:4;4586:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7747:32;7727:87;;;;7807:7;-1:-1:-1;;;;;7783:31:4;:20;7795:7;7783:11;:20::i;:::-;-1:-1:-1;;;;;7783:31:4;;7727:87;7719:96;7559:264;-1:-1:-1;;;;7559:264:4:o;11524:1229::-;11649:4;-1:-1:-1;;;;;11622:31:4;:23;11637:7;11622:14;:23::i;:::-;-1:-1:-1;;;;;11622:31:4;;11614:81;;;;-1:-1:-1;;;11614:81:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;11714:16:4;;11706:65;;;;-1:-1:-1;;;11706:65:4;;21338:2:18;11706:65:4;;;21320:21:18;21377:2;21357:18;;;21350:30;21416:34;21396:18;;;21389:62;-1:-1:-1;;;21467:18:18;;;21460:34;21511:19;;11706:65:4;21136:400:18;11706:65:4;11784:42;11805:4;11811:2;11815:7;11824:1;11784:20;:42::i;:::-;11956:4;-1:-1:-1;;;;;11929:31:4;:23;11944:7;11929:14;:23::i;:::-;-1:-1:-1;;;;;11929:31:4;;11921:81;;;;-1:-1:-1;;;11921:81:4;;;;;;;:::i;:::-;12074:24;;;;:15;:24;;;;;;;;12067:31;;-1:-1:-1;;;;;;12067:31:4;;;;;;-1:-1:-1;;;;;12550:15:4;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;12550:20:4;;;12585:13;;;;;;;;;:18;;12067:31;12585:18;;;12625:16;;;:7;:16;;;;;;:21;;;;;;;;;;12664:27;;12090:7;;12664:27;;;2074:291:6::1;1923:449:::0;;:::o;7652:238:0:-;7736:22;7744:4;7750:7;7736;:22::i;:::-;7731:152;;7775:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;7775:29:0;;;;;;;;;:36;;-1:-1:-1;;7775:36:0;7807:4;7775:36;;;7858:12;736:10:2;;656:98;7858:12:0;-1:-1:-1;;;;;7831:40:0;7849:7;-1:-1:-1;;;;;7831:40:0;7843:4;7831:40;;;;;;;;;;7652:238;;:::o;8070:239::-;8154:22;8162:4;8168:7;8154;:22::i;:::-;8150:152;;;8225:5;8193:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;8193:29:0;;;;;;;;;;:37;;-1:-1:-1;;8193:37:0;;;8250:40;736:10:2;;8193:12:0;;8250:40;;8225:5;8250:40;8070:239;;:::o;2391:293:15:-;1793:1;2525:7;;:19;2517:63;;;;-1:-1:-1;;;2517:63:15;;21743:2:18;2517:63:15;;;21725:21:18;21782:2;21762:18;;;21755:30;21821:33;21801:18;;;21794:61;21872:18;;2517:63:15;21541:355:18;2517:63:15;1793:1;2658:7;:18;2391:293::o;13189:281:4:-;13310:8;-1:-1:-1;;;;;13301:17:4;:5;-1:-1:-1;;;;;13301:17:4;;13293:55;;;;-1:-1:-1;;;13293:55:4;;22103:2:18;13293:55:4;;;22085:21:18;22142:2;22122:18;;;22115:30;22181:27;22161:18;;;22154:55;22226:18;;13293:55:4;21901:349:18;13293:55:4;-1:-1:-1;;;;;13359:25:4;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;13359:46:4;;;;;;;;;;13421:41;;540::18;;;13421::4;;513:18:18;13421:41:4;;;;;;;13189:281;;;:::o;6450:270::-;6563:28;6573:4;6579:2;6583:7;6563:9;:28::i;:::-;6610:47;6633:4;6639:2;6643:7;6652:4;6610:22;:47::i;:::-;6602:110;;;;-1:-1:-1;;;6602:110:4;;;;;;;:::i;3922:97:6:-;3974:13;4007:4;4000:11;;;;;:::i;455:716:17:-;511:13;562:14;579:17;590:5;579:10;:17::i;:::-;599:1;579:21;562:38;;615:20;649:6;638:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;638:18:17;-1:-1:-1;615:41:17;-1:-1:-1;780:28:17;;;796:2;780:28;837:288;-1:-1:-1;;869:5:17;-1:-1:-1;;;1006:2:17;995:14;;990:30;869:5;977:44;1067:2;1058:11;;;-1:-1:-1;1088:21:17;837:288;1088:21;-1:-1:-1;1146:6:17;455:716;-1:-1:-1;;;455:716:17:o;1033:224:5:-;1135:4;-1:-1:-1;;;;;;1159:50:5;;-1:-1:-1;;;1159:50:5;;:90;;;1213:36;1237:11;1213:23;:36::i;3789:492:0:-;3878:22;3886:4;3892:7;3878;:22::i;:::-;3873:401;;4066:28;4086:7;4066:19;:28::i;:::-;4167:38;4195:4;4202:2;4167:19;:38::i;:::-;3971:257;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;3971:257:0;;;;;;;;;;-1:-1:-1;;;3917:345:0;;;;;;;:::i;8502:285:4:-;8597:18;8603:2;8607:7;8597:5;:18::i;:::-;8648:53;8679:1;8683:2;8687:7;8696:4;8648:22;:53::i;:::-;8626:153;;;;-1:-1:-1;;;8626:153:4;;;;;;;:::i;3316:234:6:-;3486:56;3513:4;3519:2;3523:7;3532:9;3486:26;:56::i;14258:853:4:-;14412:4;-1:-1:-1;;;;;14433:13:4;;1746:19:1;:23;14429:675:4;;14469:71;;-1:-1:-1;;;14469:71:4;;-1:-1:-1;;;;;14469:36:4;;;;;:71;;736:10:2;;14520:4:4;;14526:7;;14535:4;;14469:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14469:71:4;;;;;;;;-1:-1:-1;;14469:71:4;;;;;;;;;;;;:::i;:::-;;;14465:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14710:6;:13;14727:1;14710:18;14706:328;;14753:60;;-1:-1:-1;;;14753:60:4;;;;;;;:::i;14706:328::-;14984:6;14978:13;14969:6;14965:2;14961:15;14954:38;14465:584;-1:-1:-1;;;;;;14591:51:4;-1:-1:-1;;;14591:51:4;;-1:-1:-1;14584:58:4;;14429:675;-1:-1:-1;15088:4:4;14258:853;;;;;;:::o;10094:948:14:-;10147:7;;-1:-1:-1;;;10225:17:14;;10221:106;;-1:-1:-1;;;10263:17:14;;;-1:-1:-1;10309:2:14;10299:12;10221:106;10354:8;10345:5;:17;10341:106;;10392:8;10383:17;;;-1:-1:-1;10429:2:14;10419:12;10341:106;10474:8;10465:5;:17;10461:106;;10512:8;10503:17;;;-1:-1:-1;10549:2:14;10539:12;10461:106;10594:7;10585:5;:16;10581:103;;10631:7;10622:16;;;-1:-1:-1;10667:1:14;10657:11;10581:103;10711:7;10702:5;:16;10698:103;;10748:7;10739:16;;;-1:-1:-1;10784:1:14;10774:11;10698:103;10828:7;10819:5;:16;10815:103;;10865:7;10856:16;;;-1:-1:-1;10901:1:14;10891:11;10815:103;10945:7;10936:5;:16;10932:68;;10983:1;10973:11;11028:6;10094:948;-1:-1:-1;;10094:948:14:o;1556:305:4:-;1658:4;-1:-1:-1;;;;;;1695:40:4;;-1:-1:-1;;;1695:40:4;;:105;;-1:-1:-1;;;;;;;1752:48:4;;-1:-1:-1;;;1752:48:4;1695:105;:158;;;-1:-1:-1;;;;;;;;;;963:40:3;;;1817:36:4;854:157:3;2471:151:17;2529:13;2562:52;-1:-1:-1;;;;;2574:22:17;;346:2;1867:447;1942:13;1968:19;2000:10;2004:6;2000:1;:10;:::i;:::-;:14;;2013:1;2000:14;:::i;:::-;1990:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1990:25:17;;1968:47;;-1:-1:-1;;;2026:6:17;2033:1;2026:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;2026:15:17;;;;;;;;;-1:-1:-1;;;2052:6:17;2059:1;2052:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;2052:15:17;;;;;;;;-1:-1:-1;2083:9:17;2095:10;2099:6;2095:1;:10;:::i;:::-;:14;;2108:1;2095:14;:::i;:::-;2083:26;;2078:131;2115:1;2111;:5;2078:131;;;-1:-1:-1;;;2159:5:17;2167:3;2159:11;2150:21;;;;;;;:::i;:::-;;;;2138:6;2145:1;2138:9;;;;;;;;:::i;:::-;;;;:33;-1:-1:-1;;;;;2138:33:17;;;;;;;;-1:-1:-1;2196:1:17;2186:11;;;;;2118:3;;;:::i;:::-;;;2078:131;;;-1:-1:-1;2227:10:17;;2219:55;;;;-1:-1:-1;;;2219:55:17;;24582:2:18;2219:55:17;;;24564:21:18;;;24601:18;;;24594:30;24660:34;24640:18;;;24633:62;24712:18;;2219:55:17;24380:356:18;9123:942:4;-1:-1:-1;;;;;9203:16:4;;9195:61;;;;-1:-1:-1;;;9195:61:4;;24943:2:18;9195:61:4;;;24925:21:18;;;24962:18;;;24955:30;25021:34;25001:18;;;24994:62;25073:18;;9195:61:4;24741:356:18;9195:61:4;7329:4;6927:16;;;:7;:16;;;;;;-1:-1:-1;;;;;6927:16:4;7353:31;9267:58;;;;-1:-1:-1;;;9267:58:4;;25304:2:18;9267:58:4;;;25286:21:18;25343:2;25323:18;;;25316:30;25382;25362:18;;;25355:58;25430:18;;9267:58:4;25102:352:18;9267:58:4;9338:48;9367:1;9371:2;9375:7;9384:1;9338:20;:48::i;:::-;7329:4;6927:16;;;:7;:16;;;;;;-1:-1:-1;;;;;6927:16:4;7353:31;9476:58;;;;-1:-1:-1;;;9476:58:4;;25304:2:18;9476:58:4;;;25286:21:18;25343:2;25323:18;;;25316:30;25382;25362:18;;;25355:58;25430:18;;9476:58:4;25102:352:18;9476:58:4;-1:-1:-1;;;;;9883:13:4;;;;;;:9;:13;;;;;;;;:18;;9900:1;9883:18;;;9925:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9925:21:4;;;;;9964:33;9933:7;;9883:13;;9964:33;;9883:13;;9964:33;6055:218:0;;:::o;2170:915:5:-;2347:61;2374:4;2380:2;2384:12;2398:9;2347:26;:61::i;:::-;2437:1;2425:9;:13;2421:222;;;2568:63;;-1:-1:-1;;;2568:63:5;;25661:2:18;2568:63:5;;;25643:21:18;25700:2;25680:18;;;25673:30;25739:34;25719:18;;;25712:62;-1:-1:-1;;;25790:18:18;;;25783:51;25851:19;;2568:63:5;25459:417:18;2421:222:5;2673:12;-1:-1:-1;;;;;2702:18:5;;2698:187;;2737:40;2769:7;3912:10;:17;;3885:24;;;;:15;:24;;;;;:44;;;3940:24;;;;;;;;;;;;3808:164;2737:40;2698:187;;;2807:2;-1:-1:-1;;;;;2799:10:5;:4;-1:-1:-1;;;;;2799:10:5;;2795:90;;2826:47;2859:4;2865:7;2826:32;:47::i;:::-;-1:-1:-1;;;;;2899:16:5;;2895:183;;2932:45;2969:7;2932:36;:45::i;:::-;2895:183;;;3005:4;-1:-1:-1;;;;;2999:10:5;:2;-1:-1:-1;;;;;2999:10:5;;2995:83;;3026:40;3054:2;3058:7;3026:27;:40::i;:::-;2336:749;2170:915;;;;:::o;15843:410:4:-;16033:1;16021:9;:13;16017:229;;;-1:-1:-1;;;;;16055:18:4;;;16051:87;;-1:-1:-1;;;;;16094:15:4;;;;;;:9;:15;;;;;:28;;16113:9;;16094:15;:28;;16113:9;;16094:28;:::i;:::-;;;;-1:-1:-1;;16051:87:4;-1:-1:-1;;;;;16156:16:4;;;16152:83;;-1:-1:-1;;;;;16193:13:4;;;;;;:9;:13;;;;;:26;;16210:9;;16193:13;:26;;16210:9;;16193:26;:::i;:::-;;;;-1:-1:-1;;15843:410:4;;;;:::o;4599:988:5:-;4865:22;4915:1;4890:22;4907:4;4890:16;:22::i;:::-;:26;;;;:::i;:::-;4927:18;4948:26;;;:17;:26;;;;;;4865:51;;-1:-1:-1;5081:28:5;;;5077:328;;-1:-1:-1;;;;;5148:18:5;;5126:19;5148:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5199:30;;;;;;:44;;;5316:30;;:17;:30;;;;;:43;;;5077:328;-1:-1:-1;5501:26:5;;;;:17;:26;;;;;;;;5494:33;;;-1:-1:-1;;;;;5545:18:5;;;;;:12;:18;;;;;:34;;;;;;;5538:41;4599:988::o;5882:1079::-;6160:10;:17;6135:22;;6160:21;;6180:1;;6160:21;:::i;:::-;6192:18;6213:24;;;:15;:24;;;;;;6586:10;:26;;6135:46;;-1:-1:-1;6213:24:5;;6135:46;;6586:26;;;;;;:::i;:::-;;;;;;;;;6564:48;;6650:11;6625:10;6636;6625:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6730:28;;;:15;:28;;;;;;;:41;;;6902:24;;;;;6895:31;6937:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;5953:1008;;;5882:1079;:::o;3386:221::-;3471:14;3488:20;3505:2;3488:16;:20::i;:::-;-1:-1:-1;;;;;3519:16:5;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3564:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3386:221:5:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:131:18:-;-1:-1:-1;;;;;;88:32:18;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:180::-;651:6;704:2;692:9;683:7;679:23;675:32;672:52;;;720:1;717;710:12;672:52;-1:-1:-1;743:23:18;;592:180;-1:-1:-1;592:180:18:o;777:250::-;862:1;872:113;886:6;883:1;880:13;872:113;;;962:11;;;956:18;943:11;;;936:39;908:2;901:10;872:113;;;-1:-1:-1;;1019:1:18;1001:16;;994:27;777:250::o;1032:271::-;1074:3;1112:5;1106:12;1139:6;1134:3;1127:19;1155:76;1224:6;1217:4;1212:3;1208:14;1201:4;1194:5;1190:16;1155:76;:::i;:::-;1285:2;1264:15;-1:-1:-1;;1260:29:18;1251:39;;;;1292:4;1247:50;;1032:271;-1:-1:-1;;1032:271:18:o;1308:220::-;1457:2;1446:9;1439:21;1420:4;1477:45;1518:2;1507:9;1503:18;1495:6;1477:45;:::i;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:18;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:18:o;2646:940::-;2695:3;2723:6;2764:5;2758:12;2791:2;2786:3;2779:15;2815:45;2856:2;2851:3;2847:12;2833;2815:45;:::i;:::-;2803:57;;;2909:4;2902:5;2898:16;2892:23;2885:4;2880:3;2876:14;2869:47;2965:4;2958:5;2954:16;2948:23;2941:4;2936:3;2932:14;2925:47;3021:4;3014:5;3010:16;3004:23;2997:4;2992:3;2988:14;2981:47;3077:4;3070:5;3066:16;3060:23;3053:4;3048:3;3044:14;3037:47;3133:4;3126:5;3122:16;3116:23;3109:4;3104:3;3100:14;3093:47;3189:4;3182:5;3178:16;3172:23;3165:4;3160:3;3156:14;3149:47;3245:4;3238:5;3234:16;3228:23;3221:4;3216:3;3212:14;3205:47;3271:6;3324:2;3317:5;3313:14;3307:21;3302:2;3297:3;3293:12;3286:43;;3348:6;3401:2;3394:5;3390:14;3384:21;3379:2;3374:3;3370:12;3363:43;;3425:6;3478:2;3471:5;3467:14;3461:21;3456:2;3451:3;3447:12;3440:43;;3502:6;3555:2;3548:5;3544:14;3538:21;3533:2;3528:3;3524:12;3517:43;;3576:4;3569:11;;;2646:940;;;;:::o;3591:838::-;3781:4;3810:2;3850;3839:9;3835:18;3880:2;3869:9;3862:21;3903:6;3938;3932:13;3969:6;3961;3954:22;4007:2;3996:9;3992:18;3985:25;;4069:2;4059:6;4056:1;4052:14;4041:9;4037:30;4033:39;4019:53;;4107:2;4099:6;4095:15;4128:1;4138:262;4152:6;4149:1;4146:13;4138:262;;;4245:2;4241:7;4229:9;4221:6;4217:22;4213:36;4208:3;4201:49;4273:47;4313:6;4304;4298:13;4273:47;:::i;:::-;4263:57;-1:-1:-1;4378:12:18;;;;4343:15;;;;4174:1;4167:9;4138:262;;;-1:-1:-1;4417:6:18;;3591:838;-1:-1:-1;;;;;;;3591:838:18:o;4434:248::-;4502:6;4510;4563:2;4551:9;4542:7;4538:23;4534:32;4531:52;;;4579:1;4576;4569:12;4531:52;-1:-1:-1;;4602:23:18;;;4672:2;4657:18;;;4644:32;;-1:-1:-1;4434:248:18:o;4687:1015::-;5146:3;5135:9;5128:22;5109:4;5167:46;5208:3;5197:9;5193:19;5185:6;5167:46;:::i;:::-;5244:2;5229:18;;5222:34;;;;-1:-1:-1;5287:2:18;5272:18;;5265:34;;;;5330:2;5315:18;;5308:34;;;;5373:3;5358:19;;5351:35;;;;5417:3;5402:19;;5395:35;;;;5461:3;5446:19;;5439:35;;;;5505:3;5490:19;;5483:35;5549:3;5534:19;;5527:35;5593:3;5578:19;;5571:35;5637:3;5622:19;;5615:36;5682:3;5667:19;;;5660:36;5159:54;4687:1015;-1:-1:-1;4687:1015:18:o;5889:328::-;5966:6;5974;5982;6035:2;6023:9;6014:7;6010:23;6006:32;6003:52;;;6051:1;6048;6041:12;6003:52;6074:29;6093:9;6074:29;:::i;:::-;6064:39;;6122:38;6156:2;6145:9;6141:18;6122:38;:::i;:::-;6112:48;;6207:2;6196:9;6192:18;6179:32;6169:42;;5889:328;;;;;:::o;6589:254::-;6657:6;6665;6718:2;6706:9;6697:7;6693:23;6689:32;6686:52;;;6734:1;6731;6724:12;6686:52;6770:9;6757:23;6747:33;;6799:38;6833:2;6822:9;6818:18;6799:38;:::i;:::-;6789:48;;6589:254;;;;;:::o;6848:186::-;6907:6;6960:2;6948:9;6939:7;6935:23;6931:32;6928:52;;;6976:1;6973;6966:12;6928:52;6999:29;7018:9;6999:29;:::i;7039:127::-;7100:10;7095:3;7091:20;7088:1;7081:31;7131:4;7128:1;7121:15;7155:4;7152:1;7145:15;7171:632;7236:5;7266:18;7307:2;7299:6;7296:14;7293:40;;;7313:18;;:::i;:::-;7388:2;7382:9;7356:2;7442:15;;-1:-1:-1;;7438:24:18;;;7464:2;7434:33;7430:42;7418:55;;;7488:18;;;7508:22;;;7485:46;7482:72;;;7534:18;;:::i;:::-;7574:10;7570:2;7563:22;7603:6;7594:15;;7633:6;7625;7618:22;7673:3;7664:6;7659:3;7655:16;7652:25;7649:45;;;7690:1;7687;7680:12;7649:45;7740:6;7735:3;7728:4;7720:6;7716:17;7703:44;7795:1;7788:4;7779:6;7771;7767:19;7763:30;7756:41;;;;7171:632;;;;;:::o;7808:222::-;7851:5;7904:3;7897:4;7889:6;7885:17;7881:27;7871:55;;7922:1;7919;7912:12;7871:55;7944:80;8020:3;8011:6;7998:20;7991:4;7983:6;7979:17;7944:80;:::i;8035:322::-;8104:6;8157:2;8145:9;8136:7;8132:23;8128:32;8125:52;;;8173:1;8170;8163:12;8125:52;8213:9;8200:23;8246:18;8238:6;8235:30;8232:50;;;8278:1;8275;8268:12;8232:50;8301;8343:7;8334:6;8323:9;8319:22;8301:50;:::i;8362:1019::-;8599:2;8651:21;;;8721:13;;8624:18;;;8743:22;;;8570:4;;8599:2;8784;;8802:18;;;;8843:15;;;8570:4;8886:469;8900:6;8897:1;8894:13;8886:469;;;8959:13;;8997:9;;8985:22;;9047:11;;;9041:18;9027:12;;;9020:40;9100:11;;;9094:18;9080:12;;;9073:40;9136:4;9180:11;;;9174:18;9160:12;;;9153:40;9216:4;9260:11;;;9254:18;9240:12;;;9233:40;9302:4;9293:14;;;;9330:15;;;;8922:1;8915:9;8886:469;;;-1:-1:-1;9372:3:18;;8362:1019;-1:-1:-1;;;;;;;8362:1019:18:o;9386:523::-;9490:6;9498;9506;9514;9522;9530;9583:3;9571:9;9562:7;9558:23;9554:33;9551:53;;;9600:1;9597;9590:12;9551:53;-1:-1:-1;;9623:23:18;;;9693:2;9678:18;;9665:32;;-1:-1:-1;9744:2:18;9729:18;;9716:32;;9795:2;9780:18;;9767:32;;-1:-1:-1;9846:3:18;9831:19;;9818:33;;-1:-1:-1;9898:3:18;9883:19;9870:33;;-1:-1:-1;9386:523:18;-1:-1:-1;9386:523:18:o;9914:347::-;9979:6;9987;10040:2;10028:9;10019:7;10015:23;10011:32;10008:52;;;10056:1;10053;10046:12;10008:52;10079:29;10098:9;10079:29;:::i;:::-;10069:39;;10158:2;10147:9;10143:18;10130:32;10205:5;10198:13;10191:21;10184:5;10181:32;10171:60;;10227:1;10224;10217:12;10171:60;10250:5;10240:15;;;9914:347;;;;;:::o;10266:632::-;10437:2;10489:21;;;10559:13;;10462:18;;;10581:22;;;10408:4;;10437:2;10660:15;;;;10634:2;10619:18;;;10408:4;10703:169;10717:6;10714:1;10711:13;10703:169;;;10778:13;;10766:26;;10847:15;;;;10812:12;;;;10739:1;10732:9;10703:169;;10903:667;10998:6;11006;11014;11022;11075:3;11063:9;11054:7;11050:23;11046:33;11043:53;;;11092:1;11089;11082:12;11043:53;11115:29;11134:9;11115:29;:::i;:::-;11105:39;;11163:38;11197:2;11186:9;11182:18;11163:38;:::i;:::-;11153:48;;11248:2;11237:9;11233:18;11220:32;11210:42;;11303:2;11292:9;11288:18;11275:32;11330:18;11322:6;11319:30;11316:50;;;11362:1;11359;11352:12;11316:50;11385:22;;11438:4;11430:13;;11426:27;-1:-1:-1;11416:55:18;;11467:1;11464;11457:12;11416:55;11490:74;11556:7;11551:2;11538:16;11533:2;11529;11525:11;11490:74;:::i;:::-;11480:84;;;10903:667;;;;;;;:::o;11575:390::-;11653:6;11661;11714:2;11702:9;11693:7;11689:23;11685:32;11682:52;;;11730:1;11727;11720:12;11682:52;11766:9;11753:23;11743:33;;11827:2;11816:9;11812:18;11799:32;11854:18;11846:6;11843:30;11840:50;;;11886:1;11883;11876:12;11840:50;11909;11951:7;11942:6;11931:9;11927:22;11909:50;:::i;:::-;11899:60;;;11575:390;;;;;:::o;11970:260::-;12038:6;12046;12099:2;12087:9;12078:7;12074:23;12070:32;12067:52;;;12115:1;12112;12105:12;12067:52;12138:29;12157:9;12138:29;:::i;:::-;12128:39;;12186:38;12220:2;12209:9;12205:18;12186:38;:::i;12235:316::-;12312:6;12320;12328;12381:2;12369:9;12360:7;12356:23;12352:32;12349:52;;;12397:1;12394;12387:12;12349:52;-1:-1:-1;;12420:23:18;;;12490:2;12475:18;;12462:32;;-1:-1:-1;12541:2:18;12526:18;;;12513:32;;12235:316;-1:-1:-1;12235:316:18:o;12556:255::-;12733:2;12722:9;12715:21;12696:4;12753:52;12801:2;12790:9;12786:18;12778:6;12753:52;:::i;12816:127::-;12877:10;12872:3;12868:20;12865:1;12858:31;12908:4;12905:1;12898:15;12932:4;12929:1;12922:15;12948:125;13013:9;;;13034:10;;;13031:36;;;13047:18;;:::i;13078:380::-;13157:1;13153:12;;;;13200;;;13221:61;;13275:4;13267:6;13263:17;13253:27;;13221:61;13328:2;13320:6;13317:14;13297:18;13294:38;13291:161;;13374:10;13369:3;13365:20;13362:1;13355:31;13409:4;13406:1;13399:15;13437:4;13434:1;13427:15;13291:161;;13078:380;;;:::o;13589:545::-;13691:2;13686:3;13683:11;13680:448;;;13727:1;13752:5;13748:2;13741:17;13797:4;13793:2;13783:19;13867:2;13855:10;13851:19;13848:1;13844:27;13838:4;13834:38;13903:4;13891:10;13888:20;13885:47;;;-1:-1:-1;13926:4:18;13885:47;13981:2;13976:3;13972:12;13969:1;13965:20;13959:4;13955:31;13945:41;;14036:82;14054:2;14047:5;14044:13;14036:82;;;14099:17;;;14080:1;14069:13;14036:82;;;14040:3;;;13589:545;;;:::o;14310:1352::-;14436:3;14430:10;14463:18;14455:6;14452:30;14449:56;;;14485:18;;:::i;:::-;14514:97;14604:6;14564:38;14596:4;14590:11;14564:38;:::i;:::-;14558:4;14514:97;:::i;:::-;14666:4;;14730:2;14719:14;;14747:1;14742:663;;;;15449:1;15466:6;15463:89;;;-1:-1:-1;15518:19:18;;;15512:26;15463:89;-1:-1:-1;;14267:1:18;14263:11;;;14259:24;14255:29;14245:40;14291:1;14287:11;;;14242:57;15565:81;;14712:944;;14742:663;13536:1;13529:14;;;13573:4;13560:18;;-1:-1:-1;;14778:20:18;;;14896:236;14910:7;14907:1;14904:14;14896:236;;;14999:19;;;14993:26;14978:42;;15091:27;;;;15059:1;15047:14;;;;14926:19;;14896:236;;;14900:3;15160:6;15151:7;15148:19;15145:201;;;15221:19;;;15215:26;-1:-1:-1;;15304:1:18;15300:14;;;15316:3;15296:24;15292:37;15288:42;15273:58;15258:74;;15145:201;-1:-1:-1;;;;;15392:1:18;15376:14;;;15372:22;15359:36;;-1:-1:-1;14310:1352:18:o;15667:135::-;15706:3;15727:17;;;15724:43;;15747:18;;:::i;:::-;-1:-1:-1;15794:1:18;15783:13;;15667:135::o;16639:127::-;16700:10;16695:3;16691:20;16688:1;16681:31;16731:4;16728:1;16721:15;16755:4;16752:1;16745:15;16771:168;16844:9;;;16875;;16892:15;;;16886:22;;16872:37;16862:71;;16913:18;;:::i;16944:128::-;17011:9;;;17032:11;;;17029:37;;;17046:18;;:::i;17077:409::-;17279:2;17261:21;;;17318:2;17298:18;;;17291:30;17357:34;17352:2;17337:18;;17330:62;-1:-1:-1;;;17423:2:18;17408:18;;17401:43;17476:3;17461:19;;17077:409::o;19627:217::-;19667:1;19693;19683:132;;19737:10;19732:3;19728:20;19725:1;19718:31;19772:4;19769:1;19762:15;19800:4;19797:1;19790:15;19683:132;-1:-1:-1;19829:9:18;;19627:217::o;20229:496::-;20408:3;20446:6;20440:13;20462:66;20521:6;20516:3;20509:4;20501:6;20497:17;20462:66;:::i;:::-;20591:13;;20550:16;;;;20613:70;20591:13;20550:16;20660:4;20648:17;;20613:70;:::i;:::-;20699:20;;20229:496;-1:-1:-1;;;;20229:496:18:o;20730:401::-;20932:2;20914:21;;;20971:2;20951:18;;;20944:30;21010:34;21005:2;20990:18;;20983:62;-1:-1:-1;;;21076:2:18;21061:18;;21054:35;21121:3;21106:19;;20730:401::o;22255:414::-;22457:2;22439:21;;;22496:2;22476:18;;;22469:30;22535:34;22530:2;22515:18;;22508:62;-1:-1:-1;;;22601:2:18;22586:18;;22579:48;22659:3;22644:19;;22255:414::o;22674:812::-;23085:25;23080:3;23073:38;23055:3;23140:6;23134:13;23156:75;23224:6;23219:2;23214:3;23210:12;23203:4;23195:6;23191:17;23156:75;:::i;:::-;-1:-1:-1;;;23290:2:18;23250:16;;;23282:11;;;23275:40;23340:13;;23362:76;23340:13;23424:2;23416:11;;23409:4;23397:17;;23362:76;:::i;:::-;23458:17;23477:2;23454:26;;22674:812;-1:-1:-1;;;;22674:812:18:o;23491:489::-;-1:-1:-1;;;;;23760:15:18;;;23742:34;;23812:15;;23807:2;23792:18;;23785:43;23859:2;23844:18;;23837:34;;;23907:3;23902:2;23887:18;;23880:31;;;23685:4;;23928:46;;23954:19;;23946:6;23928:46;:::i;:::-;23920:54;23491:489;-1:-1:-1;;;;;;23491:489:18:o;23985:249::-;24054:6;24107:2;24095:9;24086:7;24082:23;24078:32;24075:52;;;24123:1;24120;24113:12;24075:52;24155:9;24149:16;24174:30;24198:5;24174:30;:::i;24239:136::-;24278:3;24306:5;24296:39;;24315:18;;:::i;:::-;-1:-1:-1;;;24351:18:18;;24239:136::o;25881:127::-;25942:10;25937:3;25933:20;25930:1;25923:31;25973:4;25970:1;25963:15;25997:4;25994:1;25987:15

Swarm Source

ipfs://873a3bcd5a450b57a3b4a026aa2c56b8da08d8c422602cca71f5004853fe8c84
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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