File size: 6,416 Bytes
cca0cf3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
    <meta charset="UTF-8">
    <!-- إعدادات العرض ومنع التقريب بالأصابع لضمان تجربة Native App سلسة -->
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover">
    <meta name="theme-color" content="#ffffff">
    <meta name="color-scheme" content="light dark">
    <title>فريتري - مركز إدارة وأتمتة حملات النشر والتذكير الذكي والرادار</title>
    
    <!-- ================================================================= -->
    <!-- إعدادات ووسوم تطبيق الويب التقدمي (PWA & Mobile Native Meta Tags)  -->
    <!-- ================================================================= -->
    <link rel="manifest" href="manifest.webmanifest">
    <meta name="mobile-web-app-capable" content="yes">
    <meta name="apple-mobile-web-app-capable" content="yes">
    <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
    <meta name="apple-mobile-web-app-title" content="Fritree">
    <link rel="apple-touch-icon" href="icon.png">
    <link rel="icon" type="image/png" href="icon.png">

    <!-- خطوط الويب الاحترافية المعتمدة (Cairo للعربية و Plus Jakarta Sans للأرقام والإنجليزية) -->
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    
    <!-- مكتبة الأيقونات Font Awesome الإصدار الأحدث -->
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    
    <!-- ملف التصميم ونظام التنسيق المركزي المحدث -->
    <link rel="stylesheet" href="style.css">
</head>
<body>

    <!-- ================================================================= -->
    <!-- 0. جسر التوافقية الشامل للـ PWA (Hybrid Shim & Polyfill Bridge)    -->
    <!-- ================================================================= -->
    <script src="pwa-bridge.js"></script>

    <!-- ================================================================= -->
    <!-- 1. طبقة الإعدادات والثوابت العامة (Config & Constants Layer)       -->
    <!-- ================================================================= -->
    <script src="app-constants.js"></script>
    <script src="store-config.js"></script>
    <script src="banking-config.js"></script>

    <!-- ================================================================= -->
    <!-- 2. طبقة الدوال المساعدة والأدوات العامة (Utils & Helpers Layer)     -->
    <!-- ================================================================= -->
    <script src="zip-archive.js"></script>
    <script src="image-compressor.js"></script>
    <script src="phone-resolver.js"></script>
    <script src="linguistic-engine.js"></script>
    <script src="text-compiler.js"></script>

    <!-- ================================================================= -->
    <!-- 3. طبقة التشفير والتخزين الموحد (Storage & Crypto Layer)          -->
    <!-- ================================================================= -->
    <script src="crypto-engine.js"></script>
    <script src="storage-manager.js"></script>
    <script src="contacts-vault.js"></script>

    <!-- ================================================================= -->
    <!-- 4. طبقة إدارة الحالة المركزية (Central State Management Layer)   -->
    <!-- ================================================================= -->
    <script src="app-state.js"></script>
    <script src="rotation-state.js"></script>
    <script src="calendar-state.js"></script>

    <!-- ================================================================= -->
    <!-- 5. طبقة الخدمات والعمليات الأساسية (Core Logic & Services Layer)  -->
    <!-- ================================================================= -->
    <script src="progression-service.js"></script>
    <script src="exchange-rates-service.js"></script>
    <script src="antiban-rules-service.js"></script>
    <script src="similarity-service.js"></script>
    <script src="backup-service.js"></script>

    <!-- ================================================================= -->
    <!-- 6. طبقة بناء الواجهات والعرض (UI & DOM Rendering Layer)           -->
    <!-- ================================================================= -->
    <script src="shell-layout.js"></script>
    <script src="facebook-ui.js"></script>
    <script src="fb-registry-ui.js"></script>
    <script src="whatsapp-ui.js"></script>
    <script src="contacts-layout.js"></script>
    <script src="contacts-renderer.js"></script>
    <script src="rotation-ui.js"></script>
    <script src="rotation-groups-ui.js"></script>
    <script src="rotation-performance-ui.js"></script>
    <script src="calendar-ui.js"></script>
    <script src="wallet-ui.js"></script>
    <script src="store-ui.js"></script>
    <script src="history-ui.js"></script>
    <script src="support-ui.js"></script>

    <!-- ================================================================= -->
    <!-- 7. طبقة وحدات التحكم ومستمعات الأحداث (Controllers Layer)        -->
    <!-- ================================================================= -->
    <script src="contacts-editor-controller.js"></script>
    <script src="contacts-bulk-controller.js"></script>
    <script src="rotation-creator-controller.js"></script>
    <script src="rotation-followups-controller.js"></script>
    <script src="wallet-controller.js"></script>
    <script src="store-controller.js"></script>
    <script src="stealth-pacing-controller.js"></script>

    <!-- ================================================================= -->
    <!-- 8. المنسق العام ومدخل التشغيل الرئيسي (Main Orchestrator)         -->
    <!-- ================================================================= -->
    <script src="orchestrator-controller.js"></script>

</body>
</html>