{ "cells": [ { "cell_type": "code", "execution_count": null, "id": "6ceee992", "metadata": {}, "outputs": [], "source": [ "import json\n", "import os\n", "import pandas as pd\n", "from sklearn.model_selection import train_test_split\n", "from sklearn.linear_model import LogisticRegression\n", "from sklearn.metrics import accuracy_score, classification_report\n", "from IPython.display import display\n", "\n", "pd.set_option('display.max_rows', None)\n", "pd.set_option('display.max_columns', None)\n", "pd.set_option('display.width', None)" ] }, { "cell_type": "code", "execution_count": 54, "id": "33c433dc", "metadata": {}, "outputs": [], "source": [ "features = []\n", "targets = []\n", "\n", "stock_ids = [d for d in os.listdir('./json') if os.path.isdir(os.path.join('./json', d))]\n", "\n", "for stock_id in stock_ids:\n", " json_folder = f'./json/{stock_id}'\n", " csv_file = f'./data/{stock_id}.csv'\n", "\n", " if not os.path.exists(csv_file):\n", " continue\n", "\n", " price_data = pd.read_csv(csv_file)\n", " price_data['date'] = pd.to_datetime(price_data['date'])\n", " \n", " for json_file in os.listdir(json_folder):\n", " if json_file.endswith('.json'):\n", " try:\n", " date_str = json_file.split('_')[2]\n", " start_date = pd.to_datetime(date_str)\n", " except (IndexError, ValueError):\n", " continue\n", "\n", " with open(os.path.join(json_folder, json_file), 'r') as f:\n", " data = json.load(f)\n", " if \"None\" in str(data):\n", " print(json_file,stock_id)\n", " \n", " start_price = price_data[price_data['date'] >= start_date].iloc[0]['close'] if start_date in price_data['date'].values else price_data[price_data['date'] > start_date].iloc[0]['close']\n", " start_date += pd.DateOffset(months=3)\n", " try: \n", " end_price = price_data[price_data['date'] >= start_date].iloc[0]['close'] if start_date in price_data['date'].values else price_data[price_data['date'] > start_date].iloc[0]['close']\n", " except Exception:\n", " continue\n", "\n", " period_data = price_data[(price_data['date'] >= start_date - pd.DateOffset(months=3)) & (price_data['date'] <= start_date)]\n", " lowest_price = period_data['close'].min()\n", " highest_price = period_data['close'].max()\n", " lowest_pct = abs(((lowest_price - start_price) / start_price) * 100)\n", " highest_pct = ((highest_price - start_price) / start_price) * 100\n", " targets.append(1 if highest_pct >= lowest_pct else 0)\n", " # assert(False)\n", " feature_row = {}\n", " for section, values in data.items():\n", " if isinstance(values, dict):\n", " for key, value in values.items():\n", " if isinstance(value, (int, float)):\n", " feature_row[f\"{section}_{key}\"] = value\n", " # print(feature_row)\n", " # print(pd.DataFrame([feature_row]).head())\n", " features.append(feature_row)\n", "\n", "X = pd.DataFrame(features)\n", "y = pd.Series(targets)" ] }, { "cell_type": "code", "execution_count": 59, "id": "a44afd53", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "1851" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/plain": [ "1605" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "cash_flows_Net other losses: 99.960223%\n", "cash_flows_Gain on disposal of property and equipment: 99.960223%\n", "financial_position_Contract assets non-current: 99.960223%\n", "comprehensive_income_Re-measurement loss on employees retirement benefit obligations of the Associate: 99.960223%\n", "cash_flows_Adjustments for Gain on lease modifications: 99.960223%\n", "cash_flows_Adjustment for gains resulting from subsidiary acquisition: 99.960223%\n", "cash_flows_Adjustments for Gain from disposal of right of use assets: 99.960223%\n", "cash_flows_Adjustment for rent concession: 99.960223%\n", "equity_changes_Transactions with non-controlling interest 3: 99.960223%\n", "cash_flows_Impairment of non-mine assets1: 99.960223%\n", "cash_flows_Derivative interest received2: 99.960223%\n", "cash_flows_Increase in time deposits: 99.960223%\n", "financial_position_Loan and lease liabilties: 99.960223%\n", "cash_flows_Inventory written-off: 99.960223%\n", "cash_flows_Net foreign exchange gain or loss: 99.960223%\n", "financial_position_Loans and lease liabilties: 99.960223%\n", "cash_flows_Provision for near expiry, obsolete and slow- moving inventories: 99.960223%\n", "cash_flows_Employee defined benefit costs: 99.960223%\n", "cash_flows_Provision for impairment of trade and other receivables: 99.960223%\n", "cash_flows_Net monetary loss (gain): 99.960223%\n", "cash_flows_Amount received from purchaser of a subsidiary: 99.960223%\n", "cash_flows_proceed from long term loan: 99.960223%\n", "financial_position_Loan and leaseliabilities: 99.960223%\n", "cash_flows_Impairment on non-financial assets: 99.960223%\n", "cash_flows_Acquisition of a subsidiary: 99.960223%\n", "cash_flows_Net movement in short-term loans: 99.960223%\n", "cash_flows_Provision for near expiry, obsolete and slow-moving inventories: 99.960223%\n", "cash_flows_Employee defined benefit cost: 99.960223%\n", "financial_position_time deposits: 99.960223%\n", "financial_position_Loans and lease liabilities - Current: 99.960223%\n", "cash_flows_Zakat paid.6: 99.960223%\n", "cash_flows_Payment against provision for decommissioning, site rehabilitation and dismantling obligations1: 99.960223%\n", "cash_flows_Projects and other payables . Projects .3: 99.960223%\n", "cash_flows_Impairment of property, plant and equipment1: 99.960223%\n", "cash_flows_Impairment of plant and equipment1: 99.960223%\n", "cash_flows_Severacne fee paid: 99.960223%\n", "cash_flows_Repayment of short term borrowing: 99.960223%\n", "income_statement_Adjustments for gains (losses) on disposal of property and equipment, net: 99.960223%\n", "income_statement_Other inflows (outflows) of cash, classified as investing activities: 99.960223%\n", "cash_flows_Amortization of intangible assets: 99.960223%\n", "cash_flows_Depreciation on right of-use of assets: 99.960223%\n", "cash_flows_Expected Credit Losses: 99.960223%\n", "cash_flows_Provision for Contracts Incremental Costs: 99.960223%\n", "cash_flows_Write-off of projects in progress: 99.960223%\n", "income_statement_(Provision) reversal of expected credit loss (ECLs) on trade receivables: 99.960223%\n", "financial_position_Cumulative changes in the items of other comprehensive: 99.960223%\n", "cash_flows_Reversal of provision for impairment of other receivables: 99.960223%\n", "cash_flows_Impairment (Reversal of impairment) in allowance for expected credit losses for trade receivables: 99.960223%\n", "cash_flows_Other provisions - (Reversal of other provisions): 99.960223%\n", "financial_position_Loans and lease liabiltes: 99.960223%\n", "cash_flows_Provison for impairment of financial assets: 99.960223%\n", "cash_flows_Financial assets written-off: 99.960223%\n", "financial_position_Loans and Lease Liabilities: 99.960223%\n", "cash_flows_Gain on disposal group - sale of Alanmaa: 99.960223%\n", "income_statement_Impairment of financial assets: 99.960223%\n", "cash_flows_Repayment of a related party loan: 99.960223%\n", "financial_position_Current portion of Islamic Loan Facilities: 99.960223%\n", "income_statement_Impairment loss on investment in associate: 99.960223%\n", "cash_flows_Impairment Loss on investment in SKA: 99.960223%\n", "cash_flows_Repayment of short term Murabaha loans: 99.960223%\n", "financial_position_Retemtions payable: 99.960223%\n", "cash_flows_Non-controlling interst on itnitial investment: 99.960223%\n", "cash_flows_Net movement in investment at fair value through profit or loss: 99.960223%\n", "cash_flows_Movement in long term retentions payable: 99.960223%\n", "cash_flows_Initial investment in a subsidiary by a non-controlling shareholder: 99.960223%\n", "financial_position_Current portion of Islamic loan facilities: 99.960223%\n", "cash_flows_Payments of Long Term Murabaha loans: 99.960223%\n", "cash_flows_Net movement in commercial loans: 99.960223%\n", "cash_flows_Net movement in SDIF laon: 99.960223%\n", "financial_position_Current portion of borrowings: 99.960223%\n", "financial_position_Borrowings: 99.960223%\n", "cash_flows_Reduction of share capital: 99.960223%\n", "cash_flows_interest cost of employees defined benfit plan obligation: 99.960223%\n", "cash_flows_Impairment (reversal) of trade receivables: 99.960223%\n", "cash_flows_Capital reduction: 99.960223%\n", "cash_flows_Adjustments for Other non-current liabilities: 99.960223%\n", "cash_flows_Adjustments for Long term receivables and other assets: 99.960223%\n", "cash_flows_مطلوبات غير مداولة اخرى: 99.960223%\n", "cash_flows_الزكاة وضريبة الدخل المحملة: 99.960223%\n", "financial_position_Long term receivable: 99.960223%\n", "cash_flows_Adjustment for amortization of deferred employee benefits: 99.960223%\n", "financial_position_Reserve of disposal group held for distribution/ sale: 99.960223%\n", "cash_flows_short loans movments: 99.960223%\n", "cash_flows_Adjustment in Amortization of deferred employee benefits: 99.960223%\n", "cash_flows_Adjustment fro Other non-current liabilities: 99.960223%\n", "cash_flows_Adjustment to Long term receivables and prepayments: 99.960223%\n", "cash_flows_Amortization of deferred employee benefits: 99.960223%\n", "cash_flows_Charge for impairment of trade receivables: 99.960223%\n", "financial_position_long tearm recevable: 99.960223%\n", "cash_flows_bentenchal losses: 99.960223%\n", "cash_flows_Employees cost: 99.960223%\n", "cash_flows_Employees cost 2: 99.960223%\n", "cash_flows_loans cost: 99.960223%\n", "cash_flows_zakat: 99.960223%\n", "cash_flows_revenues from received duposet: 99.960223%\n", "cash_flows_Acquisition of extra shares in a subsidiary: 99.960223%\n", "financial_position_Deferred tax libillity: 99.960223%\n", "financial_position_Trade Paybles: 99.960223%\n", "cash_flows_Gain on disposal of discontinued operations: 99.960223%\n", "cash_flows_Realized gain on investments at fair value through profit or loss: 99.960223%\n", "cash_flows_Unrealized (loss) gain on investments at fair value through profit or loss: 99.960223%\n", "equity_changes_Increase in share capital due to right issue: 99.960223%\n", "cash_flows_Gain from disposal of property, plant and equipment: 99.960223%\n", "cash_flows_share of affiliate result: 99.960223%\n", "cash_flows_Provision for impairment of doubtful other receivables write off reversal: 99.960223%\n", "cash_flows_Realized gain on disposal of equity instruments at fair value through profit or loss: 99.960223%\n", "cash_flows_Gain from disposal of investments: 99.960223%\n", "cash_flows_Purchase of equity instruments at fair value through profit and loss: 99.960223%\n", "cash_flows_Bargain purchase: 99.960223%\n", "cash_flows_collection against employee loans: 99.960223%\n", "cash_flows_Disburesment of employee loans: 99.960223%\n", "cash_flows_Finance cost elements of lease payments: 99.960223%\n", "cash_flows_write off of trade receivables: 99.960223%\n", "cash_flows_Net allowance for inventory obsolesence and slow moving: 99.960223%\n", "cash_flows_Finance Income Recevied: 99.960223%\n", "cash_flows_Employee benefit obligation paid: 99.960223%\n", "cash_flows_payment for intangible assets: 99.960223%\n", "cash_flows_investment in short term deposits: 99.960223%\n", "cash_flows_Maturity from short term deposits: 99.960223%\n", "cash_flows_Insurance claim compensation recevied: 99.960223%\n", "financial_position_current portion for long term borrowings: 99.960223%\n", "financial_position_Long Term Borrowings: 99.960223%\n", "financial_position_Lease Liabilites: 99.960223%\n", "financial_position_provision fro decommissioing obligation: 99.960223%\n", "income_statement_impairment losses on financial assets: 99.960223%\n", "income_statement_Zakat and income tax charge: 99.960223%\n", "cash_flows_Adjustment for insurance claim compensation: 99.960223%\n", "cash_flows_impariment loss on financial assets: 99.960223%\n", "cash_flows_Adjustments for Depreciation on right-of-use assets: 99.960223%\n", "cash_flows_Adjustments for Interest on lease liabilities: 99.960223%\n", "cash_flows_Adjustments for Impairment loss on trade receivables: 99.960223%\n", "cash_flows_Adjustments for Allowance for slow moving inventories: 99.960223%\n", "financial_position_Loans to employee: 99.960223%\n", "cash_flows_Loss on disposals of property and equipment: 99.960223%\n", "cash_flows_Impairment (reversal) charge on inventories: 99.960223%\n", "cash_flows_Non-cash employee expenses: 99.960223%\n", "cash_flows_Provision for employees benefits obligations: 99.960223%\n", "cash_flows_Loss on sale of property, plant and equipment: 99.960223%\n", "cash_flows_Allowance for (reversal of) slow moving inventories: 99.960223%\n", "equity_changes_Transfer of share capital: 99.960223%\n", "cash_flows_Interest on lease liabilitiess: 99.960223%\n", "cash_flows_Adjusments for Insurance claim compensation: 99.960223%\n", "cash_flows_Adjusments for Impairment loss on financial assets: 99.960223%\n", "cash_flows_Adjustment for Impairment of allowance on inventories: 99.960223%\n", "cash_flows_Loss on sale of property, plant and equipments: 99.960223%\n", "cash_flows_Employee benefit obligations paids: 99.960223%\n", "cash_flows_Finance income receiveds: 99.960223%\n", "income_statement_Sales: 99.960223%\n", "income_statement_Impairment losss on financial assets: 99.960223%\n", "income_statement_Zakat and income tax credit (charge): 99.960223%\n", "comprehensive_income_Re-measurement loss on employee benefit obligations: 99.960223%\n", "cash_flows_Unrealized lloss gain on investments at fair value through profit or loss: 99.960223%\n", "cash_flows_Unrealized loses from investments at fair value through profit or loss: 99.960223%\n", "cash_flows_Realized gain from investments at fair value through profit or loss: 99.960223%\n", "cash_flows_Derecognition gain on disposal of subsidiaries: 99.960223%\n", "cash_flows_Bargain purchase on acquisition of subsidiary (note 5): 99.960223%\n", "cash_flows_Gain on discontinued operations: 99.960223%\n", "cash_flows_Proceeds of financial instruments by fair value through other comprehensive income: 99.960223%\n", "cash_flows_Depreciation of right of used assets: 99.960223%\n", "cash_flows_.Dividends income: 99.960223%\n", "cash_flows_Loss from disposal of right of used assets: 99.960223%\n", "cash_flows_Discontinued operations: 99.960223%\n", "financial_position_Advance from customer non current portion: 99.960223%\n", "cash_flows_Impairment loss on trade receivables and other current assets: 99.960223%\n", "cash_flows_Gain from sale of property plant and equipment: 99.960223%\n", "financial_position_Unbilled receivables_current: 99.960223%\n", "cash_flows_Impairment of trade receivables and other current debit balances: 99.960223%\n", "cash_flows_Contract liabilities: 99.960223%\n", "cash_flows_Finance income collected: 99.960223%\n", "cash_flows_Movement in investments in equity instruments designated as at FVOCI: 99.960223%\n", "cash_flows_Change in investments at joint ventures: 99.960223%\n", "cash_flows_ZAKAT PAID: 99.960223%\n", "cash_flows_Provision for obsolescence inventory: 99.960223%\n", "cash_flows_from related party: 99.960223%\n", "cash_flows_Repayments of borrowings: 99.960223%\n", "cash_flows_Finance cost element of lease payments: 99.960223%\n", "cash_flows_Principal element of lease payments: 99.960223%\n", "cash_flows_Dividends: 99.960223%\n", "cash_flows_Property, plan and equipment written off: 99.960223%\n", "cash_flows_Adjustmetns for loss (gain) on sale of property and equipment: 99.960223%\n", "cash_flows_Employee related expenses: 99.960223%\n", "cash_flows_Payments for intangible assets: 99.960223%\n", "cash_flows_Investment in short-term deposits: 99.960223%\n", "cash_flows_Disbursement of employee loans: 99.960223%\n", "cash_flows_Adjustments to Inventories: 99.960223%\n", "cash_flows_Adjustments to contract liabilities: 99.960223%\n", "financial_position_Right of use assets net: 99.960223%\n", "financial_position_Contracts liabilities: 99.960223%\n", "financial_position_Advance from customer noncurrent portion: 99.960223%\n", "financial_position_Advance from a customer: 99.960223%\n", "financial_position_Unbilled receivables current: 99.960223%\n", "financial_position_Unbilled receivables_non-current: 99.960223%\n", "financial_position_Amounts due from a related party: 99.960223%\n", "financial_position_Deferred Tax Asset: 99.960223%\n", "financial_position_Short-term Murabaha: 99.960223%\n", "financial_position_Contract liabilities_Current: 99.960223%\n", "cash_flows_Impairment of fixed assets: 99.960223%\n", "cash_flows_Impairment of trade receivables and other current assets: 99.960223%\n", "cash_flows_Fair value gain (loss) on investment in financial assets at FVTPL: 99.960223%\n", "cash_flows_Loss on disposal of a foreign subsidiary: 99.960223%\n", "cash_flows_Purchases of investment in financial assets at FVTPL: 99.960223%\n", "cash_flows_Proceeds from sale of investment in financial assets at FVTPL: 99.960223%\n", "cash_flows_Proceeds from disposal of a foreign subsidiary: 99.960223%\n", "cash_flows_Increase in contract assets: 99.960223%\n", "comprehensive_income_Foreign currency translation reserve released on disposal of a foreign subsidiary: 99.960223%\n", "cash_flows_Gain on disposal of investment in financial assets at FVTPL: 99.960223%\n", "cash_flows_CHANGES IN INVENTORY: 99.960223%\n", "cash_flows_Gains on changes in fair value of investment in equity instruments: 99.960223%\n", "cash_flows_Repayments of capital reduction: 99.960223%\n", "cash_flows_Gains on changes in fair value of investment in equity instrument: 99.960223%\n", "cash_flows_Repayments of lease liability: 99.960223%\n", "cash_flows_provision for doubtful debts: 99.960223%\n", "cash_flows_interest expense: 99.960223%\n", "income_statement_Gain on disposal of investment in financial assets at fair value through profit or loss (FVTPL): 99.960223%\n", "cash_flows_Net re-measurments of loss allowance: 99.960223%\n", "cash_flows_Decrease (Incraese) in spare parts: 99.960223%\n", "cash_flows_Increase decrease in contract assets: 99.960223%\n", "cash_flows_Increase decrease in contract liabilities: 99.960223%\n", "cash_flows_Employee defined benefits liabilities paid: 99.960223%\n", "cash_flows_Proceed on disposal of a subsidiary: 99.960223%\n", "cash_flows_Lease Payment: 99.960223%\n", "cash_flows_Purchase of time deposit: 99.960223%\n", "financial_position_Assets held for sale - net: 99.960223%\n", "financial_position_Investment at fair value through proft and loss: 99.960223%\n", "financial_position_investments at fair value through profit or loss: 99.960223%\n", "financial_position_Financial Assets at fair value through profits and losses: 99.960223%\n", "financial_position_Available for sale investments: 99.960223%\n", "financial_position_Accounts payable: 99.960223%\n", "cash_flows_Adjustment for decrease (increase) in Accounts receivable: 99.960223%\n", "financial_position_Lease liability - current: 99.960223%\n", "financial_position_Lease liability - non current: 99.960223%\n", "cash_flows_Impairment of accounts receivable: 99.960223%\n", "cash_flows_Amortization for arrangement fees: 99.960223%\n", "cash_flows_Movement of capital advances: 99.960223%\n", "cash_flows_Share of loss from equity accounted investee: 99.960223%\n", "cash_flows_Movement in capital advances: 99.960223%\n", "cash_flows_Reversal for provision for onerous contracts: 99.960223%\n", "cash_flows_Disposal of right of use assets: 99.960223%\n", "cash_flows_Allowance against amounts due from subsidiary: 99.960223%\n", "cash_flows_Loss - Income on termination of a lease: 99.960223%\n", "cash_flows_Dividend payment: 99.960223%\n", "cash_flows_Gain on sub-lease: 99.960223%\n", "financial_position_Current portion lease liabilities: 99.960223%\n", "cash_flows_Provision (reversal) for expected credit losses: 99.960223%\n", "cash_flows_Amounts due from to related parties: 99.960223%\n", "cash_flows_Payment of lease liability: 99.960223%\n", "cash_flows_Share of loss from equity accounted investees: 99.960223%\n", "cash_flows_Provision for onerous contracts: 99.960223%\n", "cash_flows_Finance costs lease liabilities: 99.960223%\n", "cash_flows_Payment received on loan to equity accounted investee: 99.960223%\n", "financial_position_Concession contract receivables - Current: 99.960223%\n", "cash_flows_الحصة في الخسارة من شركات مستثمر فيها بطريقة حقوق الملكية: 99.960223%\n", "cash_flows_Purchase of right-of-use assets: 99.960223%\n", "financial_position_Actuarial valuation reserve: 99.960223%\n", "cash_flows_Allowance for expected credit losses on contract assets: 99.960223%\n", "cash_flows_Allowance for expected credit losses on trade receivables: 99.960223%\n", "cash_flows_Write-off of property and equipment: 99.960223%\n", "cash_flows_Repayment of loan from equity accounted investee: 99.960223%\n", "financial_position_Financial asset from service concession arrangement: 99.960223%\n", "cash_flows_Change in related parties balances: 99.960223%\n", "financial_position_Investment in an associate: 99.960223%\n", "financial_position_Other reserves of equity-accounted investees: 99.960223%\n", "cash_flows_Adjustments for decrease (increase) in Loss from investment at fair value through profit or loss: 99.960223%\n", "cash_flows_Adjustments for Selling investments at fair value through profit or loss: 99.960223%\n", "income_statement_Adjustment for provision for slow moving items and inventory shortage: 99.960223%\n", "income_statement_Provisions: 99.960223%\n", "financial_position_Lease liabilities - Non Current: 99.960223%\n", "comprehensive_income_Re-measurement of end of service benefit obligation: 99.960223%\n", "cash_flows_impairment loss recognized on installment sales receivable, net: 99.960223%\n", "cash_flows_Impairment recognized against inventories: 99.960223%\n", "cash_flows_Movement in foreign exchange translation: 99.960223%\n", "cash_flows_Investment in subsidiary, net of cash acquired: 99.960223%\n", "cash_flows_gain on derecognition of right-of-use assets: 99.960223%\n", "cash_flows_Gain on disposal of right of use assets: 99.960223%\n", "cash_flows_Change in capital advance: 99.960223%\n", "cash_flows_Cash and cash equivalents at the beginning of the period: 99.960223%\n", "income_statement_The Selling and marketing expenses: 99.960223%\n", "income_statement_The General and administrative expenses: 99.960223%\n", "income_statement_The allowance for impairment losses on trade receivables: 99.960223%\n", "cash_flows_The Gain on derecognition of right-of-use assets: 99.960223%\n", "cash_flows_The Purchase of vehicles: 99.960223%\n", "cash_flows_The Finance costs paid: 99.960223%\n", "cash_flows_The Employee benefits paid: 99.960223%\n", "cash_flows_Allowance for spare parts: 99.960223%\n", "cash_flows_Acquisition of a subsidiary, net of cash acquired: 99.960223%\n", "financial_position_Current portion of bank borrowings: 99.960223%\n", "cash_flows_mortisation of intangible assets: 99.960223%\n", "financial_position_Investment at fair value through other comprehensive income: 99.960223%\n", "cash_flows_Acquisition of a subsidiary, net cash acquired: 99.960223%\n", "financial_position_Advance against investment: 99.960223%\n", "cash_flows_Amortisation of the intangible assets: 99.960223%\n", "cash_flows_Investments: 99.960223%\n", "financial_position_Bank borrowings- non-current portion: 99.960223%\n", "income_statement_Net fair value loss on derivative financial instruments: 99.960223%\n", "income_statement_Expected credit loss on trade receivables: 99.960223%\n", "comprehensive_income_Remeasurement on employees defined benefits obligations: 99.960223%\n", "cash_flows_Loss on financial derivative: 99.960223%\n", "financial_position_Investment at fair value through profit and loss: 99.960223%\n", "income_statement_Profit from investment at fair value through profit and loss: 99.960223%\n", "cash_flows_Adjustments for Allowance for expected credit losses: 99.960223%\n", "cash_flows_Adjustment to Interest income from investments at amortised cost: 99.960223%\n", "cash_flows_Selling investments at fair value through profit or loss: 99.960223%\n", "cash_flows_Adjustments for Realized and unrealized profit from investment at fair value through profit and loss: 99.960223%\n", "cash_flows_Adjustments for Dividends from investments at fair value through profit or loss: 99.960223%\n", "cash_flows_Depreciation of property and equipment: 99.960223%\n", "financial_position_Zakat and foreign tax provision: 99.960223%\n", "financial_position_Right-of-use Assets: 99.960223%\n", "cash_flows_Depereciation Right-of-use Assets: 99.960223%\n", "cash_flows_Finance costs-net: 99.960223%\n", "cash_flows_Provision for employees' benefits: 99.960223%\n", "cash_flows_Short-term deposits with original maturities of more than three months: 99.960223%\n", "income_statement_Zakat reversal for prior years: 99.960223%\n", "financial_position_Financial assets and Short-term Murabaha deposits: 99.960223%\n", "cash_flows_Reversal of impairment loss on property, plant, and equipment: 99.960223%\n", "financial_position_zakat provsion: 99.960223%\n", "financial_position_lease libailities current portion: 99.960223%\n", "financial_position_lease liabilities noncurrent portion: 99.960223%\n", "income_statement_investment income: 99.960223%\n", "cash_flows_Change in financial assets at fair value through OCI: 99.960223%\n", "cash_flows_Investment in isalimc Murabaha: 99.960223%\n", "cash_flows_Financial assets at fair value through profit or losses: 99.960223%\n", "financial_position_Provision for land restoration subject to the franchise: 99.960223%\n", "income_statement_Gain on sale of property, plant, and equipment: 99.960223%\n", "comprehensive_income_loss or gain of change in fair value of financial assets at fair value through other comprehensive income: 99.960223%\n", "cash_flows_Realized gain from disposal of financial assets at fair value through profit or loss: 99.960223%\n", "cash_flows_Reversed zakat provision: 99.960223%\n", "financial_position_projects under costruction: 99.960223%\n", "financial_position_right to use assets Net: 99.960223%\n", "income_statement_Gain on sale of property, plant and equipmentt: 99.960223%\n", "comprehensive_income_(losses) Gains on financial assets at fair value through other comprehensive income: 99.960223%\n", "cash_flows_Change in the right to use the asset: 99.960223%\n", "comprehensive_income_Gain or loss of change in fair value of financial assets at fair value through other comprehensive income: 99.960223%\n", "cash_flows_Change in leasing obligations: 99.960223%\n", "cash_flows_Dividends payable: 99.960223%\n", "cash_flows_Change in lease obligations: 99.960223%\n", "financial_position_Lease liabilities current: 99.960223%\n", "cash_flows_Prior years adjustments: 99.960223%\n", "comprehensive_income_Losses,gains on financial assets at fair value through other comprehensive income: 99.960223%\n", "cash_flows_Gain, loss from associate companies: 99.960223%\n", "financial_position_Retention receivable: 99.960223%\n", "income_statement_Impairment of investment in an associate: 99.960223%\n", "financial_position_Advance to Suppliers: 99.960223%\n", "financial_position_Other non-current assetsOther Non- Current Assets: 99.960223%\n", "cash_flows_Loss on disposal of a subsidiary: 99.960223%\n", "cash_flows_Adjustment for other non current liabilities: 99.960223%\n", "cash_flows_Remeasurement gain on right of use assets and lease liabilities: 99.960223%\n", "comprehensive_income_Re-measurement for employees defined benefits: 99.960223%\n", "comprehensive_income_Gain of change in fair value of financial assets designated at fair value through other comprehensive income: 99.960223%\n", "cash_flows_Payments of financing costs: 99.960223%\n", "cash_flows_Net Finance Cost: 99.960223%\n", "comprehensive_income_Gains or losses on financial assets at fair value through: 99.960223%\n", "comprehensive_income_Difference remeasurement provision for end of service: 99.960223%\n", "financial_position_Long Term lease liability: 99.960223%\n", "financial_position_Current portion of Islamic Murabaha Contracts long-term: 99.960223%\n", "equity_changes_Transfer to general reserve: 99.960223%\n", "equity_changes_Discontinued operations: 99.960223%\n", "equity_changes_Reclassification of depreciation transferred: 99.960223%\n", "comprehensive_income_Income tax (charge) credit relating to hedges of net investment in foreign operations: 99.960223%\n", "comprehensive_income_Reclassification adjustment on hedges of net investment in foreign operations: 99.960223%\n", "equity_changes_Transfer to capital: 99.960223%\n", "cash_flows_Acquisition of other property plant and equipment: 99.960223%\n", "financial_position_Retentions receivable: 99.960223%\n", "cash_flows_Adjustments for Other finance charges: 99.960223%\n", "cash_flows_Other Interest paid, classified as operating activities: 99.960223%\n", "cash_flows_Lease Interest paid, classified as operating activities: 99.960223%\n", "cash_flows_Interest paid on loans and borrowings, classified as operating activities: 99.960223%\n", "cash_flows_Additions to Vehicles, net of advances: 99.960223%\n", "financial_position_Retention Receivable: 99.960223%\n", "cash_flows_Acquisition of other property and equipment: 99.960223%\n", "financial_position_Prepayments and other receivables: 99.960223%\n", "cash_flows_Adjustments for depreciation and impairment (reversal of impairment) of Other property plant and equipment: 99.960223%\n", "cash_flows_Income before zakat and income tax: 99.960223%\n", "cash_flows_Share of results of associates and joint ventures: 99.960223%\n", "cash_flows_Decrease in other non-current assets: 99.960223%\n", "cash_flows_Increase (decrease) in employee benefits: 99.960223%\n", "cash_flows_Increase in other non-current liabilities: 99.960223%\n", "cash_flows_The acquisitions of non controlling interests: 99.960223%\n", "cash_flows_Fair value re-measurement on assets helf for sale: 99.960223%\n", "cash_flows_Other movements, net: 99.960223%\n", "cash_flows_Interest received: 99.960223%\n", "financial_position_Property, plant and equipment and right-of-use assets: 99.960223%\n", "financial_position_Short-term borrowings, current portion of long-term debt and lease liabilities: 99.960223%\n", "financial_position_Trade payables and other current liabilities: 99.960223%\n", "financial_position_Long-term debt and lease liabilities: 99.960223%\n", "financial_position_Employee benefits: 99.960223%\n", "financial_position_Assets held for sale: 99.960223%\n", "financial_position_Liabilities directly associated with assets held for sale: 99.960223%\n", "comprehensive_income_Share of other comprehensive loss of associates and joint ventures: 99.960223%\n", "cash_flows_Changes in inventories, trade recievable and payables: 99.960223%\n", "cash_flows_Depreciation,amortisation and impairment: 99.960223%\n", "cash_flows_Proceeds from sale of property, plant and equipment: 99.960223%\n", "cash_flows_Advances on acquisitions: 99.960223%\n", "income_statement_Employee Incentive: 99.960223%\n", "cash_flows_Impairment loss on Trade and Other receivables: 99.960223%\n", "cash_flows_Employee Incentive: 99.960223%\n", "cash_flows_Adjustments for decrease (increase) in Prepayment and Other receivables: 99.960223%\n", "cash_flows_Purchase of Capital work in progress: 99.960223%\n", "cash_flows_Related parties, net: 99.960223%\n", "cash_flows_Lease interest paid: 99.960223%\n", "cash_flows_Increase in provisions and other non-current liabilities: 99.960223%\n", "cash_flows_Increase in trade payables: 99.960223%\n", "cash_flows_Increase (decrease) in accruals and other current liabilities: 99.960223%\n", "cash_flows_Dividend received from integral joint ventures: 99.960223%\n", "cash_flows_Proceeds on the maturity of investments in debt and disposals of equity instruments: 99.960223%\n", "financial_position_Long-term debt: 99.960223%\n", "comprehensive_income_Net change on revaluation of investments in equity instruments classified as fair value through other comprehensive income: 99.960223%\n", "comprehensive_income_Tax benefit: 99.960223%\n", "cash_flows_Depreciation of plant and equipment: 99.960223%\n", "cash_flows_Amortisation of intangible assets and other assets: 99.960223%\n", "cash_flows_Impairments and write-offs of plant and equipment, right-of-use assets and intangible assets: 99.960223%\n", "cash_flows_Impairment (net of reversals) of non-integral joint ventures and associates: 99.960223%\n", "cash_flows_Loss on disposals of property, plant and equipment: 99.960223%\n", "cash_flows_Dividends issues by a subsidiary to non-controlling interests: 99.960223%\n", "cash_flows_Cash and cash equivalents at the beginning of the period attributable to discounted operations: 99.960223%\n", "financial_position_Advances from subscribers: 99.960223%\n", "financial_position_Investments in debt instruments: 99.960223%\n", "financial_position_Current portion of long-term debt: 99.960223%\n", "financial_position_Contracts assets: 99.960223%\n", "financial_position_Trade receivables non-current portion: 99.960223%\n", "financial_position_Developed properties non-current portion: 99.960223%\n", "financial_position_Loan from Ministry of Finance current portion: 99.960223%\n", "cash_flows_Net proceeds from disposal of a subsidiary, net of cash disposed: 99.960223%\n", "cash_flows_Acquisition of non-controlling interests: 99.960223%\n", "cash_flows_Long-term and short-term loans, net: 99.960223%\n", "cash_flows_Write-off of PROJECT UNDER CONSTRCTION: 99.960223%\n", "cash_flows_Decline in value of investment properties: 99.960223%\n", "cash_flows_Reversal provision of expected credit losses related to prepayments and other receivables due to collections of legal cases: 99.960223%\n", "cash_flows_Derivative financial instruments: 99.960223%\n", "income_statement_Dividends income: 99.960223%\n", "income_statement_Gain on disposal of investments designated at FVPL: 99.960223%\n", "income_statement_Reversal provision of expected credit losses related to prepayments and other receivables due to collections of legal cases: 99.960223%\n", "cash_flows_Deprecation of right-of-use assets: 99.960223%\n", "cash_flows_Gain on disposal of investments designated as at FYPL: 99.960223%\n", "financial_position_Trade receivables - non-current: 99.960223%\n", "financial_position_Loan from Ministry of Finance: 99.960223%\n", "income_statement_Declined in value of investment properties: 99.960223%\n", "income_statement_Impairment of property and equipment: 99.960223%\n", "income_statement_Write-off of capital work-in-progress: 99.960223%\n", "cash_flows_Disposal of investments at FVTOCI: 99.960223%\n", "cash_flows_Impairment of gas cylinder to net realizable value: 99.960223%\n", "cash_flows_Reversal of other provision: 99.960223%\n", "cash_flows_Unrealized gain losses from investments in equity instruments: 99.960223%\n", "cash_flows_Actuarial losses on re-measurement of employee's defined benefit obligations: 99.960223%\n", "cash_flows_Proceed from selling investments held at amortized cost: 99.960223%\n", "comprehensive_income_Change in fair value of investment in equity instruments through other comprehensive income: 99.960223%\n", "cash_flows_Purchase of investments held at amortized cost: 99.960223%\n", "cash_flows_Financial assets at FVPL: 99.960223%\n", "cash_flows_Finance income received from investment at amortized cost: 99.960223%\n", "cash_flows_Dividends income from investments at FVTOCI: 99.960223%\n", "cash_flows_Addition of investments at FVTOCI: 99.960223%\n", "cash_flows_Follow up fees of term loan: 99.960223%\n", "cash_flows_Purchase of financial assets held at amortised cost: 99.960223%\n", "cash_flows_Loss on disposal of investment held at FVOCI: 99.960223%\n", "cash_flows_Disposal of(additions to) investments at FVTOCI: 99.960223%\n", "cash_flows_intangible assets transferred to expenses: 99.960223%\n", "comprehensive_income_Re measurement loss gain on employees defined benefits liabilities: 99.960223%\n", "financial_position_Work in progress: 99.960223%\n", "cash_flows_Work in progress: 99.960223%\n", "cash_flows_Write off (reversal) of property and equipment: 99.960223%\n", "cash_flows_Rent concession for leases: 99.960223%\n", "financial_position_Prepayments and other debit balances: 99.960223%\n", "cash_flows_Derecognition of ROU and Lease liability: 99.960223%\n", "cash_flows_ا Rent concession for leases: 99.960223%\n", "financial_position_Right-of-use assets, net: 99.960223%\n", "cash_flows_Purchase of financial assets held at amortized cost: 99.960223%\n", "cash_flows_Proceeds from disposal of financial assets held at fair value through other comprehensive income (FVTOCI): 99.960223%\n", "comprehensive_income_Share of other comprehensive loss from associates0: 99.960223%\n", "cash_flows_Reversal of provision for other receivables: 99.960223%\n", "cash_flows_Gain from derecognition of lease liabilities: 99.960223%\n", "cash_flows_employees benefits paid: 99.960223%\n", "cash_flows_Insurance Proceeds for business interruption losses: 99.960223%\n", "cash_flows_Insurarnce proceeds against damaged assets: 99.960223%\n", "cash_flows_adjustments for depreciation of property palnt and equipments: 99.960223%\n", "cash_flows_Adjustments for amortization of intangible assets: 99.960223%\n", "cash_flows_Write off property, plant and equipments: 99.960223%\n", "cash_flows_Adjustments for decrease (increase) in inventory: 99.960223%\n", "cash_flows_Adjustment for other non- current assets: 99.960223%\n", "cash_flows_Adjustment for accruals and other current liabilities: 99.960223%\n", "cash_flows_Addition to intangible assets: 99.960223%\n", "cash_flows_proceeds of debt: 99.960223%\n", "financial_position_Current portion of employess benefits: 99.960223%\n", "financial_position_right of use assets: 99.960223%\n", "financial_position_current portion of empolyees benfits: 99.960223%\n", "financial_position_Right -of- ues assets: 99.960223%\n", "financial_position_Cureent portion of lease liabilities: 99.960223%\n", "cash_flows_Adjustments for depreciation of property,plant and equipment: 99.960223%\n", "cash_flows_Adjustment for depreciation of right-of-use assets: 99.960223%\n", "cash_flows_Adjustment for amortisation of intangible assets: 99.960223%\n", "cash_flows_Adjustment for write -off property, plant and equipment: 99.960223%\n", "cash_flows_Adjustment for provision for write -off property, plant and equipment: 99.960223%\n", "cash_flows_Adjustment for gain on derecognition of right of use assets and lease liabilities: 99.960223%\n", "cash_flows_Reversal provision Expected credit loss CF: 99.960223%\n", "financial_position_Non-current assets classified as held for sale: 99.960223%\n", "cash_flows_impairment losses in inventory: 99.960223%\n", "income_statement_Loss of removal and destruction of crops: 99.960223%\n", "income_statement_Provision for loan guarantee in associates: 99.960223%\n", "income_statement_Impairment losses on vital assets: 99.960223%\n", "income_statement_Provision for expected credit losses: 99.960223%\n", "income_statement_Impairment on biological assets: 99.960223%\n", "cash_flows_Impairment losses on other receivables: 99.960223%\n", "cash_flows_Gain on valuation of financial investments: 99.960223%\n", "income_statement_Impairment losses on other receivables: 99.960223%\n", "income_statement_impairment losses in inventory: 99.960223%\n", "income_statement_Share of profit or loss of an associate: 99.960223%\n", "financial_position_Other assrts and receivables: 99.960223%\n", "cash_flows_Adjustment for drpreciation of property , plant and equipment: 99.960223%\n", "cash_flows_Adjustment for loss on disposal of property , plant and equipment: 99.960223%\n", "cash_flows_Change in inventories: 99.960223%\n", "cash_flows_Other current and non current assets: 99.960223%\n", "cash_flows_Accruals and other current liabilities: 99.960223%\n", "cash_flows_Insurance proceeds received for business: 99.960223%\n", "cash_flows_Net debt proceeds: 99.960223%\n", "cash_flows_Adjustment for accruals and other auurent liabililties: 99.960223%\n", "cash_flows_Finanace cost paid: 99.960223%\n", "cash_flows_Insurance proceeds received for business interruption losses: 99.960223%\n", "cash_flows_Insurance proceeds received for damaged assets: 99.960223%\n", "cash_flows_Payment of lease liabillties: 99.960223%\n", "financial_position_other current assets and receivables: 99.960223%\n", "cash_flows_FINANCE COST PAID: 99.960223%\n", "cash_flows_Adjustments for depreciation of property , plant and equipment: 99.960223%\n", "cash_flows_Adjustments for depreciation of right of use assets: 99.960223%\n", "cash_flows_Adjustment for write off property , plant and equipment: 99.960223%\n", "cash_flows_Adjustment for provision for write off property , plant and equipment: 99.960223%\n", "financial_position_other current assets: 99.960223%\n", "financial_position_Right-o f-use assets: 99.960223%\n", "cash_flows_COST PAID: 99.960223%\n", "financial_position_Cash and cash equivalent: 99.960223%\n", "cash_flows_Paid Financing cost: 99.960223%\n", "cash_flows_ROU Amortization: 99.960223%\n", "cash_flows_Financing Expenses Paid: 99.960223%\n", "comprehensive_income_Re-measurement (loss) gain on: 99.960223%\n", "cash_flows_Non cash post employees benefits expense: 99.960223%\n", "cash_flows_Interest income: 99.960223%\n", "cash_flows_Interest income received: 99.960223%\n", "cash_flows_changes in ECL Provision: 99.960223%\n", "comprehensive_income_Unrealized gain on financial assets at fair value: 99.960223%\n", "cash_flows_Proceeds from short-term borrowings: 99.960223%\n", "cash_flows_Adjustment for Write-off of property plant and equipment: 99.960223%\n", "cash_flows_Adjustment for Impairment of property, plant and equipment: 99.960223%\n", "financial_position_cash and cash equivalents: 99.960223%\n", "financial_position_trade receivable: 99.960223%\n", "financial_position_prepayments: 99.960223%\n", "financial_position_inventories: 99.960223%\n", "cash_flows_Adjustment for loss on disposal of property, plant and equipment: 99.960223%\n", "cash_flows_Adjustment for write-off of property, plant and equipment: 99.960223%\n", "financial_position_current portion of employees benefits: 99.960223%\n", "cash_flows_Gain on modification and termination of lease liability, net: 99.960223%\n", "cash_flows_Additions to right-of-use assets: 99.960223%\n", "cash_flows_Adjustment for depreciation of property, plant and equipment: 99.960223%\n", "cash_flows_Impairment in inventory value: 99.960223%\n", "cash_flows_Written off from provision Impairment of trade receivables: 99.960223%\n", "cash_flows_Proceeds from sale of Investments at fair value through profit or loss: 99.960223%\n", "cash_flows_Proceeds from sale of investment shares in associate company: 99.960223%\n", "income_statement_Gain from sold of shares of an associate company: 99.960223%\n", "income_statement_Gain from investment valuation at fair value: 99.960223%\n", "cash_flows_Proceeds from sale of investments in equity instruments at fair value through other comprehensive income: 99.960223%\n", "cash_flows_Payment of fees from financing costs for the year: 99.960223%\n", "cash_flows_Payment from provision for potential claims: 99.960223%\n", "financial_position_أمانات أسهم مزاد تحت التسوية: 99.960223%\n", "cash_flows_Chang In Unearned revenue: 99.960223%\n", "cash_flows_Zakat Adjustments: 99.960223%\n", "cash_flows_Cahng In Securities auction shares under settlement: 99.960223%\n", "cash_flows_Chang In Provision for expected credit losses: 99.960223%\n", "cash_flows_Change In Due to related parties: 99.960223%\n", "cash_flows_provision of the expected credit loss: 99.960223%\n", "cash_flows_Employees benefits - Paid: 99.960223%\n", "cash_flows_WIP Additions: 99.960223%\n", "income_statement_Impairment on trees: 99.960223%\n", "financial_position_Accumulated changes in other comprehensive income: 99.960223%\n", "cash_flows_Chang in Securities auction shares under settlement: 99.960223%\n", "cash_flows_Dividends received from investment in subsidiary: 99.960223%\n", "cash_flows_unreceived portion of associate companies cash dividends: 99.960223%\n", "cash_flows_Proceeds from sale of investment at fair value through profit or loss: 99.960223%\n", "income_statement_Gain from sale of shares of an associate company: 99.960223%\n", "cash_flows_Written off from provision Impairment in inventory value: 99.960223%\n", "income_statement_Revaluation gains from investment at fair value through profit or loss: 99.960223%\n", "comprehensive_income_Groups share of Re measuring profits of defined benefit plan of the associate company: 99.960223%\n", "cash_flows_Proceeds from dividends from investments at fair value: 99.960223%\n", "comprehensive_income_Change in fair value of derivative financial instruments in associate company: 99.960223%\n", "cash_flows_Gain from sale of shares of an associate co: 99.960223%\n", "cash_flows_Purchase of Investment at Fair value through profit or loss: 99.960223%\n", "comprehensive_income_Company s share in change for fair value of cash flow hedge in associate company: 99.960223%\n", "cash_flows_share of results of associate companies Accounted by equity method: 99.960223%\n", "cash_flows_Dividends from equity instruments at fair value: 99.960223%\n", "cash_flows_Due to related parties: 99.960223%\n", "cash_flows_Settlement of lease liability against other income: 99.960223%\n", "cash_flows_Depreciations of right of use assets: 99.960223%\n", "cash_flows_Expected credit loss provision - charged: 99.960223%\n", "cash_flows_Expected credit losses provision during the year: 99.960223%\n", "cash_flows_Potential claims provision during the year: 99.960223%\n", "cash_flows_Payment For Due to related party: 99.960223%\n", "cash_flows_Change In Due to related party: 99.960223%\n", "cash_flows_Chang in Depreciations of investment property: 99.960223%\n", "cash_flows_Chang in Provision for expected credit losses: 99.960223%\n", "cash_flows_Change In Provision for impairment of other debit balances: 99.960223%\n", "cash_flows_Employees defined benefit obligation Paid: 99.960223%\n", "cash_flows_Non-Cash items Settlement of lease liability against other income: 99.960223%\n", "cash_flows_Provision for impairment of other debit balances: 99.960223%\n", "cash_flows_Impairment of goodwill - losses: 99.960223%\n", "cash_flows_Depreciations of investment property: 99.960223%\n", "cash_flows_Gain from disposal of right of use assets: 99.960223%\n", "cash_flows_Financing cost obligations during the year - Paid: 99.960223%\n", "cash_flows_Provision for potential claims - Paid: 99.960223%\n", "cash_flows_Due from related party: 99.960223%\n", "financial_position_Groups share in revaluation reserve for change in fair value of cash flow hedge: 99.960223%\n", "financial_position_Deposits with SAMA: 99.960223%\n", "financial_position_Lease liability: 99.960223%\n", "cash_flows_Charge for impairment on investments held at amortized cost: 99.960223%\n", "financial_position_Non-controlling interest put option: 99.960223%\n", "cash_flows_Balance due to Capital Market Authority: 99.960223%\n", "cash_flows_Clearing participant financial asset: 99.960223%\n", "cash_flows_Reversal of impairment in associates: 99.960223%\n", "financial_position_Deposits with Saudi Central Bank: 99.960223%\n", "cash_flows_Dividend income received: 99.960223%\n", "cash_flows_Commission income on SUKUK: 99.960223%\n", "cash_flows_Commission from SAMA Bills and deposits received: 99.960223%\n", "financial_position_Clearing participant financial liabilitie: 99.960223%\n", "cash_flows_Adjustments in increase (decrease) in Trade payables and other liabilities: 99.960223%\n", "financial_position_Balances due to Capital Market Authority: 99.960223%\n", "income_statement_Investments income: 99.960223%\n", "cash_flows_Provision for employees end-of-service benefits: 99.960223%\n", "cash_flows_Share of loss in equity-accounted investee: 99.960223%\n", "cash_flows_Balance due to the Capital Market Authority: 99.960223%\n", "cash_flows_Margin deposit from clearing participant: 99.960223%\n", "cash_flows_Members contribution to clearing house fund: 99.960223%\n", "cash_flows_Deposits with Saudi Central Bank (SAMA): 99.960223%\n", "cash_flows_Member contribution to clearing house fund: 99.960223%\n", "cash_flows_Additional investment in equity-accounted investee: 99.960223%\n", "cash_flows_Proceeds from maturity of sukuk: 99.960223%\n", "financial_position_Equity-accounted investee: 99.960223%\n", "cash_flows_Commission from SAMA Bills received: 99.960223%\n", "financial_position_Margin deposits from clearing participant: 99.960223%\n", "cash_flows_Zakat: 99.960223%\n", "cash_flows_ZAKAT: 99.960223%\n", "income_statement_Impairment loss on financial assets: 99.960223%\n", "cash_flows_Proceeds on disposal of oil and gas properties: 99.960223%\n", "cash_flows_proceeds from sale of equity intrest in an associate: 99.960223%\n", "income_statement_Miscellaneous income, net: 99.960223%\n", "income_statement_Reversal of impairment loss: 99.960223%\n", "cash_flows_Proceeds from sale of equity interest in an associate: 99.960223%\n", "cash_flows_Proceeds from borrowings: 99.960223%\n", "cash_flows_Proceeds from sale of affiliates: 99.960223%\n", "cash_flows_Adjustments for increase decrease in Trade payables and other laibilties: 99.960223%\n", "financial_position_Contract assets - Current: 99.960223%\n", "financial_position_Contract Assets Non Current: 99.960223%\n", "cash_flows_Proceed from sale of subsidiary: 99.960223%\n", "financial_position_Contract assets current: 99.960223%\n", "cash_flows_Proceeds from short term loan: 99.960223%\n", "cash_flows_Repayments of short term loans: 99.960223%\n", "cash_flows_Gain on modification of borrowings: 99.960223%\n", "cash_flows_Adjustment for allowance for doubtful receivables, net: 99.960223%\n", "cash_flows_Zakat expense: 99.960223%\n", "cash_flows_Lease obligations paid: 99.960223%\n", "income_statement_Provision for reversal of impairment of financial assets: 99.960223%\n", "cash_flows_Provision for reversal of impairment of financial asset: 99.960223%\n", "cash_flows_Net movement in short-term and long-term loan: 99.960223%\n", "financial_position_Investment in long-term sukuk: 99.960223%\n", "financial_position_Loans and lease liabites: 99.960223%\n", "cash_flows_Cash and cash equivalents of disposal group classified as held for sale: 99.960223%\n", "cash_flows_Gain on disposal group sale of Alanmaa: 99.960223%\n", "cash_flows_Zakat and income tax paid: 99.960223%\n", "financial_position_Time deposit: 99.960223%\n", "cash_flows_Finance costs paid: 99.920446%\n", "financial_position_Short term investment at amortized cost: 99.920446%\n", "cash_flows_Income tax paid.6: 99.920446%\n", "cash_flows_Income earned from insurance claim1: 99.920446%\n", "cash_flows_Gain on adjustment to provision for decommissioning, site rehabilitation and dismantling obligations1: 99.920446%\n", "cash_flows_Adjustment to intangible assets3: 99.920446%\n", "cash_flows_Obsolete spare parts written-off3: 99.920446%\n", "financial_position_Lease liabilities2: 99.920446%\n", "cash_flows_Impairment of mine properties: 99.920446%\n", "cash_flows_Impairment of right-of-use assets4: 99.920446%\n", "equity_changes_Treasury share transactions: 99.920446%\n", "equity_changes_Share-based payment transactions: 99.920446%\n", "financial_position_Right to use assets: 99.920446%\n", "cash_flows_Adjustments for gain on sale of oil and gas properties: 99.920446%\n", "cash_flows_Change in the main spare parts (machinery and ovens): 99.920446%\n", "financial_position_Provision for land restoration cost: 99.920446%\n", "cash_flows_Provision for obsolescence of main spare parts (machinery and ovens): 99.920446%\n", "cash_flows_Cash or loan received from shareholders: 99.920446%\n", "cash_flows_Adjustments to Intangible assets written off: 99.920446%\n", "cash_flows_Realized gain from financial assets at fair value through profit or loss: 99.920446%\n", "cash_flows_Disposal or purchase of financial assets at fair value through profit or loss: 99.920446%\n", "financial_position_Lease liabilities current portion: 99.920446%\n", "financial_position_Advances: 99.920446%\n", "cash_flows_Change in financial assets at fair value through profit or loss: 99.920446%\n", "cash_flows_Loss on disposal of subsidiary: 99.920446%\n", "financial_position_Other Property and equipment: 99.920446%\n", "financial_position_other non- current libillity: 99.920446%\n", "cash_flows_finance cost paid: 99.920446%\n", "cash_flows_Repayment of employees home ownership receivables: 99.920446%\n", "cash_flows_Proceeds of equity instruments at fair value through profit and loss: 99.920446%\n", "cash_flows_finance costs of lease liabilities: 99.920446%\n", "cash_flows_Adjustment for decrease (increase) in prepayments and other current assets: 99.920446%\n", "cash_flows_net movment in short term deposits: 99.920446%\n", "cash_flows_Adjustments for decrease (increase) in rent receivables: 99.920446%\n", "cash_flows_Provision for Bad-Debt: 99.920446%\n", "cash_flows_Due to Bank: 99.920446%\n", "cash_flows_Repayment of Murabaha loans: 99.920446%\n", "income_statement_Other (expenses) income-net: 99.920446%\n", "cash_flows_Impairment loss on Financial insturment: 99.920446%\n", "cash_flows_A,mourtazition of rights of use assets: 99.920446%\n", "cash_flows_Commission from SAMA Bills: 99.920446%\n", "financial_position_Members contribution to clearing house funds: 99.920446%\n", "financial_position_Employees benefits current: 99.920446%\n", "cash_flows_Proceeds from Murabaha loans: 99.920446%\n", "comprehensive_income_Share of post-employment benefit obligations remeasurement from joint ventures and associates: 99.920446%\n", "financial_position_Revaluation reserve for change in fair value of cash flow hedge: 99.920446%\n", "comprehensive_income_Company share in investment at fair value through other comprehensive income in associate company: 99.920446%\n", "cash_flows_Dividends from investments at fair value: 99.920446%\n", "financial_position_Groups share in investment at fair value through other comprehensive income in associate company: 99.920446%\n", "cash_flows_Commission income: 99.920446%\n", "cash_flows_Commission income received on investment at amortised cost: 99.920446%\n", "cash_flows_Commission received on time deposits: 99.920446%\n", "cash_flows_Finance cost paid of lease liabilities: 99.920446%\n", "cash_flows_Interest on lease liabilities: 99.920446%\n", "cash_flows_Collection against employees loans: 99.920446%\n", "cash_flows_Adjustments for impairment loss on trade receivables: 99.920446%\n", "income_statement_Reversal of impairment in investment in associates: 99.920446%\n", "financial_position_Balance due to Capital Market Authority: 99.920446%\n", "cash_flows_Realized gain on sale of investments: 99.920446%\n", "cash_flows_Unrealized gain on investments: 99.920446%\n", "cash_flows_Purchase of investments: 99.920446%\n", "cash_flows_Adjustments for payments and other assets: 99.920446%\n", "cash_flows_adjsutmetns for Accured expenses and other liabilities: 99.920446%\n", "financial_position_Current portion of long-term borrowings: 99.920446%\n", "cash_flows_Provision for employee benefits obligations: 99.920446%\n", "cash_flows_Allowance for inventory obsolescence and slow moving: 99.920446%\n", "income_statement_Reversal of impairment loss on property, plant and equipment: 99.920446%\n", "income_statement_Reversal of impairment loss on property, plant, and equipment: 99.920446%\n", "cash_flows_Income from financial investment at fair value through profit or loss: 99.920446%\n", "cash_flows_Change in lease liabilities: 99.920446%\n", "cash_flows_Reversed zakat provision for prior years: 99.920446%\n", "financial_position_Right to use assets Net: 99.920446%\n", "financial_position_Lease liabilities Noncurrent: 99.920446%\n", "financial_position_Provision for End of Service Indemnity: 99.920446%\n", "cash_flows_Impairment loss on intangible assets: 99.920446%\n", "cash_flows_Loss on disposals during the year: 99.920446%\n", "cash_flows_Purchase of vehicles: 99.920446%\n", "cash_flows_Purchase of main spare parts: 99.920446%\n", "cash_flows_Adjustment for previous years: 99.920446%\n", "financial_position_Obligation for equity accounted investees: 99.920446%\n", "cash_flows_Financial assets at FVTPL: 99.920446%\n", "cash_flows_Dividends income received from investments at FVTOCI: 99.920446%\n", "cash_flows_Proceeds from disposal of property, plant, and equipment: 99.920446%\n", "cash_flows_Investment made during the year: 99.920446%\n", "cash_flows_Interest income received from investment at amortised cost: 99.920446%\n", "cash_flows_Adjustments for decrease (increase) in Allowance for doubtful trade accounts receivable: 99.920446%\n", "cash_flows_Adjustments for Employees' defined benefits paid: 99.920446%\n", "cash_flows_Term Loan related party: 99.920446%\n", "income_statement_Other adjustments to reconcile profit (loss): 99.920446%\n", "income_statement_Gain on revaluation of investments designated at FVPL: 99.920446%\n", "cash_flows_Provision for(reversal of) expected credit losses: 99.920446%\n", "cash_flows_Amortisation of prepaid upfront fees on term loan: 99.920446%\n", "cash_flows_PROVISION OF EXPECTED CREDIT LOSS EXPENSE: 99.920446%\n", "cash_flows_PROVISION OF OBSOLESCENCE INVENTORY EXPENSE: 99.920446%\n", "cash_flows_FINANCE COST: 99.920446%\n", "cash_flows_EMPLOYEES END -OF-SERVICE BENEFITS PAID: 99.920446%\n", "cash_flows_Changes in Inventories: 99.920446%\n", "cash_flows_Depreciation of investment properties: 99.920446%\n", "cash_flows_DISPOSAL OF INVESTMENT IN EQUITY INSTRUMENTS AT FVTPL: 99.920446%\n", "cash_flows_Gains on changes in fair value of investment equity instruments: 99.920446%\n", "financial_position_Amounts due from related party: 99.920446%\n", "income_statement_Other income: 99.920446%\n", "cash_flows_Loss from disposal of property, plant and equipment: 99.920446%\n", "cash_flows_Write-off for receivables provision: 99.920446%\n", "cash_flows_Amortization of right of use asset: 99.920446%\n", "cash_flows_Time Deposite: 99.920446%\n", "cash_flows_Depreciation of Investment properties: 99.920446%\n", "cash_flows_Depreciation of right of use asset: 99.920446%\n", "cash_flows_Gain from investment valuation at fair value through profit or loss: 99.920446%\n", "comprehensive_income_The Groups share of the profit on remeasurement of employee defined benefit obligations of the associate: 99.920446%\n", "comprehensive_income_The Group share of profits from investments in equity instruments at fair value through other comprehensive income of the associate: 99.920446%\n", "comprehensive_income_The Group share of change in fair value of the cash flow risks hedging of the associate: 99.920446%\n", "cash_flows_Gain from investment valuation at fair value through profit and loss: 99.920446%\n", "cash_flows_Financing cost right of use assets: 99.920446%\n", "cash_flows_Proceeds from sale of Investment at fair value through profit or loss: 99.920446%\n", "cash_flows_Purchase of short time deposit: 99.920446%\n", "cash_flows_Purchase of property, plant and equipment and Capital work in progress: 99.920446%\n", "cash_flows_Provision for obsolescence inventory expense: 99.920446%\n", "financial_position_Investment in financial assets: 99.920446%\n", "cash_flows_Provisions n longer required: 99.920446%\n", "cash_flows_Gain on change in fair value of investments through profit or loss: 99.920446%\n", "cash_flows_Gain on sale property, plant and equipment: 99.920446%\n", "cash_flows_provision no ionger required: 99.920446%\n", "cash_flows_Chang in Due to related party: 99.920446%\n", "cash_flows_Zakat adjustments: 99.920446%\n", "income_statement_Fair value gain (loss) on investment in financial assets at FVTPL: 99.920446%\n", "cash_flows_Loss on investment in financial assets at fair value through profit or loss: 99.920446%\n", "cash_flows_Decrease in spare parts: 99.920446%\n", "cash_flows_Payment from employees benefit during the year: 99.920446%\n", "cash_flows_Proceeds from disposal of subsidiaries: 99.920446%\n", "cash_flows_Addition in cash and cash equivalents due to acquisition and establishment of subsidiaries: 99.920446%\n", "cash_flows_Provided reversal of expected credit loss provision: 99.920446%\n", "cash_flows_Employees defined benefit obligation - Paid: 99.920446%\n", "cash_flows_Interest income received from investments at amortised cost: 99.920446%\n", "cash_flows_Expenditure on oil and gas assets: 99.920446%\n", "cash_flows_Proceeds from investments at fair value through profit or loss: 99.920446%\n", "financial_position_Long term facilities: 99.920446%\n", "cash_flows_Adjustments for Interest income from investment at amortised cost: 99.920446%\n", "cash_flows_Purchase investments at fair value through profit or loss: 99.920446%\n", "financial_position_Deferred tax asset: 99.920446%\n", "cash_flows_Investment in an associate: 99.920446%\n", "income_statement_Interest income from investments at amortised cost: 99.920446%\n", "cash_flows_Adjustments for Interest income from investments at amortised cost: 99.920446%\n", "cash_flows_Finance cost payment relating to term loans: 99.920446%\n", "cash_flows_Write off property and equipment: 99.920446%\n", "cash_flows_Gain on derivative instrument at FVPL: 99.920446%\n", "cash_flows_provision for replacing cylinders and others: 99.920446%\n", "financial_position_Financial assets held at fair value through other: 99.920446%\n", "financial_position_Lease liabilitiess: 99.920446%\n", "cash_flows_Intangible assets: 99.920446%\n", "financial_position_Accounts receivable: 99.920446%\n", "cash_flows_Movement in obligations under capital lease: 99.920446%\n", "financial_position_Financial assets held at fair value through other comprehensive income (FVTOCI): 99.920446%\n", "financial_position_Financial assets held at amortised cost: 99.920446%\n", "financial_position_Prepayments and other assets - Nnon current portion: 99.920446%\n", "financial_position_Lease liabilities.: 99.920446%\n", "financial_position_Lease liabilities1: 99.920446%\n", "comprehensive_income_Change in fair value of financial assets held at fair value through other comprehensive income (FVTOCI): 99.920446%\n", "financial_position_Obligations under finance lease1: 99.920446%\n", "comprehensive_income_Re-measurement gain on defined benefit plans: 99.920446%\n", "cash_flows_Investment income from time deposits received: 99.920446%\n", "cash_flows_Changes in expected credit losses: 99.920446%\n", "cash_flows_paid dividends: 99.920446%\n", "cash_flows_paid payable dividends: 99.920446%\n", "financial_position_Suggested Dividends: 99.920446%\n", "financial_position_suggested dividends: 99.920446%\n", "cash_flows_Adjustments written-off of intangible assets: 99.920446%\n", "financial_position_Current portion of debt: 99.920446%\n", "financial_position_Current portion of employee benefits: 99.920446%\n", "financial_position_Trade payables: 99.920446%\n", "financial_position_Zakat provision: 99.920446%\n", "cash_flows_prepayments for PPE purchases: 99.920446%\n", "cash_flows_Deferred Revenue from additional sales program: 99.920446%\n", "cash_flows_Investment in an equity accounted investee: 99.920446%\n", "cash_flows_The write-off of property and equipment: 99.920446%\n", "cash_flows_Intangible assets written off: 99.920446%\n", "cash_flows_Deferred Tax: 99.920446%\n", "cash_flows_Biological assets CF: 99.920446%\n", "cash_flows_Adjustment for employees benefits: 99.920446%\n", "cash_flows_Assets classified as held for sale: 99.920446%\n", "financial_position_Vital assets: 99.920446%\n", "financial_position_Non - current biological assets: 99.920446%\n", "income_statement_Losses of capital projects: 99.920446%\n", "cash_flows_Depreciation of biologicalassets: 99.920446%\n", "cash_flows_Payment of lease liabilities: 99.920446%\n", "cash_flows_Receipt of government grant: 99.920446%\n", "cash_flows_Losses of capital projects: 99.920446%\n", "cash_flows_Provision for loan guarantee in associates: 99.920446%\n", "cash_flows_Impairment losses on vital assets: 99.920446%\n", "income_statement_Differences revaluation of crop stocks at harvest point: 99.920446%\n", "cash_flows_Amortization of biological assets Cash Flow: 99.920446%\n", "cash_flows_Loss on termination of lease contracts: 99.920446%\n", "cash_flows_Gain on termination of lease: 99.920446%\n", "financial_position_Amount due from an associate: 99.920446%\n", "cash_flows_Financial assets held at fair value through profit or loss (FVTPL): 99.920446%\n", "cash_flows_Proceeds from disposal of financial assets held at amortized cost: 99.920446%\n", "cash_flows_Dividends income received from financial assets at fair value through other comprehensive income (FVTOCI): 99.920446%\n", "cash_flows_Investment in equity accounted investee: 99.920446%\n", "cash_flows_Amortisation on right-of-use assets: 99.920446%\n", "cash_flows_Amount due to related parties: 99.920446%\n", "financial_position_Concession contract receivables: 99.920446%\n", "cash_flows_Income from investment at amortized cost: 99.920446%\n", "cash_flows_Rent Income from investment properties: 99.920446%\n", "cash_flows_Income from short - term Murabaha time deposits: 99.920446%\n", "cash_flows_Impairment on investment at amortized cost: 99.920446%\n", "cash_flows_Accrued expenses and other current liabilities: 99.920446%\n", "income_statement_Deferred tax income (expense): 99.920446%\n", "cash_flows_Finance income from net investment in finance lease: 99.920446%\n", "financial_position_Investment at fair value through other comprehensive income1: 99.920446%\n", "cash_flows_Amortisation of deferred income1: 99.920446%\n", "cash_flows_Other non current assets: 99.920446%\n", "financial_position_Due to a related party - loan: 99.920446%\n", "financial_position_Lease liabilities3: 99.920446%\n", "financial_position_Liabilities relating to disposal group classified: 99.920446%\n", "financial_position_Due to related party loan: 99.920446%\n", "financial_position_Investment in long-term sukuks: 99.920446%\n", "cash_flows_Gain on derecognition of property, plant and equipment1: 99.920446%\n", "cash_flows_Adjustments for income from financial asset held at FVTPL: 99.920446%\n", "financial_position_Loans and lease liabilities Non Current: 99.920446%\n", "financial_position_Time deposits: 99.920446%\n", "cash_flows_Disposal of a subsidiary: 99.920446%\n", "cash_flows_Cash received for settlement of a related party balance: 99.920446%\n", "financial_position_Due to a related party Loan: 99.920446%\n", "income_statement_Impairment charge on non-financial assets: 99.920446%\n", "comprehensive_income_Other comprehensive income, hedges of net investment in foreign operations: 99.920446%\n", "cash_flows_Acquisition of intangible asset: 99.920446%\n", "cash_flows_Additions to Vehicles, net of CWIP: 99.920446%\n", "income_statement_Impairment loss on other receivable: 99.920446%\n", "cash_flows_Impairment loss on other receivable: 99.920446%\n", "cash_flows_Paid to purchase intangible assets: 99.920446%\n", "financial_position_Cumulative changes in the items of other comprehensive income: 99.920446%\n", "cash_flows_Proceeds from disposal of investments: 99.920446%\n", "cash_flows_Special commission income: 99.920446%\n", "income_statement_Adjustments for decrease (increase) in investments held as fair value through statement of income [FVSI]: 99.920446%\n", "income_statement_Proceeds from maturity and sale of non-trading investments: 99.920446%\n", "income_statement_Severance fee: 99.920446%\n", "cash_flows_Provision for severance fees: 99.920446%\n", "cash_flows_Employee benefit paid: 99.920446%\n", "cash_flows_Creation (reversal) of provision expected credit losses on trade receivable: 99.920446%\n", "cash_flows_Reversal of other provisions: 99.920446%\n", "cash_flows_Reduction of provision for expected credit losses on trade receivables: 99.920446%\n", "financial_position_Other investment: 99.920446%\n", "cash_flows_Other Investement: 99.920446%\n", "cash_flows_Gain on modification of leases: 99.920446%\n", "income_statement_Gain on modification of borrowings: 99.920446%\n", "cash_flows_Expected credit loss (ECL): 99.920446%\n", "cash_flows_Addition in mine properties: 99.920446%\n", "income_statement_Disclosure of other non-cash information [text block]: 99.920446%\n", "income_statement_Reversal of Impairment in Property,plant and Equipment: 99.920446%\n", "comprehensive_income_Reclassification adjustment on available-for-sale financial assets due to sale: 99.920446%\n", "cash_flows_Proceeds from sale of subsidiaries: 99.920446%\n", "cash_flows_Increase in expected credit loss allowance on trade and other receivables1: 99.880668%\n", "cash_flows_Prepayments and other assets: 99.880668%\n", "cash_flows_Short-term investments mad: 99.880668%\n", "cash_flows_Deferred income and contract liabilities: 99.880668%\n", "cash_flows_Payment against amount due to related parties: 99.880668%\n", "cash_flows_Adjustments for decrease (increase) in other assets and receivables: 99.880668%\n", "cash_flows_Cash and cash equivalents through business combination: 99.880668%\n", "cash_flows_Other Provisions: 99.880668%\n", "cash_flows_Charge for credit losses on accounts receivable: 99.880668%\n", "cash_flows_Commission from deposits with SAMA: 99.880668%\n", "income_statement_Reversal of provision no longer required: 99.880668%\n", "income_statement_Impairment loss: 99.880668%\n", "cash_flows_Additions to Vehicles: 99.880668%\n", "cash_flows_Long term loan to joint venture: 99.880668%\n", "cash_flows_Provision for impairment of trade receivables: 99.880668%\n", "cash_flows_Gain on disposal of a subsidiary: 99.880668%\n", "cash_flows_Proceeds from long-term loans: 99.880668%\n", "cash_flows_Expected credit loss allowance8: 99.880668%\n", "cash_flows_Inventories.3: 99.880668%\n", "cash_flows_Net foreign exchange gain: 99.880668%\n", "financial_position_Assets relating to disposal group classified as held for sale: 99.880668%\n", "cash_flows_Depreciation of assets of right of use: 99.880668%\n", "cash_flows_Intangible assets written-off: 99.880668%\n", "financial_position_Trade and other receivables - current portion: 99.880668%\n", "financial_position_Installment sales receivables - current portion: 99.880668%\n", "financial_position_Right Of Use: 99.880668%\n", "financial_position_Trade and other receivables - noncurrent portion: 99.880668%\n", "financial_position_Income tax on continuing operations for period: 99.880668%\n", "cash_flows_Provision for gas cylinder inventory: 99.880668%\n", "cash_flows_Reversal of provision for expected credit losses: 99.880668%\n", "cash_flows_Dividends income received from associates: 99.880668%\n", "cash_flows_Settlement of finance lease liability: 99.880668%\n", "cash_flows_Cash in Portfolio - investments at fair value through profit or loss: 99.880668%\n", "cash_flows_Proceed from sale of investments in equity instruments: 99.880668%\n", "cash_flows_Dividends received from investments in associates: 99.880668%\n", "cash_flows_Dividends received from investments in equity instruments: 99.880668%\n", "cash_flows_Differences revaluation of crop stocks at harvest point: 99.880668%\n", "comprehensive_income_Income tax (charge) credit relating to unrealised losses on available-for-sale financial assets, net: 99.880668%\n", "income_statement_Cost of unutilized production capacity: 99.880668%\n", "financial_position_Financial assets at fair value through profit or loss: 99.880668%\n", "cash_flows_Paid out of employees end of service benefits: 99.880668%\n", "cash_flows_Zakat Expense: 99.880668%\n", "cash_flows_End of service benefits: 99.880668%\n", "financial_position_Investment in Islamic financing contracts - non current: 99.880668%\n", "financial_position_Installment sales receivables - noncurrent portion: 99.880668%\n", "financial_position_Deferred revenue from additional service program - current portion: 99.880668%\n", "financial_position_Lease Liability- current part: 99.880668%\n", "financial_position_Deferred revenue from additional service program - noncurrent portion: 99.880668%\n", "financial_position_Lease Liability- Non current part: 99.880668%\n", "financial_position_other assets and receivables: 99.880668%\n", "financial_position_noncurrent portion for long term loan: 99.880668%\n", "financial_position_Changes in OCI: 99.880668%\n", "cash_flows_Paid empolyee benefits: 99.880668%\n", "financial_position_accumulated changes in OCI: 99.880668%\n", "cash_flows_end of service paid: 99.880668%\n", "cash_flows_zakat paid: 99.880668%\n", "cash_flows_dividends payable paid: 99.880668%\n", "cash_flows_financing cost paid: 99.880668%\n", "financial_position_prepaid for fixed assets purchases: 99.880668%\n", "financial_position_Obligations under finance lease: 99.880668%\n", "comprehensive_income_Premeasurement of employee defined benefit obligation: 99.880668%\n", "financial_position_right-of-use assets: 99.880668%\n", "financial_position_Biological assets: 99.880668%\n", "financial_position_Provision for guarantee loan related to associate: 99.880668%\n", "financial_position_Dismantling provision LIB: 99.880668%\n", "cash_flows_Biological assets current: 99.880668%\n", "cash_flows_right-of-use assets: 99.880668%\n", "cash_flows_Finance cost on lease liability: 99.880668%\n", "financial_position_Biological assets current: 99.880668%\n", "cash_flows_Increase in extended warranty program: 99.880668%\n", "cash_flows_Settlement of finance lease contract: 99.880668%\n", "cash_flows_Share of loss from associate: 99.880668%\n", "cash_flows_Proceeds from disposal of subsidiary: 99.880668%\n", "cash_flows_Expenditure on mine development: 99.880668%\n", "cash_flows_Deferred revenue: 99.880668%\n", "equity_changes_Changes in non-controlling interest: 99.880668%\n", "cash_flows_Lease liability settlement against other income: 99.880668%\n", "income_statement_Gain on disposal of investment in financial assets at FVTPL: 99.880668%\n", "cash_flows_Decrease in contract liabilities: 99.880668%\n", "financial_position_Due from a related party: 99.880668%\n", "cash_flows_Dividends paid to the Company shareholders: 99.880668%\n", "cash_flows_Purchase of short term time deposit: 99.880668%\n", "cash_flows_Proceeds from the disposal of Property, Plant and Equipment: 99.880668%\n", "cash_flows_Purchase of short-term time deposit: 99.880668%\n", "cash_flows_Financing costs: 99.880668%\n", "cash_flows_Provision for of obsolescence inventory expense: 99.880668%\n", "cash_flows_Provision for of expected credit loss expense: 99.880668%\n", "financial_position_Employees benefits: 99.880668%\n", "cash_flows_Dividends received from investments in associate companies: 99.880668%\n", "financial_position_Revaluation reserve of investments in equity instruments at fair value through other comprehensive income in associate: 99.880668%\n", "cash_flows_Unrealized gain on equity instruments at fair value through profit or loss: 99.880668%\n", "cash_flows_Loss on derecognition of right of use assets: 99.880668%\n", "cash_flows_Realized gain on investments at fair value through other comprehensive income: 99.880668%\n", "cash_flows_Depreciation on investment properties: 99.880668%\n", "cash_flows_Provision of expected credit loss expense: 99.880668%\n", "cash_flows_Adjustment for amortization of intangible assets: 99.880668%\n", "cash_flows_Employees benefits: 99.880668%\n", "income_statement_Impairment for prepayments: 99.880668%\n", "cash_flows_Impairment provision for prepayments: 99.880668%\n", "cash_flows_Expected credit losses: 99.880668%\n", "cash_flows_Gain on derecognition of right-of-use assets: 99.880668%\n", "cash_flows_Impairment loss on the trade receivables: 99.880668%\n", "cash_flows_The impairment loss on trade receivables: 99.880668%\n", "cash_flows_Unrealised gain on investments at fair value through profit or loss: 99.880668%\n", "cash_flows_Collection against employee loans: 99.880668%\n", "income_statement_Impairment losses on financial assets: 99.880668%\n", "comprehensive_income_Net losses gain from equity instruments at fair value through other comprehensive income: 99.880668%\n", "cash_flows_Employees end-of-service benefits paid: 99.880668%\n", "financial_position_Clearing participant financial liabilities: 99.880668%\n", "cash_flows_Cash acquired on acquisition of subsidiary: 99.880668%\n", "cash_flows_Dividends received from investment in associate: 99.880668%\n", "financial_position_Company s share in investment at fair value through other comprehensive income in associate company: 99.880668%\n", "comprehensive_income_Change in value of investment in equity instruments at fair value: 99.880668%\n", "cash_flows_Proceeds from SIDF loan: 99.880668%\n", "financial_position_SIDF Loan: 99.880668%\n", "cash_flows_Movement in long term retention payable: 99.880668%\n", "cash_flows_Net movement in SIDF loan: 99.880668%\n", "cash_flows_Repayments of loans by employees: 99.880668%\n", "comprehensive_income_Deferred tax to re-measurements loss: 99.880668%\n", "comprehensive_income_Re-measurement(loss) gain on defined employee benefit obligation: 99.880668%\n", "cash_flows_(Reversal) expected credit loss: 99.880668%\n", "cash_flows_Zakat and incom tax charges: 99.880668%\n", "cash_flows_Provision for slow moving inventory: 99.880668%\n", "cash_flows_provision for impairment of trade receivable: 99.880668%\n", "cash_flows_provision for slow moving and obsolete: 99.880668%\n", "income_statement_Fair value gain loss on derivative financial instruments measured at fair value through profit and loss: 99.880668%\n", "cash_flows_adjustments for provisions for slow moving inventories: 99.880668%\n", "financial_position_Share closing price at the last trading day of financial year (in numbers): 99.880668%\n", "cash_flows_(Increase) decrease in other non-current assets: 99.880668%\n", "cash_flows_Income from financial assets at fair value through other comprehensive income: 99.880668%\n", "financial_position_Long term prepayments: 99.880668%\n", "cash_flows_Share of results from associate companies using equity method: 99.880668%\n", "cash_flows_Employees' defined benefits liabilities paid: 99.880668%\n", "cash_flows_Change in provision of land restoration cost: 99.880668%\n", "income_statement_Allowance expense for doubtful debts: 99.880668%\n", "cash_flows_Realized and unrealized gain from financial assets at fair value through profit or loss -trading: 99.880668%\n", "financial_position_Capital works in progres: 99.880668%\n", "financial_position_Current lease liability: 99.880668%\n", "cash_flows_Provision for obsolescence of spare parts: 99.880668%\n", "financial_position_Investments in debt and equity instruments: 99.880668%\n", "cash_flows_Dividend received from non-integral joint ventures and associates: 99.880668%\n", "financial_position_Right of return assets: 99.880668%\n", "cash_flows_Depreaction of right-of-use-assets: 99.880668%\n", "cash_flows_Adjustments for decrease (increase) in Accounts receivable and prepayments: 99.880668%\n", "cash_flows_Non-controlling interest, net: 99.880668%\n", "cash_flows_Provision for impairment of financial assets: 99.880668%\n", "financial_position_Time Deposit: 99.840891%\n", "comprehensive_income_Income tax (charge) credit relating to cash flow hedges: 99.840891%\n", "cash_flows_Dividends income: 99.840891%\n", "income_statement_Expected credit loss allowance1: 99.840891%\n", "cash_flows_ECL allowance on trade and other receivables1: 99.840891%\n", "financial_position_long term receivable and perpayments: 99.840891%\n", "cash_flows_hntrest incom on deposits: 99.840891%\n", "financial_position_Long-term receivables and prepayments: 99.840891%\n", "cash_flows_Depreciation on right of use assets: 99.840891%\n", "cash_flows_Withdrawals from short-term deposits: 99.840891%\n", "income_statement_Impairment loss on trade and other receivables: 99.840891%\n", "cash_flows_Adjustments for impairment loss (reversal of impairment loss) on Trade and other receivables: 99.840891%\n", "financial_position_Capital works in progress: 99.840891%\n", "financial_position_Right to use assets, Net: 99.840891%\n", "cash_flows_Proceeds against acquisition of non-controlling interests: 99.840891%\n", "cash_flows_Adjustments for gain on sale of mine properties: 99.840891%\n", "cash_flows_Employees' terminal benefits paid: 99.840891%\n", "cash_flows_Acquisition of capital work in progress: 99.840891%\n", "financial_position_Other property and equipment: 99.840891%\n", "financial_position_Long term loans to a joint venture: 99.840891%\n", "financial_position_Fair value change reserve of associate companys cash flow risks hedging: 99.840891%\n", "cash_flows_Proceeds from issue of treasury shares: 99.840891%\n", "financial_position_Investment in Islamic financing contracts - non curent: 99.840891%\n", "cash_flows_Increase in deferred revenue from extended warranty Program: 99.840891%\n", "financial_position_Right of use assets, net: 99.840891%\n", "financial_position_Unbilled receivables: 99.840891%\n", "cash_flows_fair value through other comprehensive income: 99.840891%\n", "cash_flows_Additions of investment property: 99.840891%\n", "cash_flows_Chang In Due to related party: 99.840891%\n", "cash_flows_Due to related party: 99.840891%\n", "financial_position_Other assets and receivables: 99.840891%\n", "financial_position_Current portion of employees benefits: 99.840891%\n", "financial_position_debt: 99.840891%\n", "cash_flows_Loss on disposal of property and equipment: 99.840891%\n", "cash_flows_Property and equipment written off: 99.840891%\n", "comprehensive_income_Reclassification adjustment on available-for-sale financial assets due to impairment: 99.840891%\n", "financial_position_Income (loss) from fair value through statement of income [FVSI] financial instruments, net: 99.840891%\n", "cash_flows_Debt proceeds: 99.840891%\n", "financial_position_Financial Assets at fair value through profit or loss: 99.840891%\n", "financial_position_Spare Parts: 99.840891%\n", "cash_flows_Buying intangible assets: 99.840891%\n", "financial_position_Investments in equity instruments: 99.840891%\n", "cash_flows_Previous years adjustments: 99.840891%\n", "cash_flows_Change in the right of use assets: 99.840891%\n", "cash_flows_Employees defined benefits paid: 99.840891%\n", "financial_position_Accounts Receivable: 99.840891%\n", "cash_flows_Provision for obsolescence of machineries and furnaces spare parts: 99.840891%\n", "cash_flows_Purchase of property, plant and equipment and investment properties: 99.840891%\n", "income_statement_Impairment of intangible assets: 99.840891%\n", "cash_flows_Investments in associates and joint ventures, net: 99.840891%\n", "cash_flows_Allowance for obsolescence inventory: 99.840891%\n", "cash_flows_Proceeds from the Sale of investment in equity instruments at FVTPL: 99.840891%\n", "cash_flows_Adjustments for movement in tenant deposits: 99.840891%\n", "equity_changes_Share issue cost: 99.840891%\n", "cash_flows_Finance costs of lease liabilities: 99.840891%\n", "cash_flows_Adjustments for Amortization of deferred costs: 99.840891%\n", "financial_position_Lease liabilities, Current: 99.840891%\n", "financial_position_long term loans: 99.840891%\n", "cash_flows_Sale of an investment in equity instruments at fair value through profit or loss: 99.840891%\n", "cash_flows_Adjustments for Provision for expected credit loss: 99.840891%\n", "financial_position_Lease liabilities-non currnet: 99.840891%\n", "comprehensive_income_Change in fair value of investments in financial assets through other comprehensive income: 99.840891%\n", "financial_position_Asset Under Construction: 99.840891%\n", "cash_flows_Follow up fees on term loan: 99.840891%\n", "financial_position_Prepayment and other assets: 99.840891%\n", "financial_position_Accrued expenses and other liabilities: 99.840891%\n", "financial_position_Long term borrowings: 99.840891%\n", "financial_position_Lease Liabilities: 99.840891%\n", "cash_flows_Adjustments for Depreciation and Amortization: 99.840891%\n", "cash_flows_Adjustments for non-cash employee benefit expenses: 99.840891%\n", "cash_flows_adjustments for provisions for employee benefi obligations: 99.840891%\n", "cash_flows_Proceeds from short term deposits: 99.840891%\n", "cash_flows_Finance income received on Murabaha deposits: 99.840891%\n", "financial_position_Provision for decommissioning obligation: 99.840891%\n", "financial_position_Projects in Progress: 99.840891%\n", "cash_flows_Other assets and receivables: 99.840891%\n", "cash_flows_Special commission income received: 99.840891%\n", "cash_flows_Interest expense on lease liability: 99.840891%\n", "financial_position_Cumulative changes in other comprehensive income: 99.840891%\n", "equity_changes_Other distributions to equity holders: 99.840891%\n", "income_statement_Net cash flows from (used in) financing activities: 99.840891%\n", "cash_flows_Provision for obsolescence of main spare parts: 99.840891%\n", "cash_flows_Change in provision of land restorations cost: 99.840891%\n", "cash_flows_Change in the right of use the asset: 99.840891%\n", "income_statement_Adjustments for gains (losses) on non-trading investments, net: 99.840891%\n", "cash_flows_Employee's defined benefit obligations paid: 99.840891%\n", "cash_flows_Purchase of investment at amortized costs: 99.840891%\n", "income_statement_Loss from investment at fair value through profit or loss: 99.840891%\n", "financial_position_Investment in equity instrument at fair value through other comprehensive income: 99.840891%\n", "financial_position_Current Lease Liabilities: 99.840891%\n", "financial_position_Non Current Lease Liabilities: 99.840891%\n", "cash_flows_Depreciation of right to use assets: 99.840891%\n", "cash_flows_finance charges: 99.840891%\n", "cash_flows_Amortization of financing costs for a long-term loan: 99.840891%\n", "cash_flows_Purchase of investment in equity instruments: 99.840891%\n", "financial_position_Loan from a related party - current portion: 99.840891%\n", "financial_position_Financial assets at fair value through other: 99.840891%\n", "cash_flows_Adjustments for decrease (increase) in Amortization of deferred costs: 99.840891%\n", "cash_flows_Adjustments for Contract assets: 99.840891%\n", "financial_position_Margin deposits from clearing participants: 99.840891%\n", "financial_position_Investment in associate - held for sale: 99.840891%\n", "income_statement_Cost of revenues: 99.840891%\n", "cash_flows_Advances and prepayments.5: 99.840891%\n", "cash_flows_Severance fees paid: 99.840891%\n", "cash_flows_Loss on exchange differences2: 99.840891%\n", "cash_flows_Expected credit loss: 99.840891%\n", "financial_position_Refund liabilities: 99.840891%\n", "equity_changes_Other contributions by equity holders: 99.840891%\n", "cash_flows_Obsolete and slow moving spare parts and consumable materials written-off1: 99.840891%\n", "cash_flows_Accrued and other current liabilities: 99.840891%\n", "cash_flows_Provision for impairment of financial asset: 99.801114%\n", "income_statement_Provision for impairment of financial assets: 99.801114%\n", "equity_changes_Transfer to statutory reserve: 99.801114%\n", "cash_flows_Movement in Refund Liabilities: 99.801114%\n", "financial_position_Investments in equity instruments designated at FVOCI: 99.801114%\n", "financial_position_Clearing participant financial assets: 99.801114%\n", "cash_flows_Unrealised gain on investments: 99.801114%\n", "cash_flows_Movement of cash under lien: 99.801114%\n", "financial_position_Prepayments and Other Receivables: 99.801114%\n", "financial_position_Capital work in progress: 99.801114%\n", "income_statement_Employee incentive: 99.801114%\n", "cash_flows_Adjustments for depreciation and impairment (reversal of impairment) of other property, plant and equipments: 99.801114%\n", "cash_flows_Employee incentive: 99.801114%\n", "financial_position_Trade payables and other liabilities: 99.801114%\n", "cash_flows_Depreciations of right of used assets: 99.801114%\n", "cash_flows_Finance charge of right of use assets: 99.801114%\n", "financial_position_Loan from a related party: 99.801114%\n", "cash_flows_Expected credit losses provision: 99.801114%\n", "cash_flows_Employees' defined benefit obligations paid: 99.801114%\n", "financial_position_Investments designated at FVPL: 99.801114%\n", "cash_flows_Short-term investments, net: 99.801114%\n", "financial_position_Short-term investment at amortised cost: 99.801114%\n", "income_statement_Other income, net: 99.801114%\n", "cash_flows_Realised gain on sale of investments: 99.801114%\n", "cash_flows_Dividend income: 99.801114%\n", "income_statement_Adjustments for impairment (reversal of impairment) for loans, financing and advances: 99.801114%\n", "comprehensive_income_Remeasurement of post-employment benefit obligations: 99.801114%\n", "cash_flows_Dividends paid: 99.801114%\n", "cash_flows_Financial charges paid: 99.801114%\n", "cash_flows_Repayment of debt: 99.801114%\n", "income_statement_Net cash flows from (used in) investing activities: 99.801114%\n", "cash_flows_Provision for obsolescence inventory in process: 99.801114%\n", "cash_flows_Sale of investment in equity instruments at FVTPL: 99.801114%\n", "cash_flows_Proceeds on disposal of mine properties: 99.801114%\n", "financial_position_Contract Liabilities: 99.801114%\n", "income_statement_Gain on sale of investment property, net: 99.801114%\n", "cash_flows_Realized gain from financial assets at fair value through other comprehensive income: 99.801114%\n", "cash_flows_Zakat Paid: 99.801114%\n", "cash_flows_Provision for replacing cylinders and others: 99.801114%\n", "income_statement_Proceeds from disposal of property and equipment: 99.801114%\n", "cash_flows_Adjustments for increase (decrease) in advances to suppliers: 99.801114%\n", "cash_flows_Other assets and liabilities changes: 99.801114%\n", "cash_flows_Impairment loss on financial assets: 99.801114%\n", "cash_flows_Provision for slow moving items: 99.801114%\n", "cash_flows_Retention payablee: 99.801114%\n", "cash_flows_(Increase).decrease in restricted cash: 99.801114%\n", "income_statement_Depreciation of right-of-us: 99.801114%\n", "cash_flows_Gain on termination of a lease: 99.801114%\n", "financial_position_Long-term borrowings: 99.801114%\n", "income_statement_Other operating income, net1: 99.801114%\n", "financial_position_Retentions Payable: 99.801114%\n", "income_statement_Zakat and income tax: 99.801114%\n", "cash_flows_Provided of expected credit losses provision: 99.801114%\n", "comprehensive_income_Income tax (charge) credit relating to translation of foreign operations: 99.801114%\n", "cash_flows_Adjustments for depletion: 99.801114%\n", "financial_position_Prepayments and other assets: 99.801114%\n", "cash_flows_Expected credit losses on trade receivables: 99.801114%\n", "financial_position_Post-employment benefit obligations: 99.761337%\n", "cash_flows_Adjustments for Finance charge on lease liability: 99.761337%\n", "financial_position_Balance due to Capital Market Authority (CMA): 99.761337%\n", "cash_flows_Adjustments for Financial charges: 99.761337%\n", "cash_flows_Proceeds from sale of non-controlling equity interest in a subsidiary: 99.761337%\n", "equity_changes_Bonus shares issued: 99.761337%\n", "cash_flows_Trade and other receivables.3: 99.761337%\n", "income_statement_Depreciation and amortization: 99.761337%\n", "cash_flows_Adjustments for depreciation and impairment (reversal of impairment) of Right of use Asset: 99.761337%\n", "income_statement_Expected credit loss (ECL): 99.761337%\n", "cash_flows_Adjustments for impairment (reversal of impairment) of oil and gas properties: 99.761337%\n", "cash_flows_Change in provision of land restoration: 99.761337%\n", "cash_flows_Allowance for expected credit losses: 99.761337%\n", "cash_flows_Adjustments for Amortisation of right of use asset: 99.761337%\n", "comprehensive_income_Actuarial gain (losses) on employees defined benefits liabilities: 99.761337%\n", "cash_flows_Loss on fair value measurement of assets classified as held for sale: 99.761337%\n", "equity_changes_Increase in share capital: 99.761337%\n", "cash_flows_Realised gain on investments at fair value through profit or loss: 99.761337%\n", "cash_flows_Adjustments for Financial charges on term facilities: 99.761337%\n", "cash_flows_Mine properties written-off: 99.761337%\n", "cash_flows_Derivative interest paid2: 99.761337%\n", "financial_position_Loans and borrowings: 99.761337%\n", "cash_flows_Adjustment to property, plant and equipment: 99.761337%\n", "financial_position_Due to a related party loan: 99.761337%\n", "financial_position_Retention payable: 99.761337%\n", "cash_flows_Proceeds from sale of a subsidiary: 99.761337%\n", "financial_position_Long Term Lease Liability: 99.761337%\n", "financial_position_Right of use asset: 99.761337%\n", "cash_flows_Change in financial investments at fair value through profit or loss: 99.761337%\n", "cash_flows_Changes in Post-employment benefit obligations: 99.761337%\n", "financial_position_Other investments2: 99.761337%\n", "financial_position_Advance from customer: 99.761337%\n", "cash_flows_The change in leasing obligations: 99.761337%\n", "financial_position_Employee benefit obligations: 99.761337%\n", "cash_flows_Payment for acquisition of subsidiary, net of cash acquired: 99.761337%\n", "income_statement_Adjustments for decrease (increase) in other operating assets: 99.761337%\n", "financial_position_Bank Borrowings: 99.761337%\n", "cash_flows_Adjustments for decrease (increase) in Depreciation of right of use asset: 99.761337%\n", "financial_position_Short term sukuk: 99.761337%\n", "cash_flows_End-of-service benefits paid: 99.761337%\n", "income_statement_Gain from investment valuation at fair: 99.761337%\n", "financial_position_Other investments.1: 99.761337%\n", "financial_position_Employees home ownership receivables: 99.761337%\n", "financial_position_Capital Work in progress: 99.761337%\n", "income_statement_Zakat and tax: 99.761337%\n", "financial_position_Deferred costs, net: 99.761337%\n", "cash_flows_Gain on derivative instrument at FVTPL: 99.761337%\n", "cash_flows_Other provisions: 99.761337%\n", "financial_position_Right of use of assets: 99.721559%\n", "cash_flows_Adjustments for depreciation and impairment (reversal of impairment) of Vehicles: 99.721559%\n", "financial_position_Total diluted earnings (loss) per share: 99.721559%\n", "comprehensive_income_Loss on exchange differences on translation2: 99.721559%\n", "cash_flows_Adjustment to mine properties: 99.721559%\n", "income_statement_Severance fees7: 99.721559%\n", "cash_flows_Dividend received from an associate: 99.721559%\n", "cash_flows_Net book value of vehicles disposed: 99.721559%\n", "income_statement_Adjustments for amortisation expense: 99.721559%\n", "cash_flows_Purchase of intangible assets and property and equipment: 99.721559%\n", "financial_position_Impairment (reversal of impairment) charge for credit losses/ loans, financing and advances: 99.721559%\n", "cash_flows_Adjustment for increase (decrease) in Accounts Payable and accruals: 99.721559%\n", "comprehensive_income_Remeasurement of post-employment benefits: 99.721559%\n", "cash_flows_Adjustment to right-of-use assets and the related lease liability1: 99.721559%\n", "cash_flows_Adjustments for Property and equipment written off: 99.721559%\n", "income_statement_Research expenses: 99.721559%\n", "financial_position_Deferred tax liability: 99.721559%\n", "income_statement_Adjustments for staff share based plan expenses: 99.721559%\n", "cash_flows_Payments for purchases of intangible assets: 99.721559%\n", "financial_position_Non Current portion of investment in Islamic financing contracts: 99.721559%\n", "cash_flows_Increase in deferred revenue from extended warranty program: 99.721559%\n", "financial_position_Liabilities directly associated with assets classified as held for sale: 99.721559%\n", "financial_position_Auction shares deposits under settlement: 99.721559%\n", "financial_position_Current portion of investment in Islamic financing contracts: 99.721559%\n", "cash_flows_Amortization of rights of use: 99.721559%\n", "financial_position_Loans and borrowings, non-current: 99.721559%\n", "cash_flows_Dividends received from investments FVTOCI: 99.721559%\n", "financial_position_Investment in Islamic financing contracts: 99.721559%\n", "cash_flows_Adjustment for increase (decrease) in accounts payable, accruals and othe current liabilities: 99.721559%\n", "financial_position_Lease liabilities Non Current Portion: 99.721559%\n", "cash_flows_Current portion of investment in Islamic financing contracts: 99.721559%\n", "cash_flows_Impairment recognized on trade receivables: 99.721559%\n", "financial_position_Contract liabilities: 99.721559%\n", "cash_flows_Purchase of treasury shares: 99.721559%\n", "cash_flows_Adjustments for impairment (reversal of impairment) of mine properties: 99.721559%\n", "financial_position_Non-current accounts receivable: 99.721559%\n", "cash_flows_Proceeds from Islamic loan facilities: 99.721559%\n", "financial_position_Diluted earnings (loss) per share from continuing operations: 99.721559%\n", "cash_flows_Dividends received from associates: 99.721559%\n", "comprehensive_income_Changes in fair value of equity investments classified as fair value through other comprehensive income: 99.721559%\n", "financial_position_Loans and borrowings, current: 99.721559%\n", "financial_position_Accrual and other liabilities: 99.721559%\n", "cash_flows_Adjustments for increase (decrease) in contract assets: 99.721559%\n", "financial_position_Right of use assets, Net: 99.721559%\n", "financial_position_Debt: 99.721559%\n", "financial_position_Oil and gas properties: 99.721559%\n", "income_statement_Zakat: 99.721559%\n", "income_statement_Purchase of intangible assets: 99.721559%\n", "income_statement_Interest income from investment at amortised cost: 99.721559%\n", "financial_position_Vehicles: 99.721559%\n", "cash_flows_Provisions and other movements, net: 99.721559%\n", "cash_flows_Additions to intangible assets: 99.721559%\n", "cash_flows_Employees benefits paid: 99.721559%\n", "cash_flows_Sales Instalment Receivable: 99.721559%\n", "comprehensive_income_Gains (losses) on hedges of net investments in foreign operations: 99.681782%\n", "financial_position_Loan and lease liabilities: 99.681782%\n", "cash_flows_Allowance for doubtful debts: 99.681782%\n", "income_statement_Gain from the sales of property and equipment: 99.681782%\n", "cash_flows_Dividends received from investments at fair value: 99.681782%\n", "cash_flows_Net movement in short-term and long-term loans: 99.681782%\n", "income_statement_Net decrease (increase) in operating assets: 99.681782%\n", "cash_flows_Adjustment to mine closure provision2: 99.681782%\n", "equity_changes_Interim dividend paid: 99.681782%\n", "cash_flows_Adjustments for Provision for impairment of trade receivable: 99.681782%\n", "cash_flows_Proceeds from long term Murabaha loans: 99.681782%\n", "cash_flows_Proceed from maturity of short-term investment: 99.681782%\n", "cash_flows_Change in fair value of investments through profit or loss: 99.681782%\n", "income_statement_Other inflows (outflows) of cash, classified as financing activities: 99.681782%\n", "cash_flows_Investment in a subsidary by a non-controlling shareholder: 99.681782%\n", "financial_position_Securities auction shares under settlement: 99.681782%\n", "cash_flows_Net movement in Murabaha loan: 99.681782%\n", "cash_flows_Dividends received from investments at FVTOCI: 99.681782%\n", "income_statement_Adjustments for decrease (increase) in other real estate, net: 99.681782%\n", "financial_position_Cash and cash equivalents: 99.681782%\n", "financial_position_Due to related party: 99.681782%\n", "cash_flows_Depreciation, amortisation and impairment: 99.681782%\n", "cash_flows_Employee benefit obligations paid: 99.681782%\n", "financial_position_Long term Murabaha loans: 99.681782%\n", "financial_position_Islamic loan facilities: 99.681782%\n", "cash_flows_Adjustments for decrease (increase) in due from the Government: 99.681782%\n", "financial_position_Contract Assets: 99.681782%\n", "cash_flows_Other assets movements: 99.681782%\n", "cash_flows_Adjustments for Financial charges on lease liabilities: 99.681782%\n", "cash_flows_Depreciation of right of use: 99.681782%\n", "cash_flows_Finance costs: 99.681782%\n", "cash_flows_Proceeds from debt: 99.681782%\n", "financial_position_Accounts payable and accruals: 99.681782%\n", "cash_flows_Employee benefits paid: 99.681782%\n", "cash_flows_Charge for employees share-based payment plan which will be equity-settled3: 99.681782%\n", "comprehensive_income_Investments at fair value through other comprehensive income - net change in fair value: 99.681782%\n", "cash_flows_Adjustments for depreciation of right-of-use assets: 99.681782%\n", "financial_position_Investment in debt securities3: 99.642005%\n", "comprehensive_income_Changes in fair value of debt securities classified as fair value through other comprehensive income: 99.642005%\n", "financial_position_SIDF loan: 99.642005%\n", "cash_flows_Share of results of joint ventures and associates: 99.642005%\n", "comprehensive_income_Share of post-employment benefits remeasurement from joint ventures and associates: 99.642005%\n", "cash_flows_Interest of lease liabilities: 99.642005%\n", "financial_position_Lease liabilities -non-current portion: 99.642005%\n", "financial_position_Investments available for sale: 99.642005%\n", "cash_flows_Net movement in long term retentions payable: 99.642005%\n", "cash_flows_Adjustments for increase (decrease) in Trade and other payables: 99.642005%\n", "financial_position_Projects under construction: 99.642005%\n", "financial_position_Investments: 99.642005%\n", "income_statement_Adjustments for decrease (increase) in financing, net: 99.642005%\n", "comprehensive_income_Cash flow hedges and other: 99.642005%\n", "cash_flows_Unearned revenue: 99.642005%\n", "financial_position_Current Lease Liability: 99.642005%\n", "cash_flows_Movement in equity investment at FVOCI: 99.642005%\n", "cash_flows_Net movement in investments at fair value through profit or loss: 99.642005%\n", "comprehensive_income_Unrealized fair value gains on equity investment at FVOCI: 99.642005%\n", "cash_flows_Finance cost: 99.642005%\n", "income_statement_provision for expected credit losses: 99.642005%\n", "cash_flows_Increase in net employee benefits obligations: 99.642005%\n", "financial_position_Lease liabilities - current portion: 99.642005%\n", "financial_position_VAT payable: 99.602228%\n", "cash_flows_Income received from time deposits: 99.602228%\n", "cash_flows_Gain on disposal of investment: 99.602228%\n", "income_statement_Gain on disposal of investment: 99.602228%\n", "cash_flows_Impairment loss on trade receivables: 99.602228%\n", "cash_flows_Term Deposits: 99.602228%\n", "cash_flows_Zakat paid: 99.602228%\n", "cash_flows_Net maturities (purchases) of short-term investments: 99.602228%\n", "financial_position_Term Deposit: 99.602228%\n", "cash_flows_Provision for allowance for inventory obsolescence1: 99.602228%\n", "income_statement_Share from operations results of Joint ventures: 99.602228%\n", "cash_flows_Change in joint ventures and associates inventory profit elimination: 99.602228%\n", "financial_position_Retained earnings - Appropriated: 99.602228%\n", "financial_position_Additional paid-in capital: 99.602228%\n", "financial_position_Retained earnings - Unappropriated: 99.602228%\n", "financial_position_Zakat and income tax payable: 99.602228%\n", "financial_position_Provision for land restoration subject to the franchise license: 99.602228%\n", "cash_flows_Changes in post-employment benefits: 99.602228%\n", "cash_flows_Adjustments for Depreciation of right of use assets: 99.602228%\n", "financial_position_Investment at amortised cost: 99.602228%\n", "financial_position_Long term retentions: 99.602228%\n", "financial_position_Investment at fair value through profit or loss: 99.602228%\n", "financial_position_Loans to employees: 99.602228%\n", "cash_flows_Adjustments for gain on sale of exploration and evaluation assets: 99.602228%\n", "financial_position_Derivative financial instruments1: 99.602228%\n", "income_statement_Gain from sale of property, plant and equipment: 99.602228%\n", "financial_position_Projects in progress: 99.602228%\n", "financial_position_Trade payples: 99.562450%\n", "financial_position_Investment in debt securities1: 99.562450%\n", "cash_flows_Projects and other payables . Trade: 99.562450%\n", "cash_flows_Refund liabilities: 99.562450%\n", "financial_position_Post-employment benefits: 99.562450%\n", "financial_position_Right to use Assets: 99.562450%\n", "cash_flows_Depreciation of Right to use Assets: 99.562450%\n", "cash_flows_Depreciation on right-of-use assets: 99.562450%\n", "cash_flows_Amortization of prepaid upfront fees on term loan: 99.562450%\n", "financial_position_Lease Laibilities: 99.562450%\n", "financial_position_Prepayments and other current assets: 99.562450%\n", "cash_flows_Loss on derecognition of property, plant and equipment1: 99.562450%\n", "comprehensive_income_Total other comprehensive income (loss), hedges of net investment in foreign operations: 99.562450%\n", "financial_position_Deferred costs net: 99.562450%\n", "financial_position_Post-employment benefits, non-current: 99.562450%\n", "cash_flows_Inventory movement: 99.562450%\n", "income_statement_Adjustments for increase (decrease) in other operating liabilities: 99.562450%\n", "income_statement_Adjustments for income from fair value through statement of income [FVSI] financial instruments: 99.562450%\n", "income_statement_Net increase (decrease) in cash and cash equivalents: 99.562450%\n", "income_statement_Interest paid, classified as operating activities: 99.562450%\n", "income_statement_Increase (decrease) in cash and cash equivalents before effect of exchange rate changes: 99.562450%\n", "cash_flows_Proceeds from disposal of property, plant and equipment: 99.562450%\n", "cash_flows_Employees end of service benefits paid: 99.562450%\n", "financial_position_Assets classified as held for sale: 99.562450%\n", "income_statement_Net increase (decrease) in operating liabilities: 99.562450%\n", "cash_flows_Other non-current assets: 99.562450%\n", "financial_position_Employee benefites: 99.562450%\n", "financial_position_Accrued and other current loabilities: 99.562450%\n", "financial_position_Lease liabilities-current portion: 99.562450%\n", "cash_flows_Other: 99.562450%\n", "income_statement_Adjustments for decrease (increase) in loans, financing and advances: 99.562450%\n", "cash_flows_Zakat and Income Tax Paid: 99.522673%\n", "cash_flows_Accrued expenses . Trade: 99.522673%\n", "financial_position_Financial assets at fair value through other comprehensive income: 99.522673%\n", "income_statement_Income from time deposits.1: 99.522673%\n", "income_statement_Dividends paid, classified as financing activities: 99.522673%\n", "cash_flows_Proceeds on disposal of exploration and evaluation assets: 99.522673%\n", "equity_changes_Final dividend paid: 99.522673%\n", "cash_flows_Proceeds from exercise of share options: 99.522673%\n", "financial_position_Trade and other payables: 99.522673%\n", "cash_flows_Prepayments and other current assets: 99.522673%\n", "cash_flows_Proceeds from term loans: 99.482896%\n", "financial_position_Investment: 99.482896%\n", "income_statement_Zakat expenses, classified as operating activities: 99.482896%\n", "equity_changes_Transfer from retained earnings: 99.482896%\n", "cash_flows_Changes in provisions and other liabilities: 99.482896%\n", "cash_flows_Proceeds from investment income: 99.482896%\n", "financial_position_Deferred tax liabilities.1: 99.482896%\n", "financial_position_Investments at fair value through profit or loss: 99.443119%\n", "financial_position_Trade and other receivables: 99.443119%\n", "financial_position_Other operating expense: 99.443119%\n", "financial_position_Provision for Zakat and Income Tax: 99.443119%\n", "income_statement_Net cash flows from (used in) operating activities: 99.443119%\n", "financial_position_Other operating income: 99.443119%\n", "income_statement_Total adjustments to reconcile profit (loss): 99.443119%\n", "cash_flows_Accretion of interest: 99.443119%\n", "financial_position_Mine properties.1: 99.443119%\n", "financial_position_Property, plant and equipment.1: 99.443119%\n", "cash_flows_Interest received on term deposits: 99.443119%\n", "cash_flows_Write-off of plant and equipment.5: 99.443119%\n", "financial_position_Equity investments at FVOCI: 99.403341%\n", "financial_position_Loans and lease liabilities: 99.403341%\n", "cash_flows_Loss on disposal of property, plant and equipment: 99.403341%\n", "financial_position_Inventories.2: 99.403341%\n", "cash_flows_Adjustments for other non-current liabilities: 99.403341%\n", "financial_position_Trade receivables: 99.403341%\n", "cash_flows_Payments of other equity instruments: 99.403341%\n", "cash_flows_Cash receipts from repayment of advances and loans made to other parties, classified as investing activities: 99.403341%\n", "financial_position_Board of directors' remunerations: 99.403341%\n", "financial_position_Accounts receivable and prepayments: 99.403341%\n", "financial_position_Non-current portion of obligation under finance lease.1: 99.403341%\n", "financial_position_Current portion of obligation under finance lease.1: 99.403341%\n", "income_statement_Other adjustments for non-cash items: 99.403341%\n", "income_statement_Net cash flows from (used in) operations: 99.403341%\n", "cash_flows_Net movement in other non-current assets: 99.403341%\n", "cash_flows_Employees defined benefits liabilities paid: 99.403341%\n", "financial_position_Murabaha Loan: 99.403341%\n", "cash_flows_Payment of lease liabilties: 99.403341%\n", "financial_position_Deferred tax assets.1: 99.363564%\n", "cash_flows_Finance income received: 99.363564%\n", "financial_position_Capital advances: 99.363564%\n", "income_statement_Impairment loss on trade receivables: 99.363564%\n", "income_statement_Income tax on discontinued operations for period: 99.363564%\n", "cash_flows_Expenditure on exploration and evaluation assets: 99.363564%\n", "financial_position_Special commission expenses / return on deposits: 99.363564%\n", "financial_position_Zakat and Income Tax Payable: 99.363564%\n", "financial_position_Provision for Zakat: 99.363564%\n", "cash_flows_Adjustment for depreciation of investment properties: 99.363564%\n", "financial_position_Advances to Suppliers: 99.363564%\n", "financial_position_Trade Account Receivable: 99.363564%\n", "cash_flows_Adjustments for Provision for allowance for expected credit losses: 99.363564%\n", "financial_position_Advance to Contractors: 99.323787%\n", "equity_changes_Adjustments for restatements: 99.323787%\n", "financial_position_Right-of-use asset: 99.323787%\n", "cash_flows_Depreciation of right-of-use assets2: 99.323787%\n", "cash_flows_Contribution for the employees savings plan: 99.323787%\n", "cash_flows_Depreciation of property, plant and equipment: 99.323787%\n", "financial_position_Current portion of Lease Liability: 99.323787%\n", "financial_position_Prepayments and Other Current Assets: 99.323787%\n", "financial_position_Investment in unconsolidated subsidiary: 99.323787%\n", "financial_position_Equity Investment at FVOCI and AFS Investment: 99.323787%\n", "cash_flows_Adjustments for Depreciation of right-of-use asset: 99.323787%\n", "financial_position_Zakat Provision: 99.323787%\n", "financial_position_Term Loans: 99.323787%\n", "financial_position_Current maturity of lease liabilities: 99.323787%\n", "financial_position_Refund Liabilities: 99.323787%\n", "financial_position_Projects, trade and other payables.2: 99.323787%\n", "financial_position_Current portion of long-term borrowings.2: 99.323787%\n", "financial_position_Right-of-use assets1: 99.323787%\n", "financial_position_Capital work-in-progress.1: 99.323787%\n", "financial_position_Income taxes and zakat payable: 99.323787%\n", "financial_position_Other assets and receivables - current: 99.323787%\n", "cash_flows_Dividends from investments in securities - investing activities: 99.323787%\n", "cash_flows_Distributions from joint ventures and associates: 99.323787%\n", "income_statement_Zakat and Income Tax: 99.323787%\n", "financial_position_Investment in joint ventures.1: 99.323787%\n", "financial_position_Long-term borrowings.3: 99.323787%\n", "financial_position_Provision for decommissioning, site rehabilitation and dismantling obligations: 99.323787%\n", "cash_flows_Employees' defined benefits liabilties and other benefits paid: 99.323787%\n", "financial_position_Borrowings - non-current: 99.323787%\n", "financial_position_Borrowings - current: 99.323787%\n", "financial_position_Provisions and other liabilities: 99.323787%\n", "financial_position_Other assets and receivables - non current: 99.323787%\n", "financial_position_Investments in securities: 99.323787%\n", "cash_flows_Amortization of right of use assets: 99.323787%\n", "financial_position_Due from the Government: 99.323787%\n", "financial_position_Cash and cash equivalents.2: 99.323787%\n", "financial_position_Advances and prepayments.2: 99.323787%\n", "financial_position_Trade and other receivables.2: 99.323787%\n", "income_statement_Share in net income of joint ventures that have been equity accounted: 99.323787%\n", "financial_position_Severance fees payable.1: 99.323787%\n", "financial_position_Projects, trade and other payables.4: 99.323787%\n", "financial_position_Employees benefits.1: 99.323787%\n", "income_statement_Exploration and technical services expenses.9: 99.323787%\n", "financial_position_Accrued expenses.2: 99.323787%\n", "financial_position_Zakat payable.3: 99.323787%\n", "income_statement_Purchase of property and equipment: 99.323787%\n", "cash_flows_Current service cost of employees end of service benefits: 99.323787%\n", "cash_flows_Depletion and depreciation of mine properties: 99.323787%\n", "cash_flows_Finance cost.4: 99.323787%\n", "cash_flows_Provision for severance fees.5: 99.323787%\n", "financial_position_Time deposits.2: 99.323787%\n", "financial_position_Intangible assets.1: 99.323787%\n", "financial_position_Rent and premises related expenses: 99.284010%\n", "financial_position_Profit (loss) from continuing operations before zakat and income tax: 99.284010%\n", "financial_position_Salaries and employee related expenses: 99.284010%\n", "income_statement_Repayments of debt securities, borrowings, term loan and sukuk: 99.284010%\n", "income_statement_Adjustments for depreciation: 99.284010%\n", "income_statement_Profit (loss) before zakat and income tax: 99.284010%\n", "income_statement_Cash and cash equivalents at end of period: 99.284010%\n", "financial_position_Accruals and other current liabilities: 99.284010%\n", "financial_position_Short-term investments: 99.284010%\n", "financial_position_Special commission income/ gross financing and investment income: 99.284010%\n", "income_statement_Profit (loss) from continuing operations before zakat and income tax: 99.284010%\n", "comprehensive_income_Equity balance at beginning of period (after adjustments): 99.284010%\n", "comprehensive_income_Equity balance at beginning of period (before adjustments): 99.284010%\n", "income_statement_Cash and cash equivalents at beginning of period: 99.284010%\n", "financial_position_Special commission income (expense)/ financing and investment income (expense), net: 99.284010%\n", "financial_position_Other general and administrative expenses: 99.284010%\n", "financial_position_Profit (loss) from operating activities: 99.284010%\n", "financial_position_Basic earnings (loss) per share from continuing operations: 99.284010%\n", "financial_position_Total basic earnings (loss) per share: 99.284010%\n", "financial_position_Profit (loss), attributable to equity holders of parent company: 99.284010%\n", "financial_position_Profit (loss) for the period: 99.284010%\n", "financial_position_Zakat expenses on continuing operations for period: 99.284010%\n", "financial_position_Profit (loss) from continuing operations: 99.284010%\n", "financial_position_Total operating expenses: 99.284010%\n", "financial_position_Weighted average number of equity shares outstanding: 99.284010%\n", "income_statement_Payments of finance lease liabilities: 99.284010%\n", "cash_flows_Disposal to non-controlling interest: 99.284010%\n", "income_statement_Proceeds from debt securities, borrowings, term loan and sukuk: 99.284010%\n", "financial_position_Fee and commission income (expense): 99.284010%\n", "comprehensive_income_Equity balance at end of period: 99.284010%\n", "financial_position_Total operating income: 99.284010%\n", "cash_flows_Proceeds from issuing other equity instruments: 99.284010%\n", "financial_position_Depreciation and amortisation expense: 99.284010%\n", "cash_flows_Adjustments for contribution of equipment by customers: 99.244232%\n", "financial_position_Current portion of Lease liabilities: 99.244232%\n", "cash_flows_Amortisation of intangible assets: 99.204455%\n", "cash_flows_Adjustments for unsuccessful exploration and evaluation expenditures: 99.204455%\n", "cash_flows_Purchase of intangible assets: 99.164678%\n", "cash_flows_Finance cost paid: 99.164678%\n", "cash_flows_Capital expenditure on completed investment properties: 99.164678%\n", "income_statement_Investment income: 99.124901%\n", "cash_flows_Adjustments for increase (decrease) in royalty payable: 99.085123%\n", "equity_changes_Other miscellaneous changes in equity: 99.085123%\n", "financial_position_Contract assets: 99.085123%\n", "financial_position_Rent receivables: 99.045346%\n", "financial_position_Mine properties: 99.045346%\n", "comprehensive_income_Other comprehensive income, available-for-sale financial assets: 99.045346%\n" ] }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
comprehensive_income_Income tax (charge) credit relating to cash flow hedgesfinancial_position_Rent receivablescash_flows_Cash receipts from repayment of advances and loans made to other parties, classified as investing activitiescash_flows_Adjustments for contribution of equipment by customerscash_flows_Proceeds from issuing other equity instrumentscomprehensive_income_Gains (losses) on hedges of net investments in foreign operationscomprehensive_income_Total other comprehensive income (loss), hedges of net investment in foreign operationsequity_changes_Adjustments for restatementsfinancial_position_Time depositfinancial_position_Deferred tax liabilityfinancial_position_Loans and lease liabilitiesfinancial_position_Loan and lease liabilitiescash_flows_Provision for impairment of financial assetcash_flows_Gain on disposal group sale of Alanmaacash_flows_Zakat and income tax paidcash_flows_Other non-current assetscash_flows_Net movement in short-term and long-term loanscash_flows_Finance costs paidcash_flows_Dividends paidcash_flows_Non-controlling interest, netincome_statement_Research expensesincome_statement_Provision for impairment of financial assetscash_flows_Provision for impairment of financial assetscash_flows_Other non current assetscash_flows_Cash and cash equivalents of disposal group classified as held for salecash_flows_Net foreign exchange gainfinancial_position_Due to a related party - loanincome_statement_Provision for reversal of impairment of financial assetscash_flows_Provision for reversal of impairment of financial assetcash_flows_Net movement in short-term and long-term loanfinancial_position_Time Depositfinancial_position_Assets relating to disposal group classified as held for salefinancial_position_Short term investment at amortized costfinancial_position_Investment in long-term sukukfinancial_position_Loans and lease liabitesfinancial_position_Zakat and income tax payablefinancial_position_Liabilities relating to disposal group classifiedcash_flows_Provision for near expiry, obsolete and slow-moving inventoriescash_flows_Employee defined benefit costfinancial_position_time depositsfinancial_position_Loans and lease liabilities - Currentfinancial_position_Due to related party loancash_flows_Provision for impairment of trade receivablescash_flows_Proceeds from sale of a subsidiarycash_flows_proceed from long term loanfinancial_position_Loan and leaseliabilitiescash_flows_Gain on disposal of a subsidiarycash_flows_Impairment on non-financial assetscash_flows_Acquisition of a subsidiarycash_flows_Net movement in short-term loanscash_flows_Proceeds from long-term loansfinancial_position_Investment in long-term sukuksfinancial_position_Loans and lease liabiltiescash_flows_Provision for near expiry, obsolete and slow- moving inventoriescash_flows_Employee defined benefit costscash_flows_Provision for impairment of trade and other receivablescash_flows_Net monetary loss (gain)cash_flows_Amount received from purchaser of a subsidiaryfinancial_position_Due to a related party loanfinancial_position_Loans and lease liabilities Non Currentfinancial_position_Time depositsfinancial_position_Loan and lease liabiltiescash_flows_Inventory written-offcash_flows_Disposal of a subsidiarycash_flows_Cash received for settlement of a related party balancefinancial_position_Due to a related party Loancash_flows_Net foreign exchange gain or lossfinancial_position_Loans and lease liabiltescash_flows_Provison for impairment of financial assetscash_flows_Financial assets written-offfinancial_position_Loans and Lease Liabilitiescash_flows_Gain on disposal group - sale of Alanmaaincome_statement_Impairment of financial assetscash_flows_Loss on disposal of property, plant and equipmentcash_flows_Repayment of a related party loancash_flows_Expected credit losses on trade receivablescash_flows_Paid to purchase intangible assetsfinancial_position_Cumulative changes in the items of other comprehensive incomecash_flows_Reversal of provision for impairment of other receivablescash_flows_Impairment (Reversal of impairment) in allowance for expected credit losses for trade receivablescash_flows_Other provisions - (Reversal of other provisions)cash_flows_Cash and cash equivalents through business combinationfinancial_position_Projects in progresscash_flows_Other Provisionscash_flows_End-of-service benefits paidcash_flows_Write-off of projects in progressfinancial_position_Cumulative changes in other comprehensive incomefinancial_position_Projects in Progresscash_flows_Creation (reversal) of provision expected credit losses on trade receivableincome_statement_(Provision) reversal of expected credit loss (ECLs) on trade receivablesfinancial_position_Cumulative changes in the items of other comprehensivecash_flows_Reversal of other provisionscash_flows_Reduction of provision for expected credit losses on trade receivablescash_flows_Amortization of intangible assetscash_flows_Depreciation on right of-use of assetscash_flows_Disposal to non-controlling interestcash_flows_Expected Credit Lossescash_flows_Provision for Contracts Incremental Costsequity_changes_Other distributions to equity holderscash_flows_A,mourtazition of rights of use assetscash_flows_Reduction of share capitalcash_flows_Amortization of rights of usecash_flows_(Reversal) expected credit losscash_flows_finance costs of lease liabilitiescash_flows_interest cost of employees defined benfit plan obligationcash_flows_Impairment (reversal) of trade receivablescash_flows_Capital reductioncash_flows_Payment for acquisition of subsidiary, net of cash acquiredfinancial_position_Prepayment and other assetsfinancial_position_Employees home ownership receivablesfinancial_position_Loans to employeesfinancial_position_Accrued expenses and other liabilitiesfinancial_position_Long term borrowingsfinancial_position_Lease Liabilitiesfinancial_position_Employee benefit obligationsincome_statement_Other (expenses) income-netcomprehensive_income_Deferred tax to re-measurements losscomprehensive_income_Re-measurement(loss) gain on defined employee benefit obligationcash_flows_Adjustments for Depreciation and Amortizationcash_flows_Adjustments for non-cash employee benefit expensescash_flows_adjustments for provisions for employee benefi obligationscash_flows_Finance income receivedcash_flows_Impairment loss on Financial insturmentcash_flows_Proceeds from short term depositscash_flows_Repayments of loans by employeesfinancial_position_Cash and cash equivalentsfinancial_position_Current portion of borrowingsfinancial_position_Borrowingsfinancial_position_Provision for decommissioning obligationincome_statement_Impairment loss on trade receivablesincome_statement_Zakat and income taxcash_flows_Adjustments for Depreciation on right-of-use assetscash_flows_Adjustments for Interest on lease liabilitiescash_flows_Adjustments for Impairment loss on trade receivablescash_flows_Adjustments for Allowance for slow moving inventoriescash_flows_Employee benefit obligations paidcash_flows_Collection against employee loanscash_flows_Finance cost paidfinancial_position_Loans to employeefinancial_position_current portion for long term borrowingsfinancial_position_Long Term Borrowingsfinancial_position_Lease Liabilitesfinancial_position_provision fro decommissioing obligationincome_statement_impairment losses on financial assetsincome_statement_Zakat and income tax chargecash_flows_Adjustment for insurance claim compensationcash_flows_impariment loss on financial assetscash_flows_write off of trade receivablescash_flows_Net allowance for inventory obsolesence and slow movingcash_flows_Finance Income Receviedcash_flows_Employee benefit obligation paidcash_flows_payment for intangible assetscash_flows_investment in short term depositscash_flows_Maturity from short term depositscash_flows_Insurance claim compensation receviedcash_flows_collection against employee loanscash_flows_Disburesment of employee loanscash_flows_Finance cost elements of lease paymentscash_flows_finance cost paidincome_statement_Fair value gain loss on derivative financial instruments measured at fair value through profit and losscash_flows_adjustments for provisions for slow moving inventoriescash_flows_Repayment of employees home ownership receivablesfinancial_position_Long-term borrowingsincome_statement_Impairment losses on financial assetscomprehensive_income_Re-measurement loss on employee benefit obligationscash_flows_Impairment loss on financial assetscash_flows_Allowance for inventory obsolescence and slow movingcash_flows_Depreciation on right of use assetscash_flows_Interest on lease liabilitiescash_flows_Withdrawals from short-term depositscash_flows_Collection against employees loansincome_statement_Salescash_flows_Adjustments for impairment loss on trade receivablescash_flows_Adjustments for payments and other assetscash_flows_adjsutmetns for Accured expenses and other liabilitiescash_flows_Additions to intangible assetsfinancial_position_Current portion of long-term borrowingsincome_statement_Impairment losss on financial assetsincome_statement_Zakat and income tax credit (charge)cash_flows_Interest on lease liabilitiesscash_flows_Adjusments for Insurance claim compensationcash_flows_Adjusments for Impairment loss on financial assetscash_flows_Adjustment for Impairment of allowance on inventoriescash_flows_Loss on sale of property, plant and equipmentscash_flows_Employee benefit obligations paidscash_flows_Finance income receivedscash_flows_Provision for employee benefits obligationscash_flows_Loss on disposals of property and equipmentcash_flows_Impairment (reversal) charge on inventoriescash_flows_Non-cash employee expensescash_flows_Depreciation on right-of-use assetscash_flows_Provision for employees benefits obligationscash_flows_Loss on sale of property, plant and equipmentcash_flows_Allowance for (reversal of) slow moving inventoriesequity_changes_Transfer of share capitalcash_flows_Property, plan and equipment written offcash_flows_Adjustmetns for loss (gain) on sale of property and equipmentfinancial_position_Prepayments and other assetsincome_statement_Other incomecash_flows_Employee related expensescash_flows_Payments for intangible assetscash_flows_Investment in short-term depositscash_flows_Disbursement of employee loanscash_flows_Repayments of borrowingscash_flows_Finance cost element of lease paymentscash_flows_Principal element of lease paymentscash_flows_Dividendsequity_changes_Other miscellaneous changes in equitycash_flows_PROVISION OF EXPECTED CREDIT LOSS EXPENSEcash_flows_PROVISION OF OBSOLESCENCE INVENTORY EXPENSEcash_flows_FINANCE COSTcash_flows_EMPLOYEES END -OF-SERVICE BENEFITS PAIDcash_flows_ZAKAT PAIDcash_flows_DISPOSAL OF INVESTMENT IN EQUITY INSTRUMENTS AT FVTPLcash_flows_Gains on changes in fair value of investment equity instrumentscash_flows_Provision of expected credit loss expensecash_flows_Provision for obsolescence inventorycash_flows_Finance costcash_flows_from related partycash_flows_Zakat paidcash_flows_Employees end of service benefits paidcash_flows_Sale of investment in equity instruments at FVTPLcash_flows_Purchase of intangible assetscash_flows_Time Depositecash_flows_Change in investments at joint venturescash_flows_Provision for obsolescence inventory in processcash_flows_Allowance for doubtful debtscash_flows_Paid out of employees end of service benefitscash_flows_Buying intangible assetscash_flows_Purchase of short-term time depositcash_flows_Financing costscash_flows_Sale of an investment in equity instruments at fair value through profit or losscash_flows_Provision for of obsolescence inventory expensecash_flows_Provision for of expected credit loss expensecash_flows_Purchase of short time depositcash_flows_Purchase of property, plant and equipment and Capital work in progresscash_flows_Repayments of lease liabilitycash_flows_provision for doubtful debtscash_flows_interest expensecash_flows_Provision for obsolescence inventory expensecash_flows_Provisions n longer requiredcash_flows_Gain on change in fair value of investments through profit or losscash_flows_Allowance for obsolescence inventorycash_flows_Gain on sale property, plant and equipmentcash_flows_provision no ionger requiredcash_flows_Proceeds from the Sale of investment in equity instruments at FVTPLcash_flows_Purchase of short term time depositcash_flows_Proceeds from the disposal of Property, Plant and Equipmentcash_flows_Gains on changes in fair value of investment in equity instrumentscash_flows_Repayments of capital reductioncash_flows_Gains on changes in fair value of investment in equity instrumentcash_flows_CHANGES IN INVENTORYfinancial_position_Investment in Islamic financing contractsfinancial_position_Trade and other receivablesfinancial_position_Investment in Islamic financing contracts - non curentcash_flows_Increase in deferred revenue from extended warranty Programcash_flows_Payments for purchases of intangible assetscash_flows_Dividends paid to the Company shareholdersfinancial_position_Current portion of investment in Islamic financing contractsfinancial_position_Non Current portion of investment in Islamic financing contractsfinancial_position_Lease liabilities Non Current Portioncash_flows_Gain on termination of a leasecash_flows_Current portion of investment in Islamic financing contractscash_flows_Increase in deferred revenue from extended warranty programcash_flows_Sales Instalment Receivablecash_flows_Loss on disposal of property and equipmentcash_flows_Intangible assets written-offcash_flows_Finance income from net investment in finance leasefinancial_position_Trade and other receivables - current portionfinancial_position_Installment sales receivables - current portionfinancial_position_Right Of Usefinancial_position_Trade and other receivables - noncurrent portionfinancial_position_Installment sales receivables - noncurrent portionfinancial_position_Deferred revenue from additional service program - current portionfinancial_position_Lease Liability- current partfinancial_position_Deferred revenue from additional service program - noncurrent portionfinancial_position_Lease Liability- Non current partincome_statement_Zakatincome_statement_Deferred tax income (expense)cash_flows_Depreciation of assets of right of usecash_flows_The write-off of property and equipmentcash_flows_Intangible assets written offcash_flows_Zakat Expensecash_flows_Deferred Taxcash_flows_End of service benefitscash_flows_Loss - Income on termination of a leasecash_flows_Deferred Revenue from additional sales programcash_flows_Dividend paymentcash_flows_Gain on sub-leasefinancial_position_Investment in Islamic financing contracts - non currentcash_flows_Property and equipment written offcash_flows_Increase in extended warranty programfinancial_position_Lease liabilities - Non Currentcomprehensive_income_Re-measurement of end of service benefit obligationcash_flows_impairment loss recognized on installment sales receivable, netcash_flows_Impairment recognized against inventoriescash_flows_Purchase of treasury sharescash_flows_Movement in foreign exchange translationincome_statement_Income tax on discontinued operations for periodequity_changes_Transfer from retained earningscash_flows_Adjustments for impairment (reversal of impairment) of mine propertiescash_flows_Expenditure on exploration and evaluation assetsincome_statement_Adjustment for provision for slow moving items and inventory shortageincome_statement_Provisionsincome_statement_provision for expected credit lossescash_flows_Adjustments for increase (decrease) in royalty payablefinancial_position_Oil and gas propertiesfinancial_position_Mine propertiescash_flows_Proceeds from exercise of share optionscash_flows_Adjustments for gain on sale of exploration and evaluation assetsfinancial_position_Investment at fair value through profit or lossfinancial_position_Deferred costs netincome_statement_Loss from investment at fair value through profit or losscash_flows_Adjustments for Provision for expected credit losscash_flows_Adjustments for Selling investments at fair value through profit or losscash_flows_Cash in Portfolio - investments at fair value through profit or losscash_flows_Adjustments for decrease (increase) in Loss from investment at fair value through profit or lossfinancial_position_Investment at amortised costincome_statement_Interest income from investment at amortised costcash_flows_Adjustments for Amortization of deferred costscash_flows_Adjustments for Amortisation of right of use assetcash_flows_Adjustments for Financial charges on lease liabilitiescash_flows_Adjustments for Financial charges on term facilitiescash_flows_Interest income received from investment at amortised costincome_statement_Other income, netcash_flows_Adjustments for decrease (increase) in Depreciation of right of use assetcash_flows_Expected credit lossesfinancial_position_Contract assetsfinancial_position_Deferred costs, netcash_flows_Adjustments for decrease (increase) in Allowance for doubtful trade accounts receivablecash_flows_Adjustments for Dividends from investments at fair value through profit or losscash_flows_Adjustments for Realized and unrealized profit from investment at fair value through profit and losscash_flows_Proceeds from investments at fair value through profit or lossfinancial_position_Short-term investment at amortised costfinancial_position_Long term facilitiescash_flows_Adjustments for decrease (increase) in Amortization of deferred costscash_flows_Adjustments for Interest income from investment at amortised costcash_flows_Adjustments for Contract assetscash_flows_Purchase investments at fair value through profit or losscash_flows_Adjustments for Allowance for expected credit lossescash_flows_Adjustment to Interest income from investments at amortised costcash_flows_Adjustments for Employees' defined benefits paidcash_flows_Purchase of investment at amortized costsincome_statement_Interest income from investments at amortised costcash_flows_Adjustments for Interest income from investments at amortised costcash_flows_Interest income received from investments at amortised costcash_flows_Selling investments at fair value through profit or lossfinancial_position_Investment at fair value through profit and lossincome_statement_Profit from investment at fair value through profit and losscash_flows_Proceeds from disposal of subsidiarycash_flows_Expenditure on oil and gas assetscash_flows_Expenditure on mine developmentcash_flows_Proceeds on disposal of mine propertiesequity_changes_Final dividend paidcomprehensive_income_Other comprehensive income, available-for-sale financial assetsfinancial_position_Trade Account Receivablefinancial_position_Advances to Suppliersfinancial_position_Trade receivablesfinancial_position_Provision for Zakat and Income Taxcash_flows_Adjustment for depreciation of investment propertiescash_flows_Adjustments for other non-current liabilitiescash_flows_Purchase of property, plant and equipment and investment propertiesfinancial_position_Long term prepaymentscash_flows_Adjustments for increase (decrease) in contract assetscash_flows_Adjustments for increase (decrease) in advances to supplierscash_flows_Cash or loan received from shareholdersincome_statement_Impairment of intangible assetscash_flows_Adjustments to Intangible assets written offcash_flows_Employees defined benefits paidcash_flows_Loss on disposal of subsidiaryfinancial_position_Contract Assetsfinancial_position_Accounts Receivableincome_statement_Impairment of investment in an associatecash_flows_Allowance for expected credit lossesfinancial_position_Advance to Suppliersfinancial_position_Other non-current assetsOther Non- Current Assetscash_flows_Loss on disposal of a subsidiarycash_flows_Adjustment for other non current liabilitiescash_flows_Remeasurement gain on right of use assets and lease liabilitiesfinancial_position_Vehiclesfinancial_position_Other Property and equipmentfinancial_position_Right of use assetfinancial_position_Advancesfinancial_position_Retention receivablefinancial_position_Loans and borrowings, currentfinancial_position_Accrual and other liabilitiesfinancial_position_Loans and borrowings, non-currentincome_statement_Impairment loss on trade and other receivablescash_flows_Net book value of vehicles disposedcash_flows_Adjustments for impairment loss (reversal of impairment loss) on Trade and other receivablescash_flows_Adjustments for depreciation and impairment (reversal of impairment) of Vehiclescash_flows_Adjustments for depreciation and impairment (reversal of impairment) of Right of use Assetcash_flows_Adjustments for depreciation and impairment (reversal of impairment) of other property, plant and equipmentscash_flows_Adjustments for Financial chargescash_flows_Adjustments for Finance charge on lease liabilitycash_flows_Additions to Vehiclescash_flows_Employee benefits paidcash_flows_Acquisition of capital work in progressfinancial_position_Prepayments and Other Receivablesfinancial_position_Other property and equipmentfinancial_position_Capital work in progressincome_statement_Employee incentivecash_flows_Employee incentivecash_flows_Additions to Vehicles, net of CWIPfinancial_position_Retention Receivablecash_flows_Acquisition of other property and equipmentfinancial_position_Prepayments and other receivablesincome_statement_Impairment loss on other receivablecash_flows_Impairment loss on trade receivablescash_flows_Impairment loss on other receivablecash_flows_Adjustments for depreciation and impairment (reversal of impairment) of Other property plant and equipmentcash_flows_Acquisition of other property plant and equipmentcash_flows_Acquisition of intangible assetfinancial_position_Retentions receivablecash_flows_Adjustments for Other finance chargescash_flows_Other Interest paid, classified as operating activitiescash_flows_Lease Interest paid, classified as operating activitiescash_flows_Interest paid on loans and borrowings, classified as operating activitiescash_flows_Additions to Vehicles, net of advancescash_flows_Advances on acquisitionsincome_statement_Employee Incentivecash_flows_Impairment loss on Trade and Other receivablescash_flows_Employee Incentivecash_flows_Adjustments for decrease (increase) in Prepayment and Other receivablescash_flows_Purchase of Capital work in progresscash_flows_Related parties, netcash_flows_Lease interest paidfinancial_position_Special commission income/ gross financing and investment incomefinancial_position_Special commission expenses / return on depositsfinancial_position_Special commission income (expense)/ financing and investment income (expense), netfinancial_position_Fee and commission income (expense)financial_position_Other operating incomefinancial_position_Total operating incomefinancial_position_Salaries and employee related expensesfinancial_position_Rent and premises related expensesfinancial_position_Depreciation and amortisation expensefinancial_position_Other general and administrative expensesfinancial_position_Board of directors' remunerationsfinancial_position_Other operating expensefinancial_position_Total operating expensesfinancial_position_Profit (loss) from operating activitiesfinancial_position_Profit (loss) from continuing operations before zakat and income taxfinancial_position_Zakat expenses on continuing operations for periodfinancial_position_Profit (loss) from continuing operationsfinancial_position_Profit (loss) for the periodfinancial_position_Profit (loss), attributable to equity holders of parent companyfinancial_position_Basic earnings (loss) per share from continuing operationsfinancial_position_Total basic earnings (loss) per sharefinancial_position_Diluted earnings (loss) per share from continuing operationsfinancial_position_Total diluted earnings (loss) per sharefinancial_position_Weighted average number of equity shares outstandingincome_statement_Profit (loss) from continuing operations before zakat and income taxincome_statement_Profit (loss) before zakat and income taxincome_statement_Adjustments for depreciationincome_statement_Adjustments for amortisation expenseincome_statement_Adjustments for staff share based plan expensesincome_statement_Other adjustments for non-cash itemsincome_statement_Other adjustments to reconcile profit (loss)income_statement_Total adjustments to reconcile profit (loss)income_statement_Adjustments for decrease (increase) in financing, netincome_statement_Adjustments for decrease (increase) in loans, financing and advancesincome_statement_Adjustments for decrease (increase) in other operating assetsincome_statement_Net decrease (increase) in operating assetsincome_statement_Net cash flows from (used in) operationsincome_statement_Zakat expenses, classified as operating activitiesincome_statement_Net cash flows from (used in) operating activitiesincome_statement_Purchase of property and equipmentincome_statement_Purchase of intangible assetsincome_statement_Proceeds from debt securities, borrowings, term loan and sukukincome_statement_Repayments of debt securities, borrowings, term loan and sukukincome_statement_Payments of finance lease liabilitiesincome_statement_Increase (decrease) in cash and cash equivalents before effect of exchange rate changesincome_statement_Net increase (decrease) in cash and cash equivalentsincome_statement_Cash and cash equivalents at beginning of periodincome_statement_Cash and cash equivalents at end of periodcomprehensive_income_Equity balance at beginning of period (before adjustments)comprehensive_income_Equity balance at beginning of period (after adjustments)comprehensive_income_Equity balance at end of periodfinancial_position_Impairment (reversal of impairment) charge for credit losses/ loans, financing and advancesincome_statement_Adjustments for impairment (reversal of impairment) for loans, financing and advancesincome_statement_Adjustments for increase (decrease) in other operating liabilitiesincome_statement_Net increase (decrease) in operating liabilitiesfinancial_position_Share closing price at the last trading day of financial year (in numbers)income_statement_Adjustments for income from fair value through statement of income [FVSI] financial instrumentsincome_statement_Proceeds from disposal of property and equipmentincome_statement_Dividends paid, classified as financing activitiesfinancial_position_Income tax on continuing operations for periodincome_statement_Net cash flows from (used in) investing activitiesfinancial_position_Income (loss) from fair value through statement of income [FVSI] financial instruments, netcash_flows_Proceeds on disposal of exploration and evaluation assetsfinancial_position_Right-of-use assets, netcash_flows_Accretion of interestcash_flows_Gain on derivative instrument at FVTPLcash_flows_Finance cost payment relating to term loanscash_flows_Finance cost on lease liabilitycash_flows_Derecognition of ROU and Lease liabilitycash_flows_Write off property and equipmentcash_flows_Gain on derivative instrument at FVPLcash_flows_ا Rent concession for leasescash_flows_Write off (reversal) of property and equipmentcash_flows_Rent concession for leasesfinancial_position_Biological assets currentfinancial_position_Prepayments and other debit balancesfinancial_position_Assets classified as held for salefinancial_position_Accounts receivablefinancial_position_right-of-use assetsfinancial_position_Biological assetsfinancial_position_Work in progressfinancial_position_Investmentfinancial_position_Provision for guarantee loan related to associatefinancial_position_Dismantling provision LIBcash_flows_Biological assets currentcash_flows_right-of-use assetscash_flows_Intangible assetscash_flows_Work in progresscash_flows_Assets classified as held for salefinancial_position_Vital assetsfinancial_position_Non - current biological assetsfinancial_position_Investments in equity instrumentsincome_statement_Impairment losses on other receivablesincome_statement_impairment losses in inventoryincome_statement_Losses of capital projectsincome_statement_Share of profit or loss of an associatecomprehensive_income_Income tax (charge) credit relating to translation of foreign operationscash_flows_Depreciation of biologicalassetscash_flows_Losses of capital projectscash_flows_Provision for loan guarantee in associatescash_flows_Impairment losses on vital assetscash_flows_Differences revaluation of crop stocks at harvest pointcash_flows_Impairment losses on other receivablescash_flows_Gain on valuation of financial investmentscash_flows_impairment losses in inventoryincome_statement_Differences revaluation of crop stocks at harvest pointincome_statement_Loss of removal and destruction of cropsincome_statement_Provision for loan guarantee in associatesincome_statement_Impairment losses on vital assetsincome_statement_Provision for expected credit lossesincome_statement_Impairment on biological assetscash_flows_Amortization of biological assets Cash Flowcash_flows_Reversal provision Expected credit loss CFcash_flows_Biological assets CFfinancial_position_Non-current assets classified as held for salecomprehensive_income_Income tax (charge) credit relating to unrealised losses on available-for-sale financial assets, netcomprehensive_income_Reclassification adjustment on available-for-sale financial assets due to impairmentcash_flows_Adjustments for depletionfinancial_position_Financial assets at fair value through other comprehensive incomefinancial_position_Obligations under finance lease1financial_position_Obligations under finance leasecomprehensive_income_Unrealized gain on financial assets at fair valuecomprehensive_income_Re-measurement gain on defined benefit planscash_flows_Proceeds from disposal of property, plant and equipmentcash_flows_Investment income from time deposits receivedcash_flows_Net movement in other non-current assetscash_flows_Movement in obligations under capital leasecash_flows_Proceeds from short-term borrowingscomprehensive_income_Re-measurement (loss) gain oncash_flows_Non cash post employees benefits expensecash_flows_Interest incomecash_flows_Interest income receivedfinancial_position_long term loansfinancial_position_suggested dividendsfinancial_position_accumulated changes in OCIcash_flows_changes in ECL Provisioncash_flows_Financing Expenses Paidcash_flows_end of service paidcash_flows_zakat paidcash_flows_dividends payable paidcash_flows_financing cost paidfinancial_position_prepaid for fixed assets purchasescash_flows_prepayments for PPE purchasesfinancial_position_noncurrent portion for long term loanfinancial_position_Changes in OCIcash_flows_Changes in expected credit lossescash_flows_Paid empolyee benefitscash_flows_paid dividendscash_flows_paid payable dividendsfinancial_position_Suggested Dividendscash_flows_Paid Financing costcash_flows_ROU Amortizationcash_flows_WIP Additionsincome_statement_Impairment on treesfinancial_position_Accumulated changes in other comprehensive incomefinancial_position_Securities auction shares under settlementfinancial_position_Due to related partycash_flows_Zakat adjustmentscash_flows_Chang in Securities auction shares under settlementcash_flows_Unearned revenuecash_flows_Additions of investment propertycash_flows_Chang In Due to related partyfinancial_position_Auction shares deposits under settlementcash_flows_Chang In Provision for expected credit lossescash_flows_Change In Due to related partiescash_flows_Depreciations of right of used assetscash_flows_provision of the expected credit losscash_flows_Employees benefits - Paidcash_flows_Lease liability settlement against other incomecash_flows_Provided reversal of expected credit loss provisioncash_flows_Employees defined benefit obligation - Paidcash_flows_Due to related partycash_flows_Chang in Due to related partycash_flows_Depreciation of investment propertiescash_flows_Zakat Adjustmentscash_flows_Cahng In Securities auction shares under settlementcash_flows_Deferred revenuecash_flows_Payment of fees from financing costs for the yearcash_flows_Payment from provision for potential claimscash_flows_Payment from employees benefit during the yearfinancial_position_أمانات أسهم مزاد تحت التسويةcash_flows_Provided of expected credit losses provisioncash_flows_Capital expenditure on completed investment propertiescash_flows_Chang In Unearned revenuecash_flows_Non-Cash items Settlement of lease liability against other incomecash_flows_Provision for impairment of other debit balancescash_flows_Impairment of goodwill - lossescash_flows_Depreciations of investment propertycash_flows_Gain from disposal of right of use assetscash_flows_Financing cost obligations during the year - Paidcash_flows_Provision for potential claims - Paidcash_flows_Due from related partycash_flows_Expected credit losses provision during the yearcash_flows_Potential claims provision during the yearcash_flows_Payment For Due to related partycash_flows_Change In Due to related partycash_flows_Chang in Depreciations of investment propertycash_flows_Chang in Provision for expected credit lossescash_flows_Change In Provision for impairment of other debit balancescash_flows_Employees defined benefit obligation Paidcash_flows_Due to related partiescash_flows_Settlement of lease liability against other incomecash_flows_Depreciations of right of use assetscash_flows_Expected credit loss provision - chargedfinancial_position_Short-term investmentsfinancial_position_Due from the Governmentfinancial_position_Other assets and receivables - currentfinancial_position_Investments in securitiesfinancial_position_Other assets and receivables - non currentfinancial_position_Borrowings - currentfinancial_position_Trade and other payablesfinancial_position_Income taxes and zakat payablefinancial_position_Borrowings - non-currentfinancial_position_Post-employment benefit obligationsfinancial_position_Provisions and other liabilitiesfinancial_position_Additional paid-in capitalfinancial_position_Retained earnings - Unappropriatedfinancial_position_Retained earnings - Appropriatedcomprehensive_income_Remeasurement of post-employment benefit obligationscomprehensive_income_Cash flow hedges and otherequity_changes_Bonus shares issuedcash_flows_Adjustments for unsuccessful exploration and evaluation expenditurescash_flows_Change in fair value of investments through profit or losscash_flows_Adjustments for increase (decrease) in Trade and other payablescash_flows_Other assets and receivablescash_flows_Changes in Post-employment benefit obligationscash_flows_Distributions from joint ventures and associatescash_flows_Dividends from investments in securities - investing activitiescomprehensive_income_Changes in fair value of equity investments classified as fair value through other comprehensive incomecash_flows_Change in joint ventures and associates inventory profit eliminationcash_flows_Changes in provisions and other liabilitiescash_flows_Cash acquired on acquisition of subsidiarycash_flows_Proceeds from sale of non-controlling equity interest in a subsidiarycash_flows_Proceeds from issue of treasury sharescomprehensive_income_Share of post-employment benefit obligations remeasurement from joint ventures and associatescash_flows_Othercash_flows_Inventory movementfinancial_position_Post-employment benefitsfinancial_position_Trade payables and other liabilitiesfinancial_position_Liabilities directly associated with assets classified as held for salefinancial_position_Post-employment benefits, non-currentcomprehensive_income_Share of post-employment benefits remeasurement from joint ventures and associatescomprehensive_income_Changes in fair value of debt securities classified as fair value through other comprehensive incomecash_flows_Share of results of joint ventures and associatescash_flows_Loss on fair value measurement of assets classified as held for salecash_flows_Adjustments for decrease (increase) in due from the Governmentcash_flows_Adjustments in increase (decrease) in Trade payables and other liabilitiescash_flows_Changes in post-employment benefitscash_flows_Net maturities (purchases) of short-term investmentscash_flows_Proceeds from sale of subsidiariescomprehensive_income_Remeasurement of post-employment benefitscash_flows_Adjustments for decrease (increase) in other assets and receivablescash_flows_Proceeds from sale of equity interest in an associatecash_flows_Proceeds from borrowingscash_flows_Proceeds from sale of affiliatescash_flows_Adjustments for increase decrease in Trade payables and other laibiltiescash_flows_proceeds from sale of equity intrest in an associatecash_flows_Payments of other equity instrumentsincome_statement_Reversal of Impairment in Property,plant and Equipmentincome_statement_Miscellaneous income, netincome_statement_Reversal of impairment losscash_flows_Adjustments for impairment (reversal of impairment) of oil and gas propertiesequity_changes_Transfer to statutory reserveequity_changes_Interim dividend paidcomprehensive_income_Reclassification adjustment on available-for-sale financial assets due to salefinancial_position_Prepayments and other current assetsfinancial_position_Trade payplesfinancial_position_Accrued and other current loabilitiesfinancial_position_Lease liabilities-current portionfinancial_position_Employee benefitesfinancial_position_Lease Laibilitiescash_flows_Accrued and other current liabilitiescash_flows_Prepayments and other current assetscash_flows_Prepayments and other assetscash_flows_Short-term investments madcash_flows_Proceed from maturity of short-term investmentfinancial_position_Employees benefits currentcash_flows_Proceeds on disposal of oil and gas propertiesfinancial_position_Investmentsfinancial_position_Clearing participant financial assetsfinancial_position_Margin deposits from clearing participantsfinancial_position_Balance due to Capital Market Authority (CMA)income_statement_Impairment loss on financial assetsincome_statement_Investment incomecash_flows_Realised gain on sale of investmentscash_flows_Unrealised gain on investmentscash_flows_Dividend incomecash_flows_Special commission incomecash_flows_Commission from deposits with SAMAcash_flows_Commission from SAMA Billscash_flows_Special commission income receivedcash_flows_Commission from SAMA Bills receivedfinancial_position_Margin deposits from clearing participantfinancial_position_Members contribution to clearing house fundscash_flows_Zakatcash_flows_ZAKATcash_flows_Interest expense on lease liabilitycash_flows_Deposits with Saudi Central Bank (SAMA)cash_flows_Member contribution to clearing house fundcash_flows_Additional investment in equity-accounted investeecash_flows_Proceeds from disposal of investmentscash_flows_Proceeds from maturity of sukukcash_flows_Purchase of intangible assets and property and equipmentfinancial_position_Equity-accounted investeefinancial_position_Balances due to Capital Market Authorityincome_statement_Investments incomecash_flows_Charge for credit losses on accounts receivablecash_flows_Provision for employees end-of-service benefitscash_flows_Share of loss in equity-accounted investeecash_flows_Balance due to the Capital Market Authoritycash_flows_Margin deposit from clearing participantcash_flows_Members contribution to clearing house fundcash_flows_Employees end-of-service benefits paidcash_flows_Dividend income receivedfinancial_position_Clearing participant financial liabilitiescash_flows_Commission income on SUKUKcash_flows_Commission from SAMA Bills and deposits receivedfinancial_position_Clearing participant financial liabilitiecash_flows_Commission incomecash_flows_Commission income received on investment at amortised costcash_flows_Commission received on time depositscash_flows_Finance cost paid of lease liabilitiesincome_statement_Reversal of impairment in investment in associatescash_flows_Reversal of impairment in associatesfinancial_position_Deposits with Saudi Central Bankfinancial_position_Balance due to Capital Market Authoritycash_flows_Realized gain on sale of investmentscash_flows_Unrealized gain on investmentscash_flows_Dividends incomecash_flows_Purchase of investmentsfinancial_position_Deposits with SAMAfinancial_position_Lease liabilitycash_flows_Charge for impairment on investments held at amortized costfinancial_position_Non-controlling interest put optioncash_flows_Balance due to Capital Market Authoritycash_flows_Clearing participant financial assetfinancial_position_Groups share in revaluation reserve for change in fair value of cash flow hedgefinancial_position_Groups share in investment at fair value through other comprehensive income in associate companycomprehensive_income_Net losses gain from equity instruments at fair value through other comprehensive incomecash_flows_Amortization of right of use assetscash_flows_Financing cost right of use assetscash_flows_Proceeds from sale of Investment at fair value through profit or losscash_flows_Dividends received from investments in associate companiesfinancial_position_Revaluation reserve of investments in equity instruments at fair value through other comprehensive income in associatefinancial_position_Fair value change reserve of associate companys cash flow risks hedgingincome_statement_Gain from the sales of property and equipmentcomprehensive_income_The Groups share of the profit on remeasurement of employee defined benefit obligations of the associatecomprehensive_income_The Group share of profits from investments in equity instruments at fair value through other comprehensive income of the associatecomprehensive_income_The Group share of change in fair value of the cash flow risks hedging of the associatecash_flows_Finance charge of right of use assetscash_flows_Dividends from equity instruments at fair valuecash_flows_Gain from investment valuation at fair value through profit and losscash_flows_Dividends received from investments at fair valuecash_flows_Dividends received from investment in associatefinancial_position_Company s share in investment at fair value through other comprehensive income in associate companyfinancial_position_Revaluation reserve for change in fair value of cash flow hedgecomprehensive_income_Company s share in change for fair value of cash flow hedge in associate companycomprehensive_income_Company share in investment at fair value through other comprehensive income in associate companycash_flows_share of results of associate companies Accounted by equity methodcash_flows_Dividends from investments at fair valueincome_statement_Revaluation gains from investment at fair value through profit or losscomprehensive_income_Groups share of Re measuring profits of defined benefit plan of the associate companycomprehensive_income_Change in value of investment in equity instruments at fair valuecash_flows_Proceeds from dividends from investments at fair valuecash_flows_Gain from investment valuation at fair value through profit or losscomprehensive_income_Change in fair value of derivative financial instruments in associate companycash_flows_Gain from sale of shares of an associate cocash_flows_Purchase of Investment at Fair value through profit or losscash_flows_fair value through other comprehensive incomefinancial_position_Investments at fair value through profit or lossincome_statement_Gain from investment valuation at faircash_flows_Dividends received from investment in subsidiarycash_flows_unreceived portion of associate companies cash dividendscash_flows_Proceeds from sale of investment at fair value through profit or lossincome_statement_Gain from sale of shares of an associate companycash_flows_Written off from provision Impairment in inventory valuecash_flows_Impairment in inventory valuecash_flows_Written off from provision Impairment of trade receivablescash_flows_Proceeds from sale of Investments at fair value through profit or losscash_flows_Proceeds from sale of investment shares in associate companyincome_statement_Gain from sold of shares of an associate companyincome_statement_Gain from investment valuation at fair valuecash_flows_Proceeds from sale of investments in equity instruments at fair value through other comprehensive incomecash_flows_Proceeds from disposal of subsidiariescash_flows_Addition in cash and cash equivalents due to acquisition and establishment of subsidiariescash_flows_Gain on modification and termination of lease liability, netcash_flows_Additions to right-of-use assetsequity_changes_Changes in non-controlling interestfinancial_position_Other assets and receivablesfinancial_position_Current portion of employees benefitsfinancial_position_debtcash_flows_Adjustment for depreciation of property, plant and equipmentcash_flows_Adjustment for amortization of intangible assetscash_flows_Employees benefitscash_flows_Adjustment for loss on disposal of property, plant and equipmentcash_flows_Adjustment for write-off of property, plant and equipmentcash_flows_Changes in Inventoriescash_flows_Employees benefits paidcash_flows_Repayment of debtfinancial_position_current portion of employees benefitsfinancial_position_Debtcash_flows_Adjustment for Write-off of property plant and equipmentcash_flows_Adjustment for Impairment of property, plant and equipmentcash_flows_Debt proceedsfinancial_position_cash and cash equivalentsfinancial_position_trade receivablefinancial_position_prepaymentsfinancial_position_inventoriesfinancial_position_other current assetsfinancial_position_Right-o f-use assetsfinancial_position_Employees benefitscash_flows_Adjustments written-off of intangible assetscash_flows_COST PAIDfinancial_position_Cash and cash equivalentfinancial_position_other assets and receivablesfinancial_position_Current portion of debtfinancial_position_Current portion of employee benefitsfinancial_position_Trade payablesfinancial_position_Accruals and other current liabilitiesfinancial_position_Zakat provisioncash_flows_Adjustments for depreciation of property , plant and equipmentcash_flows_Adjustments for depreciation of right of use assetscash_flows_Adjustment for write off property , plant and equipmentcash_flows_Adjustment for provision for write off property , plant and equipmentcash_flows_Adjustment for employees benefitscash_flows_Adjustment for accruals and other auurent liabililtiescash_flows_Finanace cost paidcash_flows_Insurance proceeds received for business interruption lossescash_flows_Insurance proceeds received for damaged assetscash_flows_Payment of lease liabilltiesfinancial_position_other current assets and receivablescash_flows_FINANCE COST PAIDfinancial_position_Other assrts and receivablescash_flows_Adjustment for drpreciation of property , plant and equipmentcash_flows_Adjustment for loss on disposal of property , plant and equipmentcash_flows_Change in inventoriescash_flows_Other current and non current assetscash_flows_Accruals and other current liabilitiescash_flows_Insurance proceeds received for businesscash_flows_Net debt proceedsfinancial_position_Right -of- ues assetsfinancial_position_Cureent portion of lease liabilitiescash_flows_Adjustments for depreciation of property,plant and equipmentcash_flows_Adjustment for depreciation of right-of-use assetscash_flows_Adjustment for amortisation of intangible assetscash_flows_Adjustment for write -off property, plant and equipmentcash_flows_Adjustment for provision for write -off property, plant and equipmentcash_flows_Adjustment for gain on derecognition of right of use assets and lease liabilitiescash_flows_Adjustment for other non- current assetscash_flows_Adjustment for accruals and other current liabilitiescash_flows_Addition to intangible assetscash_flows_proceeds of debtcash_flows_Payment of lease liabilitiesfinancial_position_Current portion of employess benefitsfinancial_position_right of use assetsfinancial_position_current portion of empolyees benfitscash_flows_Gain from derecognition of lease liabilitiescash_flows_employees benefits paidcash_flows_Insurance Proceeds for business interruption lossescash_flows_Insurarnce proceeds against damaged assetscash_flows_adjustments for depreciation of property palnt and equipmentscash_flows_Adjustments for amortization of intangible assetscash_flows_Write off property, plant and equipmentscash_flows_Adjustments for decrease (increase) in inventorycash_flows_Receipt of government grantcash_flows_Adjustments for movement in tenant depositsequity_changes_Share issue costfinancial_position_Financial assets held at fair value through other comprehensive income (FVTOCI)financial_position_Financial assets held at amortised costfinancial_position_Prepayments and other assets - Nnon current portionfinancial_position_Lease liabilities.financial_position_Lease liabilities1comprehensive_income_Change in fair value of financial assets held at fair value through other comprehensive income (FVTOCI)comprehensive_income_Share of other comprehensive loss from associates0cash_flows_Finance costs of lease liabilitiescash_flows_Amortization of prepaid upfront fees on term loancash_flows_Follow up fees on term loancash_flows_Provision for replacing cylinders and otherscash_flows_Reversal of provision for other receivablescash_flows_Accrued expenses and other current liabilitiescash_flows_Financial assets held at fair value through profit or loss (FVTPL)cash_flows_Employees defined benefits liabilities paidcash_flows_Purchase of financial assets held at amortized costcash_flows_Proceeds from disposal of financial assets held at amortized costcash_flows_Proceeds from disposal of financial assets held at fair value through other comprehensive income (FVTOCI)cash_flows_Dividends income received from associatescash_flows_Dividends income received from financial assets at fair value through other comprehensive income (FVTOCI)financial_position_Investments available for salefinancial_position_Lease liabilities - current portionfinancial_position_Lease liabilities -non-current portioncomprehensive_income_Actuarial gain (losses) on employees defined benefits liabilitiescash_flows_Interest of lease liabilitiescash_flows_Reversal of provision for expected credit lossescash_flows_Dividends received from investments at FVTOCIcash_flows_Impairment on investment at amortized costcash_flows_Income from investment at amortized costcash_flows_Rent Income from investment propertiescash_flows_Income from short - term Murabaha time depositscash_flows_Provision for gas cylinder inventorycash_flows_Dividends received from associatescash_flows_Dividends received from investments FVTOCIfinancial_position_Capital Work in progresscomprehensive_income_Change in fair value of investments in financial assets through other comprehensive incomefinancial_position_Asset Under Constructionfinancial_position_Investment in equity instrument at fair value through other comprehensive incomefinancial_position_Current Lease Liabilitiesfinancial_position_Non Current Lease Liabilitiescomprehensive_income_Premeasurement of employee defined benefit obligationcash_flows_Depreciation of right to use assetscash_flows_finance chargescash_flows_Amortization of financing costs for a long-term loancash_flows_Employee's defined benefit obligations paidcash_flows_Purchase of investment in equity instrumentscash_flows_Proceed from sale of investments in equity instrumentscash_flows_Dividends received from investments in associatescash_flows_Dividends received from investments in equity instrumentscash_flows_provision for replacing cylinders and othersfinancial_position_Financial assets held at fair value through otherfinancial_position_Lease liabilitiesscomprehensive_income_Re measurement loss gain on employees defined benefits liabilitiescash_flows_Provision for(reversal of) expected credit lossescash_flows_Amortisation of prepaid upfront fees on term loancash_flows_Loss on disposal of investment held at FVOCIcash_flows_Financial assets at FVTPLcash_flows_Dividends income received from investments at FVTOCIcash_flows_Disposal of(additions to) investments at FVTOCIcash_flows_Proceeds from disposal of property, plant, and equipmentcash_flows_intangible assets transferred to expensescash_flows_Other provisionscash_flows_Purchase of investments held at amortized costcash_flows_Financial assets at FVPLcash_flows_Finance income received from investment at amortized costcash_flows_Dividends income from investments at FVTOCIcash_flows_Addition of investments at FVTOCIcash_flows_Follow up fees of term loancash_flows_Purchase of financial assets held at amortised costcash_flows_Disposal of investments at FVTOCIcash_flows_Impairment of gas cylinder to net realizable valuecash_flows_Reversal of other provisioncash_flows_Unrealized gain losses from investments in equity instrumentscash_flows_Actuarial losses on re-measurement of employee's defined benefit obligationscash_flows_Proceed from selling investments held at amortized costcomprehensive_income_Change in fair value of investment in equity instruments through other comprehensive incomefinancial_position_Investments in equity instruments designated at FVOCIfinancial_position_Investments designated at FVPLfinancial_position_Trade receivables - non-currentfinancial_position_Loan from a related party - current portionfinancial_position_Loan from a related partyfinancial_position_Loan from Ministry of Financeincome_statement_Declined in value of investment propertiesincome_statement_Impairment of property and equipmentincome_statement_Write-off of capital work-in-progressincome_statement_Impairment for prepaymentsincome_statement_Gain on revaluation of investments designated at FVPLincome_statement_Dividends incomeincome_statement_Gain on disposal of investments designated at FVPLincome_statement_Reversal provision of expected credit losses related to prepayments and other receivables due to collections of legal casescash_flows_Deprecation of right-of-use assetscash_flows_Expected credit losses provisioncash_flows_Gain on disposal of investments designated as at FYPLcash_flows_Write-off of PROJECT UNDER CONSTRCTIONcash_flows_Decline in value of investment propertiescash_flows_Impairment provision for prepaymentscash_flows_Reversal provision of expected credit losses related to prepayments and other receivables due to collections of legal casescash_flows_Derivative financial instrumentscash_flows_Employees' defined benefit obligations paidcash_flows_Financial charges paidcash_flows_Term Loan related partyfinancial_position_Contracts assetsfinancial_position_Trade receivables non-current portionfinancial_position_Developed properties non-current portionfinancial_position_Loan from Ministry of Finance current portionfinancial_position_Lease liabilities current portioncash_flows_Net proceeds from disposal of a subsidiary, net of cash disposedcash_flows_Acquisition of non-controlling interestscash_flows_Long-term and short-term loans, netcash_flows_Dividends issues by a subsidiary to non-controlling interestscash_flows_Cash and cash equivalents at the beginning of the period attributable to discounted operationsfinancial_position_Short term sukukfinancial_position_Advances from subscribersfinancial_position_Contract liabilitiesfinancial_position_Contract Liabilitiesfinancial_position_Investments in debt instrumentsfinancial_position_Current portion of long-term debtfinancial_position_Long-term debtcomprehensive_income_Net change on revaluation of investments in equity instruments classified as fair value through other comprehensive incomecomprehensive_income_Tax benefitcash_flows_Depreciation of plant and equipmentcash_flows_Amortisation of intangible assets and other assetscash_flows_Impairments and write-offs of plant and equipment, right-of-use assets and intangible assetscash_flows_Impairment (net of reversals) of non-integral joint ventures and associatescash_flows_Loss on disposals of property, plant and equipmentcash_flows_(Increase) decrease in other non-current assetscash_flows_Increase in net employee benefits obligationscash_flows_Increase in provisions and other non-current liabilitiescash_flows_Increase in trade payablescash_flows_Increase (decrease) in accruals and other current liabilitiescash_flows_Dividend received from integral joint venturescash_flows_Short-term investments, netcash_flows_Proceeds on the maturity of investments in debt and disposals of equity instrumentscash_flows_Proceeds from sale of property, plant and equipmentcash_flows_Dividend received from non-integral joint ventures and associatescash_flows_Depreciation, amortisation and impairmentcash_flows_Finance costscash_flows_Provisions and other movements, netcash_flows_Other assets and liabilities changescash_flows_Investments in associates and joint ventures, netcash_flows_Other assets movementscash_flows_Proceeds from debtcash_flows_Proceeds against acquisition of non-controlling interestsfinancial_position_Investments in debt and equity instrumentsfinancial_position_Assets held for salefinancial_position_Liabilities directly associated with assets held for salecomprehensive_income_Share of other comprehensive loss of associates and joint venturescash_flows_Changes in inventories, trade recievable and payablescash_flows_Depreciation,amortisation and impairmentcash_flows_Fair value re-measurement on assets helf for salecash_flows_Other movements, netcash_flows_Interest receivedfinancial_position_Property, plant and equipment and right-of-use assetsfinancial_position_Short-term borrowings, current portion of long-term debt and lease liabilitiesfinancial_position_Trade payables and other current liabilitiesfinancial_position_Long-term debt and lease liabilitiesfinancial_position_Employee benefitscash_flows_Income before zakat and income taxcash_flows_Share of results of associates and joint venturescash_flows_Decrease in other non-current assetscash_flows_Increase (decrease) in employee benefitscash_flows_Increase in other non-current liabilitiescash_flows_The acquisitions of non controlling interestscash_flows_Adjustments for gain on sale of oil and gas propertiescash_flows_Adjustments for gain on sale of mine propertiesfinancial_position_Current portion of Lease liabilitiescomprehensive_income_Investments at fair value through other comprehensive income - net change in fair valueincome_statement_Gain on disposal of investmentcash_flows_Gain on disposal of investmentfinancial_position_Loans and borrowingsincome_statement_Reversal of provision no longer requiredincome_statement_Impairment lossequity_changes_Transfer to capitalfinancial_position_VAT payableincome_statement_Depreciation of right-of-uscash_flows_Adjustments for depreciation of right-of-use assetsfinancial_position_Right of return assetsfinancial_position_Refund liabilitiescash_flows_Depreaction of right-of-use-assetscomprehensive_income_Income tax (charge) credit relating to hedges of net investment in foreign operationscomprehensive_income_Reclassification adjustment on hedges of net investment in foreign operationscomprehensive_income_Other comprehensive income, hedges of net investment in foreign operationsequity_changes_Transfer to general reserveequity_changes_Discontinued operationsequity_changes_Reclassification of depreciation transferredequity_changes_Other contributions by equity holdersequity_changes_Treasury share transactionsequity_changes_Share-based payment transactionsfinancial_position_Right to use Assetsfinancial_position_Current Lease Liabilityincome_statement_Share from operations results of Joint venturescash_flows_Depreciation of Right to use Assetsfinancial_position_Long Term Lease Liabilityfinancial_position_Right to use assetsfinancial_position_Current lease liabilityfinancial_position_Long Term lease liabilityfinancial_position_Current portion of Islamic Murabaha Contracts long-termcash_flows_Payments of financing costscash_flows_Net Finance Costfinancial_position_Capital works in progressfinancial_position_Right to use assets, Netfinancial_position_Provision for Zakatfinancial_position_Provision for land restoration subject to the franchise licensecomprehensive_income_Gains or losses on financial assets at fair value throughcomprehensive_income_Difference remeasurement provision for end of servicecash_flows_Provision for obsolescence of spare partscash_flows_The change in leasing obligationscash_flows_Change in provision of land restorationcash_flows_Change in financial investments at fair value through profit or losscash_flows_Proceeds from investment incomecash_flows_Previous years adjustmentsfinancial_position_Capital works in progresfinancial_position_Right of use assets, Netfinancial_position_Provision for land restoration costincome_statement_Gain from sale of property, plant and equipmentcash_flows_Provision for obsolescence of main spare parts (machinery and ovens)cash_flows_Change in provision of land restoration costcash_flows_Realized gain from financial assets at fair value through profit or losscash_flows_Disposal or purchase of financial assets at fair value through profit or losscash_flows_Change in the main spare parts (machinery and ovens)cash_flows_Change in the right of use assetscash_flows_Realized gain from financial assets at fair value through other comprehensive incomeincome_statement_Allowance expense for doubtful debtscomprehensive_income_Re-measurement for employees defined benefitscomprehensive_income_Gain of change in fair value of financial assets designated at fair value through other comprehensive incomecash_flows_Realized and unrealized gain from financial assets at fair value through profit or loss -tradingcash_flows_Share of results from associate companies using equity methodcash_flows_Zakat Paidcash_flows_Employees' defined benefits liabilities paidcash_flows_Change in financial assets at fair value through profit or losscash_flows_Prior years adjustmentsfinancial_position_Projects under constructioncomprehensive_income_Losses,gains on financial assets at fair value through other comprehensive incomecash_flows_Provision for obsolescence of machineries and furnaces spare partscash_flows_Income from financial assets at fair value through other comprehensive incomecash_flows_Income from financial investment at fair value through profit or losscash_flows_Gain, loss from associate companiescash_flows_Change in lease liabilitiescash_flows_Dividends payablecash_flows_Reversed zakat provision for prior yearscash_flows_Change in lease obligationsfinancial_position_Right to use assets Netfinancial_position_Lease liabilities currentfinancial_position_Lease liabilities Noncurrentfinancial_position_Provision for End of Service Indemnityincome_statement_Gain on sale of property, plant and equipmenttcomprehensive_income_(losses) Gains on financial assets at fair value through other comprehensive incomecash_flows_Change in the right to use the assetcomprehensive_income_Gain or loss of change in fair value of financial assets at fair value through other comprehensive incomecash_flows_Provision for obsolescence of main spare partscash_flows_Change in provision of land restorations costcash_flows_Change in leasing obligationscash_flows_Change in the right of use the assetfinancial_position_Provision for land restoration subject to the franchiseincome_statement_Gain on sale of property, plant, and equipmentcomprehensive_income_loss or gain of change in fair value of financial assets at fair value through other comprehensive incomecash_flows_Realized gain from disposal of financial assets at fair value through profit or losscash_flows_Reversed zakat provisioncash_flows_Purchase of main spare partsfinancial_position_projects under costructionfinancial_position_right to use assets Netfinancial_position_zakat provsionfinancial_position_lease libailities current portionfinancial_position_lease liabilities noncurrent portionincome_statement_investment incomecash_flows_Adjustment for previous yearscash_flows_Change in financial assets at fair value through OCIcash_flows_Investment in isalimc Murabahacash_flows_Financial assets at fair value through profit or lossescash_flows_Short-term deposits with original maturities of more than three monthsfinancial_position_Obligation for equity accounted investeesincome_statement_Gain on sale of investment property, netincome_statement_Reversal of impairment loss on property, plant and equipmentincome_statement_Zakat reversal for prior yearsfinancial_position_Financial assets and Short-term Murabaha depositsincome_statement_Reversal of impairment loss on property, plant, and equipmentcash_flows_Reversal of impairment loss on property, plant, and equipmentfinancial_position_Zakat and foreign tax provisionfinancial_position_Bank Borrowingscash_flows_Gain on derecognition of right-of-use assetscash_flows_Impairment loss on the trade receivablesfinancial_position_Right-of-use Assetscash_flows_Depereciation Right-of-use Assetscash_flows_Finance costs-netcash_flows_Provision for employees' benefitscash_flows_Depreciation of property and equipmentcash_flows_Amortisation of intangible assetsfinancial_position_Financial assets at fair value through othercash_flows_Impairment loss on intangible assetscash_flows_Loss on disposals during the yearcash_flows_The impairment loss on trade receivablescash_flows_Purchase of vehiclescash_flows_Investment made during the yearincome_statement_Zakat and taxcash_flows_Investmentsfinancial_position_Deferred tax assetfinancial_position_Bank borrowings- non-current portionincome_statement_Net fair value loss on derivative financial instrumentsincome_statement_Expected credit loss on trade receivablescomprehensive_income_Remeasurement on employees defined benefits obligationscash_flows_Loss on financial derivativecash_flows_Allowance for spare partscash_flows_Acquisition of a subsidiary, net of cash acquiredfinancial_position_Current portion of bank borrowingscash_flows_mortisation of intangible assetsfinancial_position_Investment at fair value through other comprehensive incomecash_flows_Acquisition of a subsidiary, net cash acquiredfinancial_position_Advance against investmentcash_flows_Amortisation of the intangible assetscash_flows_Cash and cash equivalents at the beginning of the periodincome_statement_The Selling and marketing expensesincome_statement_The General and administrative expensesincome_statement_The allowance for impairment losses on trade receivablescash_flows_The Gain on derecognition of right-of-use assetscash_flows_The Purchase of vehiclescash_flows_The Finance costs paidcash_flows_The Employee benefits paidcash_flows_Investment in subsidiary, net of cash acquiredcash_flows_gain on derecognition of right-of-use assetsfinancial_position_Capital advancescash_flows_Settlement of finance lease contractcash_flows_Gain on disposal of right of use assetscash_flows_Share of loss from associatecash_flows_Change in capital advancecash_flows_Investment in an associatefinancial_position_Amount due from an associatefinancial_position_Lease liabilities, Currentfinancial_position_Lease liabilities-non currnetcash_flows_Change in related parties balancesfinancial_position_Investment in an associatecash_flows_Amount due to related partiesfinancial_position_Concession contract receivablesfinancial_position_Other reserves of equity-accounted investeesfinancial_position_Actuarial valuation reservecash_flows_Allowance for expected credit losses on contract assetscash_flows_Loss on termination of lease contractscash_flows_Allowance for expected credit losses on trade receivablescash_flows_Write-off of property and equipmentcash_flows_Repayment of loan from equity accounted investeefinancial_position_Financial asset from service concession arrangementequity_changes_Increase in share capitalcash_flows_Settlement of finance lease liabilitycash_flows_Gain on termination of leasecash_flows_Payment received on loan to equity accounted investeefinancial_position_Concession contract receivables - Currentfinancial_position_Advance from customercash_flows_الحصة في الخسارة من شركات مستثمر فيها بطريقة حقوق الملكيةcash_flows_Investment in equity accounted investeecash_flows_Purchase of right-of-use assetsfinancial_position_Current portion lease liabilitiescash_flows_Provision (reversal) for expected credit lossescash_flows_Amortisation on right-of-use assetscash_flows_Amounts due from to related partiescash_flows_Payment of lease liabilitycash_flows_Share of loss from equity accounted investeescash_flows_Provision for onerous contractscash_flows_Finance costs lease liabilitiescash_flows_Investment in an equity accounted investeecash_flows_Movement of capital advancescash_flows_Share of loss from equity accounted investeecash_flows_Movement in capital advancescash_flows_Reversal for provision for onerous contractscash_flows_Disposal of right of use assetsfinancial_position_Non-current accounts receivablecash_flows_Allowance against amounts due from subsidiaryfinancial_position_Available for sale investmentsfinancial_position_Accounts payableincome_statement_Cost of unutilized production capacitycash_flows_Adjustment for decrease (increase) in Accounts receivablefinancial_position_Lease liability - currentfinancial_position_Lease liability - non currentcash_flows_Impairment of accounts receivablecash_flows_Amortization for arrangement feescash_flows_Lease Paymentcash_flows_Purchase of time depositfinancial_position_Financial assets at fair value through profit or lossfinancial_position_Financial Assets at fair value through profit or lossfinancial_position_Assets held for sale - netfinancial_position_Investment at fair value through proft and lossfinancial_position_investments at fair value through profit or lossfinancial_position_Financial Assets at fair value through profits and lossesfinancial_position_Spare Partsincome_statement_Gain on disposal of investment in financial assets at fair value through profit or loss (FVTPL)cash_flows_Net re-measurments of loss allowancecash_flows_Decrease (Incraese) in spare partscash_flows_Increase decrease in contract assetscash_flows_Increase decrease in contract liabilitiescash_flows_Employee defined benefits liabilities paidcash_flows_Proceed on disposal of a subsidiaryfinancial_position_Investment in financial assetsincome_statement_Gain on disposal of investment in financial assets at FVTPLincome_statement_Fair value gain (loss) on investment in financial assets at FVTPLcash_flows_Loss on investment in financial assets at fair value through profit or losscash_flows_Increase in contract assetscash_flows_Decrease in contract liabilitiescomprehensive_income_Foreign currency translation reserve released on disposal of a foreign subsidiarycash_flows_Gain on disposal of investment in financial assets at FVTPLcash_flows_Fair value gain (loss) on investment in financial assets at FVTPLcash_flows_Loss on disposal of a foreign subsidiarycash_flows_Decrease in spare partscash_flows_Purchases of investment in financial assets at FVTPLcash_flows_Proceeds from sale of investment in financial assets at FVTPLcash_flows_Proceeds from disposal of a foreign subsidiaryfinancial_position_Right of use assets, netfinancial_position_Due from a related partyfinancial_position_Unbilled receivables_non-currentfinancial_position_Amounts due from a related partyfinancial_position_Unbilled receivablesfinancial_position_Deferred Tax Assetfinancial_position_Short-term Murabahafinancial_position_Contract liabilities_Currentcash_flows_Impairment of fixed assetscash_flows_Impairment of trade receivables and other current assetscash_flows_Adjustments to Inventoriescash_flows_Adjustments to contract liabilitiesfinancial_position_Right of use assets netfinancial_position_Contracts liabilitiesfinancial_position_Advance from customer noncurrent portionfinancial_position_Advance from a customerfinancial_position_Unbilled receivables currentfinancial_position_Amounts due from related partyfinancial_position_Advance from customer non current portioncash_flows_Impairment loss on trade receivables and other current assetscash_flows_Gain from sale of property plant and equipmentfinancial_position_Unbilled receivables_currentcash_flows_Impairment of trade receivables and other current debit balancescash_flows_Contract liabilitiescash_flows_Finance income collectedcash_flows_Movement in investments in equity instruments designated as at FVOCIcash_flows_Depreciation of right of used assetscash_flows_Depreciation of Investment propertiescash_flows_.Dividends incomecash_flows_Loss from disposal of right of used assetscash_flows_Discontinued operationscash_flows_Depreciation of right of use assetcash_flows_Loss on derecognition of right of use assetscash_flows_Realized gain on investments at fair value through other comprehensive incomecash_flows_Derecognition gain on disposal of subsidiariescash_flows_Depreciation on investment propertiescash_flows_Loss from disposal of property, plant and equipmentcash_flows_Provision for slow moving itemscash_flows_Impairment recognized on trade receivablescash_flows_Bargain purchase on acquisition of subsidiary (note 5)cash_flows_Gain on discontinued operationscash_flows_Proceeds of financial instruments by fair value through other comprehensive incomecash_flows_Depreciation of right of usecash_flows_Realised gain on investments at fair value through profit or losscash_flows_Unrealized gain on equity instruments at fair value through profit or losscash_flows_Write-off for receivables provisioncash_flows_Unrealized lloss gain on investments at fair value through profit or losscash_flows_Unrealized loses from investments at fair value through profit or losscash_flows_Realized gain from investments at fair value through profit or losscash_flows_Amortization of right of use assetcash_flows_Realized gain on disposal of equity instruments at fair value through profit or losscash_flows_Gain from disposal of investmentscash_flows_Proceeds of equity instruments at fair value through profit and losscash_flows_Purchase of equity instruments at fair value through profit and losscash_flows_Unrealised gain on investments at fair value through profit or losscash_flows_Provision for slow moving inventorycash_flows_Provision for Bad-Debtcash_flows_Bargain purchasecash_flows_Gain on disposal of discontinued operationscash_flows_Due to Bankcash_flows_Realized gain on investments at fair value through profit or losscash_flows_Unrealized (loss) gain on investments at fair value through profit or lossequity_changes_Increase in share capital due to right issuecash_flows_Gain from disposal of property, plant and equipmentcash_flows_share of affiliate resultcash_flows_Provision for impairment of doubtful other receivables write off reversalcash_flows_Acquisition of extra shares in a subsidiaryfinancial_position_long term receivable and perpaymentscash_flows_provision for impairment of trade receivablecash_flows_provision for slow moving and obsoletecash_flows_hntrest incom on depositsfinancial_position_other non- current libillityfinancial_position_Deferred tax libillityfinancial_position_Trade Payblescash_flows_Zakat and incom tax chargesfinancial_position_long tearm recevablecash_flows_bentenchal lossescash_flows_Employees costcash_flows_Employees cost 2cash_flows_loans costcash_flows_zakatcash_flows_revenues from received duposetcash_flows_short loans movmentscash_flows_net movment in short term depositscash_flows_Adjustment in Amortization of deferred employee benefitscash_flows_Adjustment fro Other non-current liabilitiescash_flows_Adjustment to Long term receivables and prepaymentsfinancial_position_Long-term receivables and prepaymentscash_flows_Amortization of deferred employee benefitscash_flows_Charge for impairment of trade receivablescash_flows_Adjustments for Other non-current liabilitiescash_flows_Adjustments for Long term receivables and other assetscash_flows_مطلوبات غير مداولة اخرىcash_flows_الزكاة وضريبة الدخل المحملةfinancial_position_Long term receivablecash_flows_Adjustment for amortization of deferred employee benefitsfinancial_position_Reserve of disposal group held for distribution/ salecash_flows_Adjustments for decrease (increase) in rent receivablesfinancial_position_Prepayments and Other Current Assetsfinancial_position_Investment in unconsolidated subsidiaryfinancial_position_Equity Investment at FVOCI and AFS Investmentfinancial_position_Current portion of Lease Liabilityfinancial_position_Zakat and Income Tax Payablefinancial_position_Murabaha Loanfinancial_position_Retentions Payablefinancial_position_SIDF loanfinancial_position_Long term Murabaha loansfinancial_position_Islamic loan facilitiesincome_statement_Zakat and Income Taxcash_flows_Adjustment for decrease (increase) in prepayments and other current assetscash_flows_Adjustment for increase (decrease) in accounts payable, accruals and othe current liabilitiescash_flows_Employees' defined benefits liabilties and other benefits paidcash_flows_Zakat and Income Tax Paidcash_flows_Finance income received on Murabaha depositscash_flows_Net movement in long term retentions payablecash_flows_Payment of lease liabiltiescash_flows_Net movement in Murabaha loancash_flows_Proceeds from long term Murabaha loanscash_flows_Proceeds from Islamic loan facilitiescomprehensive_income_Unrealized fair value gains on equity investment at FVOCIcash_flows_Net movement in SDIF laonfinancial_position_Long term retentionscash_flows_Net movement in investments at fair value through profit or losscash_flows_Investment in a subsidary by a non-controlling shareholdercash_flows_Movement in equity investment at FVOCIcash_flows_Proceeds from SIDF loanfinancial_position_Current portion of Islamic loan facilitiescash_flows_Payments of Long Term Murabaha loanscash_flows_Net movement in commercial loansfinancial_position_SIDF Loancash_flows_Movement in long term retention payablecash_flows_Net movement in SIDF loancash_flows_Non-controlling interst on itnitial investmentcash_flows_Net movement in investment at fair value through profit or losscash_flows_Movement in long term retentions payablecash_flows_Initial investment in a subsidiary by a non-controlling shareholdercash_flows_Proceeds from Murabaha loanscash_flows_Repayment of Murabaha loansfinancial_position_Current portion of Islamic Loan Facilitiesincome_statement_Impairment loss on investment in associatecash_flows_Impairment Loss on investment in SKAcash_flows_Repayment of short term Murabaha loansfinancial_position_Retemtions payableincome_statement_Adjustments for gains (losses) on non-trading investments, netincome_statement_Adjustments for decrease (increase) in other real estate, netincome_statement_Interest paid, classified as operating activitiesincome_statement_Other inflows (outflows) of cash, classified as financing activitiesincome_statement_Disclosure of other non-cash information [text block]income_statement_Adjustments for decrease (increase) in investments held as fair value through statement of income [FVSI]income_statement_Proceeds from maturity and sale of non-trading investmentsincome_statement_Net cash flows from (used in) financing activitiesincome_statement_Adjustments for gains (losses) on disposal of property and equipment, netincome_statement_Other inflows (outflows) of cash, classified as investing activitiesincome_statement_Severance feecash_flows_Provision for severance feescash_flows_Severacne fee paidcash_flows_Employee benefit paidcash_flows_Addition in mine propertiescash_flows_Repayment of short term borrowingfinancial_position_Advances and prepayments.2financial_position_Inventories.2financial_position_Trade and other receivables.2financial_position_Time deposits.2financial_position_Cash and cash equivalents.2financial_position_Other investments2financial_position_Property, plant and equipment.1financial_position_Capital work-in-progress.1financial_position_Intangible assets.1financial_position_Investment in joint ventures.1financial_position_Deferred tax assets.1financial_position_Other investments.1financial_position_Mine properties.1financial_position_Right-of-use assets1financial_position_Projects, trade and other payables.2financial_position_Accrued expenses.2financial_position_Zakat payable.3financial_position_Severance fees payable.1financial_position_Current portion of obligation under finance lease.1financial_position_Current portion of long-term borrowings.2financial_position_Deferred tax liabilities.1financial_position_Long-term borrowings.3financial_position_Provision for decommissioning, site rehabilitation and dismantling obligationsfinancial_position_Non-current portion of obligation under finance lease.1financial_position_Projects, trade and other payables.4financial_position_Employees benefits.1financial_position_Derivative financial instruments1income_statement_Exploration and technical services expenses.9income_statement_Share in net income of joint ventures that have been equity accountedincome_statement_Income from time deposits.1comprehensive_income_Loss on exchange differences on translation2cash_flows_Finance cost.4cash_flows_Depletion and depreciation of mine propertiescash_flows_Depreciation of property, plant and equipmentcash_flows_Current service cost of employees end of service benefitscash_flows_Contribution for the employees savings plancash_flows_Provision for severance fees.5cash_flows_Obsolete and slow moving spare parts and consumable materials written-off1cash_flows_Provision for allowance for inventory obsolescence1cash_flows_Depreciation of right-of-use assets2cash_flows_Adjustment to mine closure provision2cash_flows_Loss on derecognition of property, plant and equipment1cash_flows_Impairment of plant and equipment1cash_flows_Increase in expected credit loss allowance on trade and other receivables1cash_flows_Projects and other payables . Tradecash_flows_Accrued expenses . Tradecash_flows_Severance fees paidcash_flows_Income received from time depositsfinancial_position_Investment in debt securities1cash_flows_Adjustment to mine propertiescash_flows_Write-off of plant and equipment.5cash_flows_Mine properties written-offcash_flows_Impairment of mine propertiescash_flows_Impairment of right-of-use assets4financial_position_Investment in debt securities3financial_position_Lease liabilities3financial_position_Lease liabilities2income_statement_Other operating income, net1income_statement_Severance fees7cash_flows_Loss on exchange differences2cash_flows_Charge for employees share-based payment plan which will be equity-settled3cash_flows_Payment against provision for decommissioning, site rehabilitation and dismantling obligations1cash_flows_(Increase).decrease in restricted cashcash_flows_Projects and other payables . Projects .3cash_flows_Adjustment to property, plant and equipmentcash_flows_Impairment of property, plant and equipment1cash_flows_Advances and prepayments.5cash_flows_Zakat paid.6cash_flows_Income tax paid.6income_statement_Expected credit loss allowance1cash_flows_ECL allowance on trade and other receivables1cash_flows_Adjustment to right-of-use assets and the related lease liability1cash_flows_Income earned from insurance claim1cash_flows_Gain on adjustment to provision for decommissioning, site rehabilitation and dismantling obligations1cash_flows_Adjustment to intangible assets3cash_flows_Obsolete spare parts written-off3cash_flows_Trade and other receivables.3cash_flows_Expected credit loss allowance8cash_flows_Derivative interest paid2cash_flows_Gain on derecognition of property, plant and equipment1cash_flows_Inventories.3financial_position_Investment at fair value through other comprehensive income1cash_flows_Amortisation of deferred income1equity_changes_Transactions with non-controlling interest 3cash_flows_Impairment of non-mine assets1cash_flows_Derivative interest received2cash_flows_Increase in time depositsfinancial_position_Equity investments at FVOCIincome_statement_Impairment charge on non-financial assetsincome_statement_Cost of revenuesfinancial_position_Right of use of assetscash_flows_Adjustments for Depreciation of right of use assetsfinancial_position_Long term loans to a joint venturecash_flows_Adjustments for Provision for impairment of trade receivablecash_flows_Adjustments for income from financial asset held at FVTPLcash_flows_Employees' terminal benefits paidcash_flows_Long term loan to joint venturecash_flows_Adjustments for Gain from disposal of right of use assetscash_flows_Adjustment for rent concessioncash_flows_Adjustments for Gain on lease modificationscash_flows_Adjustment for gains resulting from subsidiary acquisitionfinancial_position_Accounts receivable and prepaymentsfinancial_position_Term Depositfinancial_position_Advance to Contractorsfinancial_position_Right-of-use assetfinancial_position_Zakat Provisionfinancial_position_Accounts payable and accrualsfinancial_position_Refund Liabilitiesfinancial_position_Current maturity of lease liabilitiesfinancial_position_Term Loanscomprehensive_income_Re-measurement loss on employees retirement benefit obligations of the Associatecash_flows_Adjustments for Depreciation of right-of-use assetcash_flows_Adjustments for Provision for allowance for expected credit lossescash_flows_Adjustments for Property and equipment written offcash_flows_Adjustments for decrease (increase) in Accounts receivable and prepaymentscash_flows_Adjustment for increase (decrease) in Accounts Payable and accrualscash_flows_Movement in Refund Liabilitiescash_flows_Interest received on term depositscash_flows_Dividend received from an associatecash_flows_Proceeds from term loansfinancial_position_Investment in associate - held for salefinancial_position_Retention payablecash_flows_Refund liabilitiescash_flows_Retention payableecash_flows_Term Depositscash_flows_Adjustment for allowance for doubtful receivables, netcash_flows_Zakat expensefinancial_position_Other investmentcash_flows_Other Investementcash_flows_Gain on modification of leasescash_flows_Lease obligations paidcash_flows_Proceeds from short term loancash_flows_Repayments of short term loansincome_statement_Depreciation and amortizationincome_statement_Expected credit loss (ECL)income_statement_Gain on modification of borrowingscash_flows_Gain on modification of borrowingscash_flows_Expected credit loss (ECL)cash_flows_Movement of cash under liencash_flows_Deferred income and contract liabilitiescash_flows_Expected credit losscash_flows_Payment against amount due to related partiesfinancial_position_Contract assets - Currentfinancial_position_Contract Assets Non Currentcash_flows_Proceed from sale of subsidiaryfinancial_position_Contract assets currentfinancial_position_Contract assets non-currentcash_flows_Gain on disposal of property and equipmentcash_flows_Net other losses
00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.0
10.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.0
20.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.0
30.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.0
40.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00.0
\n", "
" ], "text/plain": [ " comprehensive_income_Income tax (charge) credit relating to cash flow hedges \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Rent receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Cash receipts from repayment of advances and loans made to other parties, classified as investing activities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for contribution of equipment by customers \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from issuing other equity instruments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Gains (losses) on hedges of net investments in foreign operations \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Total other comprehensive income (loss), hedges of net investment in foreign operations \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " equity_changes_Adjustments for restatements \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Time deposit financial_position_Deferred tax liability \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " financial_position_Loans and lease liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Loan and lease liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Provision for impairment of financial asset \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Gain on disposal group sale of Alanmaa \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Zakat and income tax paid cash_flows_Other non-current assets \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Net movement in short-term and long-term loans \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Finance costs paid cash_flows_Dividends paid \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Non-controlling interest, net \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Research expenses \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Provision for impairment of financial assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Provision for impairment of financial assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Other non current assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Cash and cash equivalents of disposal group classified as held for sale \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Net foreign exchange gain \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Due to a related party - loan \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Provision for reversal of impairment of financial assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Provision for reversal of impairment of financial asset \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Net movement in short-term and long-term loan \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Time Deposit \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Assets relating to disposal group classified as held for sale \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Short term investment at amortized cost \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Investment in long-term sukuk \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Loans and lease liabites \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Zakat and income tax payable \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Liabilities relating to disposal group classified \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Provision for near expiry, obsolete and slow-moving inventories \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Employee defined benefit cost financial_position_time deposits \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " financial_position_Loans and lease liabilities - Current \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Due to related party loan \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Provision for impairment of trade receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from sale of a subsidiary \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_proceed from long term loan \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Loan and leaseliabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Gain on disposal of a subsidiary \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Impairment on non-financial assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Acquisition of a subsidiary \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Net movement in short-term loans \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from long-term loans \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Investment in long-term sukuks \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Loans and lease liabilties \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Provision for near expiry, obsolete and slow- moving inventories \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Employee defined benefit costs \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Provision for impairment of trade and other receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Net monetary loss (gain) \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Amount received from purchaser of a subsidiary \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Due to a related party loan \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Loans and lease liabilities Non Current \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Time deposits \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Loan and lease liabilties \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Inventory written-off cash_flows_Disposal of a subsidiary \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Cash received for settlement of a related party balance \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Due to a related party Loan \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Net foreign exchange gain or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Loans and lease liabiltes \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Provison for impairment of financial assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Financial assets written-off \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Loans and Lease Liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Gain on disposal group - sale of Alanmaa \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Impairment of financial assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Loss on disposal of property, plant and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Repayment of a related party loan \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Expected credit losses on trade receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Paid to purchase intangible assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Cumulative changes in the items of other comprehensive income \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Reversal of provision for impairment of other receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Impairment (Reversal of impairment) in allowance for expected credit losses for trade receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Other provisions - (Reversal of other provisions) \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Cash and cash equivalents through business combination \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Projects in progress cash_flows_Other Provisions \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_End-of-service benefits paid \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Write-off of projects in progress \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Cumulative changes in other comprehensive income \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Projects in Progress \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Creation (reversal) of provision expected credit losses on trade receivable \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_(Provision) reversal of expected credit loss (ECLs) on trade receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Cumulative changes in the items of other comprehensive \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Reversal of other provisions \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Reduction of provision for expected credit losses on trade receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Amortization of intangible assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Depreciation on right of-use of assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Disposal to non-controlling interest \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Expected Credit Losses \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Provision for Contracts Incremental Costs \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " equity_changes_Other distributions to equity holders \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_A,mourtazition of rights of use assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Reduction of share capital \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Amortization of rights of use \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_(Reversal) expected credit loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_finance costs of lease liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_interest cost of employees defined benfit plan obligation \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Impairment (reversal) of trade receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Capital reduction \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Payment for acquisition of subsidiary, net of cash acquired \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Prepayment and other assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Employees home ownership receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Loans to employees \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Accrued expenses and other liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Long term borrowings \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Lease Liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Employee benefit obligations \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Other (expenses) income-net \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Deferred tax to re-measurements loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Re-measurement(loss) gain on defined employee benefit obligation \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for Depreciation and Amortization \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for non-cash employee benefit expenses \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_adjustments for provisions for employee benefi obligations \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Finance income received \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Impairment loss on Financial insturment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from short term deposits \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Repayments of loans by employees \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Cash and cash equivalents \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Current portion of borrowings \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Borrowings \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Provision for decommissioning obligation \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Impairment loss on trade receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Zakat and income tax \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for Depreciation on right-of-use assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for Interest on lease liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for Impairment loss on trade receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for Allowance for slow moving inventories \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Employee benefit obligations paid \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Collection against employee loans cash_flows_Finance cost paid \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " financial_position_Loans to employee \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_current portion for long term borrowings \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Long Term Borrowings \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Lease Liabilites \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_provision fro decommissioing obligation \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_impairment losses on financial assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Zakat and income tax charge \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment for insurance claim compensation \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_impariment loss on financial assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_write off of trade receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Net allowance for inventory obsolesence and slow moving \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Finance Income Recevied \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Employee benefit obligation paid \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_payment for intangible assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_investment in short term deposits \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Maturity from short term deposits \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Insurance claim compensation recevied \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_collection against employee loans \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Disburesment of employee loans \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Finance cost elements of lease payments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_finance cost paid \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Fair value gain loss on derivative financial instruments measured at fair value through profit and loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_adjustments for provisions for slow moving inventories \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Repayment of employees home ownership receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Long-term borrowings \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Impairment losses on financial assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Re-measurement loss on employee benefit obligations \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Impairment loss on financial assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Allowance for inventory obsolescence and slow moving \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Depreciation on right of use assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Interest on lease liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Withdrawals from short-term deposits \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Collection against employees loans income_statement_Sales \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Adjustments for impairment loss on trade receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for payments and other assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_adjsutmetns for Accured expenses and other liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Additions to intangible assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Current portion of long-term borrowings \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Impairment losss on financial assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Zakat and income tax credit (charge) \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Interest on lease liabilitiess \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjusments for Insurance claim compensation \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjusments for Impairment loss on financial assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment for Impairment of allowance on inventories \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Loss on sale of property, plant and equipments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Employee benefit obligations paids \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Finance income receiveds \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Provision for employee benefits obligations \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Loss on disposals of property and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Impairment (reversal) charge on inventories \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Non-cash employee expenses \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Depreciation on right-of-use assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Provision for employees benefits obligations \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Loss on sale of property, plant and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Allowance for (reversal of) slow moving inventories \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " equity_changes_Transfer of share capital \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Property, plan and equipment written off \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustmetns for loss (gain) on sale of property and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Prepayments and other assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Other income cash_flows_Employee related expenses \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Payments for intangible assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Investment in short-term deposits \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Disbursement of employee loans \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Repayments of borrowings \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Finance cost element of lease payments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Principal element of lease payments cash_flows_Dividends \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " equity_changes_Other miscellaneous changes in equity \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_PROVISION OF EXPECTED CREDIT LOSS EXPENSE \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_PROVISION OF OBSOLESCENCE INVENTORY EXPENSE \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_FINANCE COST \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_EMPLOYEES END -OF-SERVICE BENEFITS PAID cash_flows_ZAKAT PAID \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_DISPOSAL OF INVESTMENT IN EQUITY INSTRUMENTS AT FVTPL \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Gains on changes in fair value of investment equity instruments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Provision of expected credit loss expense \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Provision for obsolescence inventory cash_flows_Finance cost \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_from related party cash_flows_Zakat paid \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Employees end of service benefits paid \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Sale of investment in equity instruments at FVTPL \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Purchase of intangible assets cash_flows_Time Deposite \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Change in investments at joint ventures \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Provision for obsolescence inventory in process \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Allowance for doubtful debts \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Paid out of employees end of service benefits \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Buying intangible assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Purchase of short-term time deposit cash_flows_Financing costs \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Sale of an investment in equity instruments at fair value through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Provision for of obsolescence inventory expense \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Provision for of expected credit loss expense \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Purchase of short time deposit \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Purchase of property, plant and equipment and Capital work in progress \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Repayments of lease liability \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_provision for doubtful debts cash_flows_interest expense \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Provision for obsolescence inventory expense \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Provisions n longer required \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Gain on change in fair value of investments through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Allowance for obsolescence inventory \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Gain on sale property, plant and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_provision no ionger required \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from the Sale of investment in equity instruments at FVTPL \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Purchase of short term time deposit \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from the disposal of Property, Plant and Equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Gains on changes in fair value of investment in equity instruments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Repayments of capital reduction \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Gains on changes in fair value of investment in equity instrument \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_CHANGES IN INVENTORY \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Investment in Islamic financing contracts \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Trade and other receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Investment in Islamic financing contracts - non curent \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Increase in deferred revenue from extended warranty Program \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Payments for purchases of intangible assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Dividends paid to the Company shareholders \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Current portion of investment in Islamic financing contracts \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Non Current portion of investment in Islamic financing contracts \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Lease liabilities Non Current Portion \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Gain on termination of a lease \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Current portion of investment in Islamic financing contracts \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Increase in deferred revenue from extended warranty program \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Sales Instalment Receivable \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Loss on disposal of property and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Intangible assets written-off \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Finance income from net investment in finance lease \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Trade and other receivables - current portion \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Installment sales receivables - current portion \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Right Of Use \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Trade and other receivables - noncurrent portion \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Installment sales receivables - noncurrent portion \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Deferred revenue from additional service program - current portion \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Lease Liability- current part \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Deferred revenue from additional service program - noncurrent portion \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Lease Liability- Non current part \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Zakat income_statement_Deferred tax income (expense) \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Depreciation of assets of right of use \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_The write-off of property and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Intangible assets written off cash_flows_Zakat Expense \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Deferred Tax cash_flows_End of service benefits \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Loss - Income on termination of a lease \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Deferred Revenue from additional sales program \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Dividend payment cash_flows_Gain on sub-lease \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " financial_position_Investment in Islamic financing contracts - non current \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Property and equipment written off \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Increase in extended warranty program \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Lease liabilities - Non Current \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Re-measurement of end of service benefit obligation \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_impairment loss recognized on installment sales receivable, net \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Impairment recognized against inventories \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Purchase of treasury shares \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Movement in foreign exchange translation \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Income tax on discontinued operations for period \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " equity_changes_Transfer from retained earnings \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for impairment (reversal of impairment) of mine properties \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Expenditure on exploration and evaluation assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Adjustment for provision for slow moving items and inventory shortage \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Provisions \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_provision for expected credit losses \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for increase (decrease) in royalty payable \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Oil and gas properties \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Mine properties \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from exercise of share options \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for gain on sale of exploration and evaluation assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Investment at fair value through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Deferred costs net \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Loss from investment at fair value through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for Provision for expected credit loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for Selling investments at fair value through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Cash in Portfolio - investments at fair value through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for decrease (increase) in Loss from investment at fair value through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Investment at amortised cost \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Interest income from investment at amortised cost \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for Amortization of deferred costs \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for Amortisation of right of use asset \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for Financial charges on lease liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for Financial charges on term facilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Interest income received from investment at amortised cost \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Other income, net \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for decrease (increase) in Depreciation of right of use asset \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Expected credit losses financial_position_Contract assets \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " financial_position_Deferred costs, net \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for decrease (increase) in Allowance for doubtful trade accounts receivable \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for Dividends from investments at fair value through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for Realized and unrealized profit from investment at fair value through profit and loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from investments at fair value through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Short-term investment at amortised cost \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Long term facilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for decrease (increase) in Amortization of deferred costs \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for Interest income from investment at amortised cost \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for Contract assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Purchase investments at fair value through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for Allowance for expected credit losses \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment to Interest income from investments at amortised cost \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for Employees' defined benefits paid \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Purchase of investment at amortized costs \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Interest income from investments at amortised cost \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for Interest income from investments at amortised cost \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Interest income received from investments at amortised cost \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Selling investments at fair value through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Investment at fair value through profit and loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Profit from investment at fair value through profit and loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from disposal of subsidiary \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Expenditure on oil and gas assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Expenditure on mine development \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds on disposal of mine properties \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " equity_changes_Final dividend paid \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Other comprehensive income, available-for-sale financial assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Trade Account Receivable \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Advances to Suppliers \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Trade receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Provision for Zakat and Income Tax \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment for depreciation of investment properties \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for other non-current liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Purchase of property, plant and equipment and investment properties \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Long term prepayments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for increase (decrease) in contract assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for increase (decrease) in advances to suppliers \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Cash or loan received from shareholders \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Impairment of intangible assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments to Intangible assets written off \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Employees defined benefits paid \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Loss on disposal of subsidiary \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Contract Assets financial_position_Accounts Receivable \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " income_statement_Impairment of investment in an associate \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Allowance for expected credit losses \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Advance to Suppliers \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Other non-current assetsOther Non- Current Assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Loss on disposal of a subsidiary \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment for other non current liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Remeasurement gain on right of use assets and lease liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Vehicles \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Other Property and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Right of use asset financial_position_Advances \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " financial_position_Retention receivable \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Loans and borrowings, current \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Accrual and other liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Loans and borrowings, non-current \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Impairment loss on trade and other receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Net book value of vehicles disposed \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for impairment loss (reversal of impairment loss) on Trade and other receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for depreciation and impairment (reversal of impairment) of Vehicles \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for depreciation and impairment (reversal of impairment) of Right of use Asset \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for depreciation and impairment (reversal of impairment) of other property, plant and equipments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for Financial charges \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for Finance charge on lease liability \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Additions to Vehicles cash_flows_Employee benefits paid \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Acquisition of capital work in progress \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Prepayments and Other Receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Other property and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Capital work in progress \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Employee incentive cash_flows_Employee incentive \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Additions to Vehicles, net of CWIP \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Retention Receivable \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Acquisition of other property and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Prepayments and other receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Impairment loss on other receivable \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Impairment loss on trade receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Impairment loss on other receivable \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for depreciation and impairment (reversal of impairment) of Other property plant and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Acquisition of other property plant and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Acquisition of intangible asset \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Retentions receivable \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for Other finance charges \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Other Interest paid, classified as operating activities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Lease Interest paid, classified as operating activities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Interest paid on loans and borrowings, classified as operating activities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Additions to Vehicles, net of advances \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Advances on acquisitions income_statement_Employee Incentive \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Impairment loss on Trade and Other receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Employee Incentive \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for decrease (increase) in Prepayment and Other receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Purchase of Capital work in progress \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Related parties, net cash_flows_Lease interest paid \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " financial_position_Special commission income/ gross financing and investment income \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Special commission expenses / return on deposits \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Special commission income (expense)/ financing and investment income (expense), net \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Fee and commission income (expense) \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Other operating income \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Total operating income \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Salaries and employee related expenses \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Rent and premises related expenses \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Depreciation and amortisation expense \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Other general and administrative expenses \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Board of directors' remunerations \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Other operating expense \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Total operating expenses \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Profit (loss) from operating activities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Profit (loss) from continuing operations before zakat and income tax \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Zakat expenses on continuing operations for period \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Profit (loss) from continuing operations \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Profit (loss) for the period \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Profit (loss), attributable to equity holders of parent company \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Basic earnings (loss) per share from continuing operations \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Total basic earnings (loss) per share \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Diluted earnings (loss) per share from continuing operations \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Total diluted earnings (loss) per share \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Weighted average number of equity shares outstanding \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Profit (loss) from continuing operations before zakat and income tax \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Profit (loss) before zakat and income tax \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Adjustments for depreciation \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Adjustments for amortisation expense \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Adjustments for staff share based plan expenses \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Other adjustments for non-cash items \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Other adjustments to reconcile profit (loss) \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Total adjustments to reconcile profit (loss) \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Adjustments for decrease (increase) in financing, net \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Adjustments for decrease (increase) in loans, financing and advances \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Adjustments for decrease (increase) in other operating assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Net decrease (increase) in operating assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Net cash flows from (used in) operations \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Zakat expenses, classified as operating activities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Net cash flows from (used in) operating activities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Purchase of property and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Purchase of intangible assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Proceeds from debt securities, borrowings, term loan and sukuk \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Repayments of debt securities, borrowings, term loan and sukuk \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Payments of finance lease liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Increase (decrease) in cash and cash equivalents before effect of exchange rate changes \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Net increase (decrease) in cash and cash equivalents \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Cash and cash equivalents at beginning of period \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Cash and cash equivalents at end of period \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Equity balance at beginning of period (before adjustments) \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Equity balance at beginning of period (after adjustments) \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Equity balance at end of period \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Impairment (reversal of impairment) charge for credit losses/ loans, financing and advances \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Adjustments for impairment (reversal of impairment) for loans, financing and advances \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Adjustments for increase (decrease) in other operating liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Net increase (decrease) in operating liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Share closing price at the last trading day of financial year (in numbers) \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Adjustments for income from fair value through statement of income [FVSI] financial instruments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Proceeds from disposal of property and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Dividends paid, classified as financing activities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Income tax on continuing operations for period \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Net cash flows from (used in) investing activities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Income (loss) from fair value through statement of income [FVSI] financial instruments, net \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds on disposal of exploration and evaluation assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Right-of-use assets, net \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Accretion of interest \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Gain on derivative instrument at FVTPL \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Finance cost payment relating to term loans \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Finance cost on lease liability \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Derecognition of ROU and Lease liability \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Write off property and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Gain on derivative instrument at FVPL \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_ا Rent concession for leases \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Write off (reversal) of property and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Rent concession for leases \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Biological assets current \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Prepayments and other debit balances \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Assets classified as held for sale \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Accounts receivable \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_right-of-use assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Biological assets financial_position_Work in progress \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " financial_position_Investment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Provision for guarantee loan related to associate \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Dismantling provision LIB \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Biological assets current cash_flows_right-of-use assets \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Intangible assets cash_flows_Work in progress \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Assets classified as held for sale \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Vital assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Non - current biological assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Investments in equity instruments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Impairment losses on other receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_impairment losses in inventory \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Losses of capital projects \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Share of profit or loss of an associate \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Income tax (charge) credit relating to translation of foreign operations \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Depreciation of biologicalassets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Losses of capital projects \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Provision for loan guarantee in associates \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Impairment losses on vital assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Differences revaluation of crop stocks at harvest point \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Impairment losses on other receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Gain on valuation of financial investments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_impairment losses in inventory \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Differences revaluation of crop stocks at harvest point \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Loss of removal and destruction of crops \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Provision for loan guarantee in associates \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Impairment losses on vital assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Provision for expected credit losses \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Impairment on biological assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Amortization of biological assets Cash Flow \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Reversal provision Expected credit loss CF \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Biological assets CF \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Non-current assets classified as held for sale \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Income tax (charge) credit relating to unrealised losses on available-for-sale financial assets, net \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Reclassification adjustment on available-for-sale financial assets due to impairment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for depletion \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Financial assets at fair value through other comprehensive income \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Obligations under finance lease1 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Obligations under finance lease \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Unrealized gain on financial assets at fair value \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Re-measurement gain on defined benefit plans \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from disposal of property, plant and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Investment income from time deposits received \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Net movement in other non-current assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Movement in obligations under capital lease \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from short-term borrowings \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Re-measurement (loss) gain on \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Non cash post employees benefits expense \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Interest income cash_flows_Interest income received \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " financial_position_long term loans financial_position_suggested dividends \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " financial_position_accumulated changes in OCI \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_changes in ECL Provision cash_flows_Financing Expenses Paid \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_end of service paid cash_flows_zakat paid \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_dividends payable paid cash_flows_financing cost paid \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " financial_position_prepaid for fixed assets purchases \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_prepayments for PPE purchases \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_noncurrent portion for long term loan \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Changes in OCI \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Changes in expected credit losses \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Paid empolyee benefits cash_flows_paid dividends \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_paid payable dividends financial_position_Suggested Dividends \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Paid Financing cost cash_flows_ROU Amortization \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_WIP Additions income_statement_Impairment on trees \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " financial_position_Accumulated changes in other comprehensive income \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Securities auction shares under settlement \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Due to related party cash_flows_Zakat adjustments \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Chang in Securities auction shares under settlement \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Unearned revenue cash_flows_Additions of investment property \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Chang In Due to related party \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Auction shares deposits under settlement \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Chang In Provision for expected credit losses \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Change In Due to related parties \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Depreciations of right of used assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_provision of the expected credit loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Employees benefits - Paid \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Lease liability settlement against other income \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Provided reversal of expected credit loss provision \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Employees defined benefit obligation - Paid \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Due to related party cash_flows_Chang in Due to related party \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Depreciation of investment properties \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Zakat Adjustments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Cahng In Securities auction shares under settlement \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Deferred revenue \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Payment of fees from financing costs for the year \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Payment from provision for potential claims \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Payment from employees benefit during the year \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_أمانات أسهم مزاد تحت التسوية \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Provided of expected credit losses provision \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Capital expenditure on completed investment properties \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Chang In Unearned revenue \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Non-Cash items Settlement of lease liability against other income \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Provision for impairment of other debit balances \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Impairment of goodwill - losses \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Depreciations of investment property \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Gain from disposal of right of use assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Financing cost obligations during the year - Paid \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Provision for potential claims - Paid \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Due from related party \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Expected credit losses provision during the year \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Potential claims provision during the year \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Payment For Due to related party \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Change In Due to related party \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Chang in Depreciations of investment property \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Chang in Provision for expected credit losses \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Change In Provision for impairment of other debit balances \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Employees defined benefit obligation Paid \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Due to related parties \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Settlement of lease liability against other income \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Depreciations of right of use assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Expected credit loss provision - charged \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Short-term investments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Due from the Government \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Other assets and receivables - current \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Investments in securities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Other assets and receivables - non current \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Borrowings - current \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Trade and other payables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Income taxes and zakat payable \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Borrowings - non-current \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Post-employment benefit obligations \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Provisions and other liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Additional paid-in capital \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Retained earnings - Unappropriated \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Retained earnings - Appropriated \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Remeasurement of post-employment benefit obligations \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Cash flow hedges and other \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " equity_changes_Bonus shares issued \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for unsuccessful exploration and evaluation expenditures \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Change in fair value of investments through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for increase (decrease) in Trade and other payables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Other assets and receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Changes in Post-employment benefit obligations \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Distributions from joint ventures and associates \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Dividends from investments in securities - investing activities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Changes in fair value of equity investments classified as fair value through other comprehensive income \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Change in joint ventures and associates inventory profit elimination \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Changes in provisions and other liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Cash acquired on acquisition of subsidiary \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from sale of non-controlling equity interest in a subsidiary \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from issue of treasury shares \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Share of post-employment benefit obligations remeasurement from joint ventures and associates \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Other cash_flows_Inventory movement \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " financial_position_Post-employment benefits \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Trade payables and other liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Liabilities directly associated with assets classified as held for sale \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Post-employment benefits, non-current \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Share of post-employment benefits remeasurement from joint ventures and associates \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Changes in fair value of debt securities classified as fair value through other comprehensive income \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Share of results of joint ventures and associates \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Loss on fair value measurement of assets classified as held for sale \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for decrease (increase) in due from the Government \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments in increase (decrease) in Trade payables and other liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Changes in post-employment benefits \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Net maturities (purchases) of short-term investments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from sale of subsidiaries \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Remeasurement of post-employment benefits \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for decrease (increase) in other assets and receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from sale of equity interest in an associate \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from borrowings \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from sale of affiliates \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for increase decrease in Trade payables and other laibilties \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_proceeds from sale of equity intrest in an associate \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Payments of other equity instruments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Reversal of Impairment in Property,plant and Equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Miscellaneous income, net \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Reversal of impairment loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for impairment (reversal of impairment) of oil and gas properties \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " equity_changes_Transfer to statutory reserve \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " equity_changes_Interim dividend paid \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Reclassification adjustment on available-for-sale financial assets due to sale \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Prepayments and other current assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Trade payples \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Accrued and other current loabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Lease liabilities-current portion \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Employee benefites \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Lease Laibilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Accrued and other current liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Prepayments and other current assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Prepayments and other assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Short-term investments mad \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceed from maturity of short-term investment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Employees benefits current \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds on disposal of oil and gas properties \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Investments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Clearing participant financial assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Margin deposits from clearing participants \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Balance due to Capital Market Authority (CMA) \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Impairment loss on financial assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Investment income \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Realised gain on sale of investments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Unrealised gain on investments cash_flows_Dividend income \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Special commission income \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Commission from deposits with SAMA \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Commission from SAMA Bills \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Special commission income received \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Commission from SAMA Bills received \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Margin deposits from clearing participant \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Members contribution to clearing house funds \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Zakat cash_flows_ZAKAT \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Interest expense on lease liability \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Deposits with Saudi Central Bank (SAMA) \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Member contribution to clearing house fund \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Additional investment in equity-accounted investee \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from disposal of investments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from maturity of sukuk \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Purchase of intangible assets and property and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Equity-accounted investee \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Balances due to Capital Market Authority \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Investments income \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Charge for credit losses on accounts receivable \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Provision for employees end-of-service benefits \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Share of loss in equity-accounted investee \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Balance due to the Capital Market Authority \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Margin deposit from clearing participant \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Members contribution to clearing house fund \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Employees end-of-service benefits paid \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Dividend income received \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Clearing participant financial liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Commission income on SUKUK \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Commission from SAMA Bills and deposits received \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Clearing participant financial liabilitie \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Commission income \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Commission income received on investment at amortised cost \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Commission received on time deposits \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Finance cost paid of lease liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Reversal of impairment in investment in associates \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Reversal of impairment in associates \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Deposits with Saudi Central Bank \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Balance due to Capital Market Authority \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Realized gain on sale of investments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Unrealized gain on investments cash_flows_Dividends income \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Purchase of investments financial_position_Deposits with SAMA \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " financial_position_Lease liability \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Charge for impairment on investments held at amortized cost \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Non-controlling interest put option \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Balance due to Capital Market Authority \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Clearing participant financial asset \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Groups share in revaluation reserve for change in fair value of cash flow hedge \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Groups share in investment at fair value through other comprehensive income in associate company \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Net losses gain from equity instruments at fair value through other comprehensive income \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Amortization of right of use assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Financing cost right of use assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from sale of Investment at fair value through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Dividends received from investments in associate companies \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Revaluation reserve of investments in equity instruments at fair value through other comprehensive income in associate \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Fair value change reserve of associate companys cash flow risks hedging \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Gain from the sales of property and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_The Groups share of the profit on remeasurement of employee defined benefit obligations of the associate \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_The Group share of profits from investments in equity instruments at fair value through other comprehensive income of the associate \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_The Group share of change in fair value of the cash flow risks hedging of the associate \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Finance charge of right of use assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Dividends from equity instruments at fair value \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Gain from investment valuation at fair value through profit and loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Dividends received from investments at fair value \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Dividends received from investment in associate \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Company s share in investment at fair value through other comprehensive income in associate company \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Revaluation reserve for change in fair value of cash flow hedge \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Company s share in change for fair value of cash flow hedge in associate company \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Company share in investment at fair value through other comprehensive income in associate company \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_share of results of associate companies Accounted by equity method \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Dividends from investments at fair value \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Revaluation gains from investment at fair value through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Groups share of Re measuring profits of defined benefit plan of the associate company \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Change in value of investment in equity instruments at fair value \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from dividends from investments at fair value \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Gain from investment valuation at fair value through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Change in fair value of derivative financial instruments in associate company \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Gain from sale of shares of an associate co \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Purchase of Investment at Fair value through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_fair value through other comprehensive income \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Investments at fair value through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Gain from investment valuation at fair \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Dividends received from investment in subsidiary \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_unreceived portion of associate companies cash dividends \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from sale of investment at fair value through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Gain from sale of shares of an associate company \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Written off from provision Impairment in inventory value \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Impairment in inventory value \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Written off from provision Impairment of trade receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from sale of Investments at fair value through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from sale of investment shares in associate company \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Gain from sold of shares of an associate company \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Gain from investment valuation at fair value \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from sale of investments in equity instruments at fair value through other comprehensive income \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from disposal of subsidiaries \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Addition in cash and cash equivalents due to acquisition and establishment of subsidiaries \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Gain on modification and termination of lease liability, net \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Additions to right-of-use assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " equity_changes_Changes in non-controlling interest \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Other assets and receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Current portion of employees benefits \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_debt \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment for depreciation of property, plant and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment for amortization of intangible assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Employees benefits \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment for loss on disposal of property, plant and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment for write-off of property, plant and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Changes in Inventories cash_flows_Employees benefits paid \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Repayment of debt \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_current portion of employees benefits \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Debt \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment for Write-off of property plant and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment for Impairment of property, plant and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Debt proceeds financial_position_cash and cash equivalents \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " financial_position_trade receivable financial_position_prepayments \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " financial_position_inventories financial_position_other current assets \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " financial_position_Right-o f-use assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Employees benefits \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments written-off of intangible assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_COST PAID financial_position_Cash and cash equivalent \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " financial_position_other assets and receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Current portion of debt \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Current portion of employee benefits \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Trade payables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Accruals and other current liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Zakat provision \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for depreciation of property , plant and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for depreciation of right of use assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment for write off property , plant and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment for provision for write off property , plant and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment for employees benefits \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment for accruals and other auurent liabililties \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Finanace cost paid \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Insurance proceeds received for business interruption losses \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Insurance proceeds received for damaged assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Payment of lease liabillties \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_other current assets and receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_FINANCE COST PAID \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Other assrts and receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment for drpreciation of property , plant and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment for loss on disposal of property , plant and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Change in inventories \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Other current and non current assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Accruals and other current liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Insurance proceeds received for business \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Net debt proceeds financial_position_Right -of- ues assets \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " financial_position_Cureent portion of lease liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for depreciation of property,plant and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment for depreciation of right-of-use assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment for amortisation of intangible assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment for write -off property, plant and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment for provision for write -off property, plant and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment for gain on derecognition of right of use assets and lease liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment for other non- current assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment for accruals and other current liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Addition to intangible assets cash_flows_proceeds of debt \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Payment of lease liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Current portion of employess benefits \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_right of use assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_current portion of empolyees benfits \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Gain from derecognition of lease liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_employees benefits paid \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Insurance Proceeds for business interruption losses \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Insurarnce proceeds against damaged assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_adjustments for depreciation of property palnt and equipments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for amortization of intangible assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Write off property, plant and equipments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for decrease (increase) in inventory \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Receipt of government grant \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for movement in tenant deposits \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " equity_changes_Share issue cost \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Financial assets held at fair value through other comprehensive income (FVTOCI) \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Financial assets held at amortised cost \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Prepayments and other assets - Nnon current portion \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Lease liabilities. \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Lease liabilities1 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Change in fair value of financial assets held at fair value through other comprehensive income (FVTOCI) \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Share of other comprehensive loss from associates0 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Finance costs of lease liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Amortization of prepaid upfront fees on term loan \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Follow up fees on term loan \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Provision for replacing cylinders and others \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Reversal of provision for other receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Accrued expenses and other current liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Financial assets held at fair value through profit or loss (FVTPL) \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Employees defined benefits liabilities paid \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Purchase of financial assets held at amortized cost \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from disposal of financial assets held at amortized cost \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from disposal of financial assets held at fair value through other comprehensive income (FVTOCI) \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Dividends income received from associates \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Dividends income received from financial assets at fair value through other comprehensive income (FVTOCI) \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Investments available for sale \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Lease liabilities - current portion \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Lease liabilities -non-current portion \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Actuarial gain (losses) on employees defined benefits liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Interest of lease liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Reversal of provision for expected credit losses \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Dividends received from investments at FVTOCI \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Impairment on investment at amortized cost \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Income from investment at amortized cost \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Rent Income from investment properties \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Income from short - term Murabaha time deposits \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Provision for gas cylinder inventory \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Dividends received from associates \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Dividends received from investments FVTOCI \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Capital Work in progress \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Change in fair value of investments in financial assets through other comprehensive income \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Asset Under Construction \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Investment in equity instrument at fair value through other comprehensive income \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Current Lease Liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Non Current Lease Liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Premeasurement of employee defined benefit obligation \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Depreciation of right to use assets cash_flows_finance charges \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Amortization of financing costs for a long-term loan \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Employee's defined benefit obligations paid \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Purchase of investment in equity instruments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceed from sale of investments in equity instruments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Dividends received from investments in associates \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Dividends received from investments in equity instruments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_provision for replacing cylinders and others \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Financial assets held at fair value through other \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Lease liabilitiess \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Re measurement loss gain on employees defined benefits liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Provision for(reversal of) expected credit losses \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Amortisation of prepaid upfront fees on term loan \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Loss on disposal of investment held at FVOCI \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Financial assets at FVTPL \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Dividends income received from investments at FVTOCI \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Disposal of(additions to) investments at FVTOCI \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from disposal of property, plant, and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_intangible assets transferred to expenses \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Other provisions \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Purchase of investments held at amortized cost \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Financial assets at FVPL \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Finance income received from investment at amortized cost \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Dividends income from investments at FVTOCI \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Addition of investments at FVTOCI \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Follow up fees of term loan \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Purchase of financial assets held at amortised cost \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Disposal of investments at FVTOCI \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Impairment of gas cylinder to net realizable value \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Reversal of other provision \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Unrealized gain losses from investments in equity instruments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Actuarial losses on re-measurement of employee's defined benefit obligations \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceed from selling investments held at amortized cost \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Change in fair value of investment in equity instruments through other comprehensive income \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Investments in equity instruments designated at FVOCI \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Investments designated at FVPL \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Trade receivables - non-current \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Loan from a related party - current portion \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Loan from a related party \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Loan from Ministry of Finance \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Declined in value of investment properties \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Impairment of property and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Write-off of capital work-in-progress \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Impairment for prepayments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Gain on revaluation of investments designated at FVPL \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Dividends income \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Gain on disposal of investments designated at FVPL \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Reversal provision of expected credit losses related to prepayments and other receivables due to collections of legal cases \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Deprecation of right-of-use assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Expected credit losses provision \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Gain on disposal of investments designated as at FYPL \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Write-off of PROJECT UNDER CONSTRCTION \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Decline in value of investment properties \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Impairment provision for prepayments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Reversal provision of expected credit losses related to prepayments and other receivables due to collections of legal cases \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Derivative financial instruments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Employees' defined benefit obligations paid \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Financial charges paid cash_flows_Term Loan related party \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " financial_position_Contracts assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Trade receivables non-current portion \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Developed properties non-current portion \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Loan from Ministry of Finance current portion \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Lease liabilities current portion \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Net proceeds from disposal of a subsidiary, net of cash disposed \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Acquisition of non-controlling interests \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Long-term and short-term loans, net \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Dividends issues by a subsidiary to non-controlling interests \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Cash and cash equivalents at the beginning of the period attributable to discounted operations \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Short term sukuk \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Advances from subscribers \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Contract liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Contract Liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Investments in debt instruments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Current portion of long-term debt \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Long-term debt \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Net change on revaluation of investments in equity instruments classified as fair value through other comprehensive income \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Tax benefit \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Depreciation of plant and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Amortisation of intangible assets and other assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Impairments and write-offs of plant and equipment, right-of-use assets and intangible assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Impairment (net of reversals) of non-integral joint ventures and associates \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Loss on disposals of property, plant and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_(Increase) decrease in other non-current assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Increase in net employee benefits obligations \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Increase in provisions and other non-current liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Increase in trade payables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Increase (decrease) in accruals and other current liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Dividend received from integral joint ventures \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Short-term investments, net \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds on the maturity of investments in debt and disposals of equity instruments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from sale of property, plant and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Dividend received from non-integral joint ventures and associates \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Depreciation, amortisation and impairment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Finance costs cash_flows_Provisions and other movements, net \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Other assets and liabilities changes \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Investments in associates and joint ventures, net \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Other assets movements cash_flows_Proceeds from debt \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Proceeds against acquisition of non-controlling interests \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Investments in debt and equity instruments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Assets held for sale \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Liabilities directly associated with assets held for sale \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Share of other comprehensive loss of associates and joint ventures \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Changes in inventories, trade recievable and payables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Depreciation,amortisation and impairment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Fair value re-measurement on assets helf for sale \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Other movements, net cash_flows_Interest received \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " financial_position_Property, plant and equipment and right-of-use assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Short-term borrowings, current portion of long-term debt and lease liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Trade payables and other current liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Long-term debt and lease liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Employee benefits \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Income before zakat and income tax \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Share of results of associates and joint ventures \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Decrease in other non-current assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Increase (decrease) in employee benefits \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Increase in other non-current liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_The acquisitions of non controlling interests \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for gain on sale of oil and gas properties \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for gain on sale of mine properties \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Current portion of Lease liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Investments at fair value through other comprehensive income - net change in fair value \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Gain on disposal of investment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Gain on disposal of investment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Loans and borrowings \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Reversal of provision no longer required \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Impairment loss equity_changes_Transfer to capital \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " financial_position_VAT payable \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Depreciation of right-of-us \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for depreciation of right-of-use assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Right of return assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Refund liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Depreaction of right-of-use-assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Income tax (charge) credit relating to hedges of net investment in foreign operations \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Reclassification adjustment on hedges of net investment in foreign operations \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Other comprehensive income, hedges of net investment in foreign operations \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " equity_changes_Transfer to general reserve \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " equity_changes_Discontinued operations \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " equity_changes_Reclassification of depreciation transferred \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " equity_changes_Other contributions by equity holders \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " equity_changes_Treasury share transactions \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " equity_changes_Share-based payment transactions \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Right to use Assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Current Lease Liability \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Share from operations results of Joint ventures \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Depreciation of Right to use Assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Long Term Lease Liability \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Right to use assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Current lease liability \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Long Term lease liability \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Current portion of Islamic Murabaha Contracts long-term \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Payments of financing costs cash_flows_Net Finance Cost \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " financial_position_Capital works in progress \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Right to use assets, Net \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Provision for Zakat \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Provision for land restoration subject to the franchise license \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Gains or losses on financial assets at fair value through \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Difference remeasurement provision for end of service \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Provision for obsolescence of spare parts \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_The change in leasing obligations \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Change in provision of land restoration \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Change in financial investments at fair value through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from investment income \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Previous years adjustments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Capital works in progres \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Right of use assets, Net \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Provision for land restoration cost \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Gain from sale of property, plant and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Provision for obsolescence of main spare parts (machinery and ovens) \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Change in provision of land restoration cost \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Realized gain from financial assets at fair value through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Disposal or purchase of financial assets at fair value through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Change in the main spare parts (machinery and ovens) \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Change in the right of use assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Realized gain from financial assets at fair value through other comprehensive income \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Allowance expense for doubtful debts \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Re-measurement for employees defined benefits \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Gain of change in fair value of financial assets designated at fair value through other comprehensive income \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Realized and unrealized gain from financial assets at fair value through profit or loss -trading \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Share of results from associate companies using equity method \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Zakat Paid \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Employees' defined benefits liabilities paid \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Change in financial assets at fair value through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Prior years adjustments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Projects under construction \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Losses,gains on financial assets at fair value through other comprehensive income \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Provision for obsolescence of machineries and furnaces spare parts \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Income from financial assets at fair value through other comprehensive income \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Income from financial investment at fair value through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Gain, loss from associate companies \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Change in lease liabilities cash_flows_Dividends payable \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Reversed zakat provision for prior years \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Change in lease obligations \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Right to use assets Net \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Lease liabilities current \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Lease liabilities Noncurrent \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Provision for End of Service Indemnity \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Gain on sale of property, plant and equipmentt \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_(losses) Gains on financial assets at fair value through other comprehensive income \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Change in the right to use the asset \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Gain or loss of change in fair value of financial assets at fair value through other comprehensive income \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Provision for obsolescence of main spare parts \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Change in provision of land restorations cost \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Change in leasing obligations \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Change in the right of use the asset \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Provision for land restoration subject to the franchise \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Gain on sale of property, plant, and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_loss or gain of change in fair value of financial assets at fair value through other comprehensive income \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Realized gain from disposal of financial assets at fair value through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Reversed zakat provision \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Purchase of main spare parts \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_projects under costruction \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_right to use assets Net \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_zakat provsion \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_lease libailities current portion \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_lease liabilities noncurrent portion \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_investment income \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment for previous years \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Change in financial assets at fair value through OCI \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Investment in isalimc Murabaha \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Financial assets at fair value through profit or losses \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Short-term deposits with original maturities of more than three months \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Obligation for equity accounted investees \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Gain on sale of investment property, net \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Reversal of impairment loss on property, plant and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Zakat reversal for prior years \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Financial assets and Short-term Murabaha deposits \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Reversal of impairment loss on property, plant, and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Reversal of impairment loss on property, plant, and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Zakat and foreign tax provision \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Bank Borrowings \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Gain on derecognition of right-of-use assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Impairment loss on the trade receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Right-of-use Assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Depereciation Right-of-use Assets cash_flows_Finance costs-net \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Provision for employees' benefits \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Depreciation of property and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Amortisation of intangible assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Financial assets at fair value through other \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Impairment loss on intangible assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Loss on disposals during the year \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_The impairment loss on trade receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Purchase of vehicles \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Investment made during the year income_statement_Zakat and tax \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Investments financial_position_Deferred tax asset \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " financial_position_Bank borrowings- non-current portion \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Net fair value loss on derivative financial instruments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Expected credit loss on trade receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Remeasurement on employees defined benefits obligations \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Loss on financial derivative \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Allowance for spare parts \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Acquisition of a subsidiary, net of cash acquired \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Current portion of bank borrowings \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_mortisation of intangible assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Investment at fair value through other comprehensive income \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Acquisition of a subsidiary, net cash acquired \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Advance against investment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Amortisation of the intangible assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Cash and cash equivalents at the beginning of the period \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_The Selling and marketing expenses \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_The General and administrative expenses \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_The allowance for impairment losses on trade receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_The Gain on derecognition of right-of-use assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_The Purchase of vehicles cash_flows_The Finance costs paid \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_The Employee benefits paid \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Investment in subsidiary, net of cash acquired \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_gain on derecognition of right-of-use assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Capital advances \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Settlement of finance lease contract \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Gain on disposal of right of use assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Share of loss from associate \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Change in capital advance \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Investment in an associate \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Amount due from an associate \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Lease liabilities, Current \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Lease liabilities-non currnet \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Change in related parties balances \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Investment in an associate \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Amount due to related parties \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Concession contract receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Other reserves of equity-accounted investees \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Actuarial valuation reserve \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Allowance for expected credit losses on contract assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Loss on termination of lease contracts \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Allowance for expected credit losses on trade receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Write-off of property and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Repayment of loan from equity accounted investee \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Financial asset from service concession arrangement \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " equity_changes_Increase in share capital \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Settlement of finance lease liability \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Gain on termination of lease \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Payment received on loan to equity accounted investee \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Concession contract receivables - Current \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Advance from customer \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_الحصة في الخسارة من شركات مستثمر فيها بطريقة حقوق الملكية \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Investment in equity accounted investee \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Purchase of right-of-use assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Current portion lease liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Provision (reversal) for expected credit losses \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Amortisation on right-of-use assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Amounts due from to related parties \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Payment of lease liability \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Share of loss from equity accounted investees \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Provision for onerous contracts \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Finance costs lease liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Investment in an equity accounted investee \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Movement of capital advances \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Share of loss from equity accounted investee \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Movement in capital advances \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Reversal for provision for onerous contracts \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Disposal of right of use assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Non-current accounts receivable \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Allowance against amounts due from subsidiary \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Available for sale investments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Accounts payable \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Cost of unutilized production capacity \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment for decrease (increase) in Accounts receivable \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Lease liability - current \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Lease liability - non current \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Impairment of accounts receivable \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Amortization for arrangement fees cash_flows_Lease Payment \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Purchase of time deposit \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Financial assets at fair value through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Financial Assets at fair value through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Assets held for sale - net \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Investment at fair value through proft and loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_investments at fair value through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Financial Assets at fair value through profits and losses \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Spare Parts \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Gain on disposal of investment in financial assets at fair value through profit or loss (FVTPL) \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Net re-measurments of loss allowance \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Decrease (Incraese) in spare parts \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Increase decrease in contract assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Increase decrease in contract liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Employee defined benefits liabilities paid \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceed on disposal of a subsidiary \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Investment in financial assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Gain on disposal of investment in financial assets at FVTPL \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Fair value gain (loss) on investment in financial assets at FVTPL \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Loss on investment in financial assets at fair value through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Increase in contract assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Decrease in contract liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Foreign currency translation reserve released on disposal of a foreign subsidiary \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Gain on disposal of investment in financial assets at FVTPL \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Fair value gain (loss) on investment in financial assets at FVTPL \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Loss on disposal of a foreign subsidiary \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Decrease in spare parts \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Purchases of investment in financial assets at FVTPL \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from sale of investment in financial assets at FVTPL \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from disposal of a foreign subsidiary \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Right of use assets, net \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Due from a related party \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Unbilled receivables_non-current \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Amounts due from a related party \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Unbilled receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Deferred Tax Asset \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Short-term Murabaha \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Contract liabilities_Current \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Impairment of fixed assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Impairment of trade receivables and other current assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments to Inventories \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments to contract liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Right of use assets net \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Contracts liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Advance from customer noncurrent portion \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Advance from a customer \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Unbilled receivables current \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Amounts due from related party \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Advance from customer non current portion \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Impairment loss on trade receivables and other current assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Gain from sale of property plant and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Unbilled receivables_current \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Impairment of trade receivables and other current debit balances \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Contract liabilities cash_flows_Finance income collected \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Movement in investments in equity instruments designated as at FVOCI \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Depreciation of right of used assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Depreciation of Investment properties \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_.Dividends income \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Loss from disposal of right of used assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Discontinued operations \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Depreciation of right of use asset \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Loss on derecognition of right of use assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Realized gain on investments at fair value through other comprehensive income \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Derecognition gain on disposal of subsidiaries \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Depreciation on investment properties \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Loss from disposal of property, plant and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Provision for slow moving items \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Impairment recognized on trade receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Bargain purchase on acquisition of subsidiary (note 5) \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Gain on discontinued operations \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds of financial instruments by fair value through other comprehensive income \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Depreciation of right of use \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Realised gain on investments at fair value through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Unrealized gain on equity instruments at fair value through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Write-off for receivables provision \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Unrealized lloss gain on investments at fair value through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Unrealized loses from investments at fair value through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Realized gain from investments at fair value through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Amortization of right of use asset \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Realized gain on disposal of equity instruments at fair value through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Gain from disposal of investments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds of equity instruments at fair value through profit and loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Purchase of equity instruments at fair value through profit and loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Unrealised gain on investments at fair value through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Provision for slow moving inventory \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Provision for Bad-Debt cash_flows_Bargain purchase \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Gain on disposal of discontinued operations \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Due to Bank \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Realized gain on investments at fair value through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Unrealized (loss) gain on investments at fair value through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " equity_changes_Increase in share capital due to right issue \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Gain from disposal of property, plant and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_share of affiliate result \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Provision for impairment of doubtful other receivables write off reversal \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Acquisition of extra shares in a subsidiary \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_long term receivable and perpayments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_provision for impairment of trade receivable \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_provision for slow moving and obsolete \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_hntrest incom on deposits \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_other non- current libillity \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Deferred tax libillity \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Trade Paybles cash_flows_Zakat and incom tax charges \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " financial_position_long tearm recevable cash_flows_bentenchal losses \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Employees cost cash_flows_Employees cost 2 \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_loans cost cash_flows_zakat \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_revenues from received duposet cash_flows_short loans movments \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_net movment in short term deposits \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment in Amortization of deferred employee benefits \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment fro Other non-current liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment to Long term receivables and prepayments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Long-term receivables and prepayments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Amortization of deferred employee benefits \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Charge for impairment of trade receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for Other non-current liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for Long term receivables and other assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_مطلوبات غير مداولة اخرى cash_flows_الزكاة وضريبة الدخل المحملة \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " financial_position_Long term receivable \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment for amortization of deferred employee benefits \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Reserve of disposal group held for distribution/ sale \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for decrease (increase) in rent receivables \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Prepayments and Other Current Assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Investment in unconsolidated subsidiary \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Equity Investment at FVOCI and AFS Investment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Current portion of Lease Liability \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Zakat and Income Tax Payable \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Murabaha Loan financial_position_Retentions Payable \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " financial_position_SIDF loan financial_position_Long term Murabaha loans \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " financial_position_Islamic loan facilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Zakat and Income Tax \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment for decrease (increase) in prepayments and other current assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment for increase (decrease) in accounts payable, accruals and othe current liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Employees' defined benefits liabilties and other benefits paid \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Zakat and Income Tax Paid \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Finance income received on Murabaha deposits \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Net movement in long term retentions payable \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Payment of lease liabilties \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Net movement in Murabaha loan \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from long term Murabaha loans \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from Islamic loan facilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Unrealized fair value gains on equity investment at FVOCI \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Net movement in SDIF laon \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Long term retentions \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Net movement in investments at fair value through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Investment in a subsidary by a non-controlling shareholder \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Movement in equity investment at FVOCI \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from SIDF loan \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Current portion of Islamic loan facilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Payments of Long Term Murabaha loans \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Net movement in commercial loans financial_position_SIDF Loan \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Movement in long term retention payable \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Net movement in SIDF loan \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Non-controlling interst on itnitial investment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Net movement in investment at fair value through profit or loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Movement in long term retentions payable \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Initial investment in a subsidiary by a non-controlling shareholder \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from Murabaha loans \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Repayment of Murabaha loans \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Current portion of Islamic Loan Facilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Impairment loss on investment in associate \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Impairment Loss on investment in SKA \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Repayment of short term Murabaha loans \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Retemtions payable \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Adjustments for gains (losses) on non-trading investments, net \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Adjustments for decrease (increase) in other real estate, net \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Interest paid, classified as operating activities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Other inflows (outflows) of cash, classified as financing activities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Disclosure of other non-cash information [text block] \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Adjustments for decrease (increase) in investments held as fair value through statement of income [FVSI] \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Proceeds from maturity and sale of non-trading investments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Net cash flows from (used in) financing activities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Adjustments for gains (losses) on disposal of property and equipment, net \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Other inflows (outflows) of cash, classified as investing activities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Severance fee cash_flows_Provision for severance fees \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Severacne fee paid cash_flows_Employee benefit paid \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Addition in mine properties \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Repayment of short term borrowing \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Advances and prepayments.2 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Inventories.2 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Trade and other receivables.2 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Time deposits.2 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Cash and cash equivalents.2 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Other investments2 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Property, plant and equipment.1 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Capital work-in-progress.1 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Intangible assets.1 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Investment in joint ventures.1 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Deferred tax assets.1 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Other investments.1 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Mine properties.1 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Right-of-use assets1 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Projects, trade and other payables.2 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Accrued expenses.2 financial_position_Zakat payable.3 \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " financial_position_Severance fees payable.1 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Current portion of obligation under finance lease.1 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Current portion of long-term borrowings.2 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Deferred tax liabilities.1 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Long-term borrowings.3 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Provision for decommissioning, site rehabilitation and dismantling obligations \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Non-current portion of obligation under finance lease.1 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Projects, trade and other payables.4 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Employees benefits.1 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Derivative financial instruments1 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Exploration and technical services expenses.9 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Share in net income of joint ventures that have been equity accounted \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Income from time deposits.1 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Loss on exchange differences on translation2 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Finance cost.4 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Depletion and depreciation of mine properties \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Depreciation of property, plant and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Current service cost of employees end of service benefits \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Contribution for the employees savings plan \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Provision for severance fees.5 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Obsolete and slow moving spare parts and consumable materials written-off1 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Provision for allowance for inventory obsolescence1 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Depreciation of right-of-use assets2 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment to mine closure provision2 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Loss on derecognition of property, plant and equipment1 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Impairment of plant and equipment1 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Increase in expected credit loss allowance on trade and other receivables1 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Projects and other payables . Trade \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Accrued expenses . Trade cash_flows_Severance fees paid \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Income received from time deposits \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Investment in debt securities1 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment to mine properties \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Write-off of plant and equipment.5 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Mine properties written-off \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Impairment of mine properties \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Impairment of right-of-use assets4 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Investment in debt securities3 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Lease liabilities3 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Lease liabilities2 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Other operating income, net1 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Severance fees7 cash_flows_Loss on exchange differences2 \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Charge for employees share-based payment plan which will be equity-settled3 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Payment against provision for decommissioning, site rehabilitation and dismantling obligations1 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_(Increase).decrease in restricted cash \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Projects and other payables . Projects .3 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment to property, plant and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Impairment of property, plant and equipment1 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Advances and prepayments.5 cash_flows_Zakat paid.6 \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Income tax paid.6 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Expected credit loss allowance1 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_ECL allowance on trade and other receivables1 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment to right-of-use assets and the related lease liability1 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Income earned from insurance claim1 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Gain on adjustment to provision for decommissioning, site rehabilitation and dismantling obligations1 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment to intangible assets3 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Obsolete spare parts written-off3 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Trade and other receivables.3 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Expected credit loss allowance8 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Derivative interest paid2 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Gain on derecognition of property, plant and equipment1 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Inventories.3 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Investment at fair value through other comprehensive income1 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Amortisation of deferred income1 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " equity_changes_Transactions with non-controlling interest 3 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Impairment of non-mine assets1 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Derivative interest received2 \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Increase in time deposits \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Equity investments at FVOCI \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Impairment charge on non-financial assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Cost of revenues \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Right of use of assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for Depreciation of right of use assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Long term loans to a joint venture \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for Provision for impairment of trade receivable \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for income from financial asset held at FVTPL \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Employees' terminal benefits paid \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Long term loan to joint venture \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for Gain from disposal of right of use assets \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment for rent concession \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for Gain on lease modifications \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment for gains resulting from subsidiary acquisition \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Accounts receivable and prepayments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Term Deposit financial_position_Advance to Contractors \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " financial_position_Right-of-use asset financial_position_Zakat Provision \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " financial_position_Accounts payable and accruals \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Refund Liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Current maturity of lease liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Term Loans \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " comprehensive_income_Re-measurement loss on employees retirement benefit obligations of the Associate \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for Depreciation of right-of-use asset \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for Provision for allowance for expected credit losses \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for Property and equipment written off \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustments for decrease (increase) in Accounts receivable and prepayments \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Adjustment for increase (decrease) in Accounts Payable and accruals \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Movement in Refund Liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Interest received on term deposits \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Dividend received from an associate \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from term loans \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Investment in associate - held for sale \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Retention payable cash_flows_Refund liabilities \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Retention payablee cash_flows_Term Deposits \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Adjustment for allowance for doubtful receivables, net \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Zakat expense financial_position_Other investment \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Other Investement cash_flows_Gain on modification of leases \\\n", "0 0.0 0.0 \n", "1 0.0 0.0 \n", "2 0.0 0.0 \n", "3 0.0 0.0 \n", "4 0.0 0.0 \n", "\n", " cash_flows_Lease obligations paid \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceeds from short term loan \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Repayments of short term loans \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Depreciation and amortization \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Expected credit loss (ECL) \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " income_statement_Gain on modification of borrowings \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Gain on modification of borrowings \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Expected credit loss (ECL) \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Movement of cash under lien \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Deferred income and contract liabilities \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Expected credit loss \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Payment against amount due to related parties \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Contract assets - Current \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Contract Assets Non Current \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Proceed from sale of subsidiary \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Contract assets current \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " financial_position_Contract assets non-current \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Gain on disposal of property and equipment \\\n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 \n", "\n", " cash_flows_Net other losses \n", "0 0.0 \n", "1 0.0 \n", "2 0.0 \n", "3 0.0 \n", "4 0.0 " ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# X.head()\n", "nan_percent = (X.isnull().sum() / len(X)) * 100\n", "cols_to_drop = nan_percent[nan_percent < 99].index\n", "X_mod = X.drop(columns=cols_to_drop)\n", "display(len(X.columns.tolist()))\n", "display(len(X_mod.columns.tolist()))\n", "for col, pct in ((X_mod.isnull().sum() / len(X_mod)) * 100).sort_values(ascending=False).items():\n", " print(f\"{col}: {pct:.6f}%\")\n", "# X_mod = X_mod.dropna()\n", "X_mod = X_mod.fillna(0)\n", "display(X_mod.head())" ] }, { "cell_type": "code", "execution_count": 58, "id": "48e998ba", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "--- Training Metrics ---\n", "Accuracy: 0.66\n", " precision recall f1-score support\n", "\n", " Down (0) 0.64 0.95 0.77 1168\n", " Up (1) 0.78 0.27 0.40 843\n", "\n", " accuracy 0.66 2011\n", " macro avg 0.71 0.61 0.58 2011\n", "weighted avg 0.70 0.66 0.61 2011\n", "\n", "\n", "--- Validation Metrics ---\n", "Accuracy: 0.50\n", " precision recall f1-score support\n", "\n", " Down (0) 0.52 0.83 0.64 272\n", " Up (1) 0.35 0.10 0.16 231\n", "\n", " accuracy 0.50 503\n", " macro avg 0.44 0.47 0.40 503\n", "weighted avg 0.44 0.50 0.42 503\n", "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/a/.local/lib/python3.10/site-packages/sklearn/linear_model/_logistic.py:470: ConvergenceWarning: lbfgs failed to converge after 1000 iteration(s) (status=1):\n", "STOP: TOTAL NO. OF ITERATIONS REACHED LIMIT\n", "\n", "Increase the number of iterations to improve the convergence (max_iter=1000).\n", "You might also want to scale the data as shown in:\n", " https://scikit-learn.org/stable/modules/preprocessing.html\n", "Please also refer to the documentation for alternative solver options:\n", " https://scikit-learn.org/stable/modules/linear_model.html#logistic-regression\n", " n_iter_i = _check_optimize_result(\n" ] } ], "source": [ "if not X.empty and not y.empty:\n", " X_train, X_test, y_train, y_test = train_test_split(X_mod, y, test_size=0.2, random_state=42)\n", "\n", " model = LogisticRegression(random_state=42, max_iter=1000)\n", " model.fit(X_train, y_train)\n", "\n", " y_train_pred = model.predict(X_train)\n", " y_test_pred = model.predict(X_test)\n", "\n", " print(\"--- Training Metrics ---\")\n", " print(f\"Accuracy: {accuracy_score(y_train, y_train_pred):.2f}\")\n", " print(classification_report(y_train, y_train_pred, target_names=['Down (0)', 'Up (1)']))\n", " \n", " print(\"\\n--- Validation Metrics ---\")\n", " print(f\"Accuracy: {accuracy_score(y_test, y_test_pred):.2f}\")\n", " print(classification_report(y_test, y_test_pred, target_names=['Down (0)', 'Up (1)']))\n", "else:\n", " print(\"No data found to train the model.\")" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.12" } }, "nbformat": 4, "nbformat_minor": 5 }