File size: 23,016 Bytes
dee0d98
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>FAA Part 107 Test Prep - Support, Privacy Policy &amp; Terms of Service</title>
    <style>
        :root {
            /* Aviation blue + FAA orange theme */
            --primary-color: #005999;   /* Deep aviation blue */
            --secondary-color: #FF6B36; /* FAA orange */
            --text-color: #333333;
            --bg-color: #f5f9fc;
            --container-bg: #ffffff;
            --border-color: #e1e4e8;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--bg-color);
            margin: 0;
            padding: 0;
        }
        .container {
            max-width: 800px;
            margin: 40px auto;
            background: var(--container-bg);
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        header {
            text-align: center;
            margin-bottom: 40px;
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 20px;
        }
        header .app-icon {
            font-size: 48px;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        h1 {
            color: var(--primary-color);
            font-size: 28px;
            margin-bottom: 10px;
        }
        h2 {
            color: var(--primary-color);
            font-size: 22px;
            margin-top: 40px;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 10px;
        }
        h3 {
            font-size: 18px;
            margin-top: 25px;
            color: #222;
        }
        p {
            margin-bottom: 15px;
        }
        ul {
            margin-bottom: 15px;
            padding-left: 20px;
        }
        li {
            margin-bottom: 8px;
        }
        hr {
            border: 0;
            height: 1px;
            background: var(--border-color);
            margin: 40px 0;
        }
        .highlight {
            font-weight: bold;
        }
        .disclaimer-box {
            background: #fef3f3;
            border-left: 4px solid var(--secondary-color);
            padding: 16px 20px;
            margin: 20px 0;
            border-radius: 6px;
        }
        .disclaimer-box strong {
            color: var(--secondary-color);
        }
        .nav {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-bottom: 30px;
        }
        .nav a {
            display: inline-block;
            padding: 6px 14px;
            border-radius: 16px;
            background: var(--primary-color);
            color: #fff;
            text-decoration: none;
            font-size: 13px;
        }
        .nav a:hover {
            background: #004677;
        }
    </style>
</head>
<body>

<div class="container">
    <header>
        <div class="app-icon">✈️</div>
        <h1>FAA Part 107 Test Prep</h1>
        <p>Drone Pilot Knowledge Test Preparation</p>
        <p>Support &middot; Privacy Policy &middot; Terms of Service &middot; Disclaimer</p>
        <div class="nav">
            <a href="#support">Support</a>
            <a href="#privacy">Privacy Policy</a>
            <a href="#terms">Terms of Service</a>
            <a href="#disclaimer">Disclaimer</a>
        </div>
    </header>

    <!-- Support Section -->
    <section id="support">
        <h2>Support &amp; Technical Assistance</h2>

        <p>Thank you for using <strong>FAA Part 107 Test Prep</strong>. We are dedicated to providing a reliable, offline-first exam preparation experience for remote pilots working toward the FAA Part 107 Remote Pilot Knowledge Test.</p>

        <p><span class="highlight">Contact Us</span><br>
        If you have any questions, encounter technical issues, or have suggestions for improvement, please contact us via:<br>
        &#128231; Email: <a href="mailto:710354687@qq.com">710354687@qq.com</a><br>
        We aim to respond within 2 business days.</p>

        <p><span class="highlight">Frequently Asked Questions</span></p>

        <h3>How do I use the App?</h3>
        <p>The app is organized into four tabs. From the <strong>Study</strong> tab, select one of the five knowledge categories (Regulations, Airspace &amp; Requirements, Aviation Weather, Loading &amp; Performance, or Operations) and practice questions chapter by chapter. Take timed mock exams from the <strong>Exam</strong> tab. Review your wrong answers and study them as flash cards in the <strong>Review</strong> tab. The <strong>Profile</strong> tab provides the Quick Reference guide and a personal Flight Log.</p>

        <h3>Does the App require an internet connection?</h3>
        <p>No. The app is fully offline. All question banks, mock exams, quick reference tables, and reference materials are bundled with the app. No Wi-Fi or cellular connection is required at any time.</p>

        <h3>Is my data stored?</h3>
        <p>All practice records, wrong-answer logs, favorites, exam history, and flight log entries are stored locally on your device using Apple's secure sandbox, encrypted with CryptoKit. No cloud upload, no account registration, and no analytics are involved.</p>

        <h3>How do I restore my purchase on a new device?</h3>
        <p>FAA Part 107 Test Prep is a one-time purchase app managed by the Apple App Store. On a new device signed in with the same Apple ID, simply download the app from your purchased apps list. No in-app purchase, no subscription, and no restore button are needed.</p>

        <h3>How do I reset my progress?</h3>
        <p>Go to Profile &rarr; Settings &rarr; Reset All Progress. This permanently clears all answered questions, wrong answers, favorites, exam history, and flight log entries. This action cannot be undone.</p>

        <h3>What is the Quick Reference section?</h3>
        <p>The Quick Reference section provides FAA Part 107 quick-reference tables based on 14 CFR Part 107 and FAA guidance. It includes summaries of key operational rules, airspace classifications, weather minimums, and other at-a-glance information useful for last-minute study and exam day review.</p>
    </section>

    <hr>

    <!-- Privacy Policy Section -->
    <section id="privacy">
        <h2>Privacy Policy</h2>

        <p><strong>Applies to:</strong> FAA Part 107 Test Prep iOS application.<br>
        <strong>Core Commitment:</strong> We highly respect your privacy. This app does not collect, store, or share any data that can personally identify you. All learning data stays exclusively on your device.</p>

        <p><strong>Last Updated: July 28, 2026</strong></p>

        <h3>1. What Data We Collect</h3>
        <p>Short answer: We do not collect your personally identifiable information (PII).<br>
        The app runs entirely offline and requires no internet connection. Therefore:</p>
        <ul>
            <li>&#10060; We do not collect your name, email address, or phone number.</li>
            <li>&#10060; We do not collect your precise location data.</li>
            <li>&#10060; We do not collect device identifiers for ad tracking.</li>
            <li>&#10060; We never use any third-party advertising SDKs.</li>
            <li>&#10060; We do not use any third-party analytics SDKs.</li>
        </ul>

        <h3>2. How Data is Stored</h3>
        <p>All data generated within the app (practice records, error logs, favorites, mock exam scores, and flight log entries) is stored locally on your device:</p>
        <ul>
            <li>&#128241; Stored within your device using Apple's native sandbox mechanism.</li>
            <li>&#128274; Encrypted with Apple CryptoKit before being written to UserDefaults.</li>
            <li>&#128737; Inaccessible to any other apps or network services.</li>
            <li>&#128465; When you uninstall the app, all related records are automatically and permanently deleted by the system.</li>
        </ul>

        <h3>3. Does Data Get Transmitted to Servers?</h3>
        <p>Our service has no servers. All question practice, scoring, progress tracking, and flight log management runs locally on your device:</p>
        <ul>
            <li>&#9989; No account registration or forced login required.</li>
            <li>&#9989; Practice data is never uploaded to any cloud service.</li>
            <li>&#9989; No telemetry, no crash reporting, no usage statistics.</li>
            <li>&#9989; No drone flight data is recorded or transmitted by this app.</li>
        </ul>
        <p>Note: If you enable iCloud backup on your device, your local app data may be backed up to your iCloud account. This is governed by Apple's official Privacy Policy.</p>

        <h3>4. Third-Party Services</h3>
        <p>FAA Part 107 Test Prep uses only Apple-native frameworks. There are no third-party SDKs integrated:</p>
        <ul>
            <li>&#10060; No ad networks.</li>
            <li>&#10060; No user behavior analytics.</li>
            <li>&#10060; No social media sharing SDKs.</li>
            <li>&#10060; No in-app purchase SDKs (the app is a one-time paid download managed entirely by the Apple App Store).</li>
        </ul>
        <p>Apple's App Store handles the purchase transaction. We never see, store, or process any payment information. Apple's Privacy Policy governs any data processed by Apple during the transaction.</p>

        <h3>5. Device Permissions</h3>
        <p>This app adheres to a "minimalist tool" principle and does not require any sensitive permissions:</p>
        <ul>
            <li>&#128683; No camera access.</li>
            <li>&#128683; No microphone access.</li>
            <li>&#128683; No photo library access.</li>
            <li>&#128683; No location services.</li>
            <li>&#128683; No local network scanning.</li>
        </ul>
        <p>The app does not capture photos, record audio, or track your location. No drone flight data is recorded or transmitted. The optional Flight Log feature is a manual personal record-keeping tool; any entries you type in are stored only on your device.</p>

        <h3>6. Children's Privacy</h3>
        <p>This app is primarily designed for adults preparing for the FAA Part 107 Remote Pilot Knowledge Test (a U.S. remote pilot certification requirement). We do not knowingly collect personal data from children under 13. In fact, we do not collect personally identifiable information from any users, regardless of age.</p>

        <h3>7. Updates to This Privacy Policy</h3>
        <p>We may update this privacy policy from time to time to comply with the latest Apple App Store review guidelines:</p>
        <ul>
            <li>&#128197; Updated policies will be published on the App Store page.</li>
            <li>&#9989; Your continued use of the app constitutes your acceptance of the updated policy.</li>
        </ul>

        <h3>8. GDPR Compliance (EU Users)</h3>
        <p>If you are located in the European Union, under the General Data Protection Regulation (GDPR), you enjoy the following rights:</p>
        <ul>
            <li>&#128203; Right of Access: Not applicable, as we do not collect personal data.</li>
            <li>&#128465; Right to Erasure: Uninstalling the app deletes all local data.</li>
            <li>&#128228; Right to Data Portability: Not applicable (no data is stored on servers).</li>
            <li>&#10060; Right to Object: Not applicable (no data processing occurs).</li>
        </ul>

        <h3>9. CCPA Compliance (California Users)</h3>
        <p>Under the California Consumer Privacy Act (CCPA):</p>
        <ul>
            <li>&#128683; We have not sold any consumers' personal information in the past 12 months.</li>
            <li>&#128683; We do not collect any personal information.</li>
        </ul>

        <p><strong>Contact Us</strong><br>
        If you have any questions or concerns about this privacy policy, please contact the developer:<br>
        &#128231; Email: <a href="mailto:710354687@qq.com">710354687@qq.com</a></p>
    </section>

    <hr>

    <!-- Terms of Service Section -->
    <section id="terms">
        <h2>Terms of Service</h2>

        <p><strong>Last Updated: July 28, 2026</strong></p>

        <h3>1. Acceptance of Terms</h3>
        <p>By downloading, installing, or using FAA Part 107 Test Prep (hereinafter referred to as "the App"), you agree to be bound by these Terms of Service. If you do not agree, please delete the App from your device.</p>

        <h3>2. Application License</h3>
        <p>We grant you a limited, non-exclusive, non-transferable license to use the App on iOS devices that you own or control, solely for personal, non-commercial study purposes.</p>

        <h3>3. User Accounts</h3>
        <ul>
            <li>Creating an account is not required to use the App.</li>
            <li>Practice records, error logs, favorites, exam history, and flight log entries are stored locally on your device.</li>
            <li>You can delete the App at any time to clear all associated data.</li>
        </ul>

        <h3>4. Application Features</h3>
        <p><em>Study Features:</em></p>
        <ul>
            <li>Five knowledge-area question banks based on the FAA Part 107 test topics: Regulations, Airspace &amp; Requirements, Aviation Weather, Loading &amp; Performance, and Operations.</li>
            <li>Chapter-by-chapter study mode and random practice mode.</li>
            <li>Wrong-answer log with flash-card review mode.</li>
            <li>Timed mock exams with detailed scoring and exam history.</li>
            <li>Quick Reference guide with FAA Part 107 quick-reference tables based on 14 CFR Part 107 and FAA guidance.</li>
            <li>Personal Flight Log for recording your own training and recreational flights.</li>
            <li>Favorites and per-category progress tracking.</li>
        </ul>
        <p><em>All features are unlocked with a single App Store purchase. There are no tiers, no subscriptions, and no in-app purchases.</em></p>

        <h3>5. Purchases &amp; Payments</h3>
        <p><strong>5.1 Purchase Model</strong><br>
        The App is a one-time paid download on the Apple App Store. There are no subscription cycles, no auto-renewal, no hidden fees, and no in-app purchases. Once you download the App, you have permanent access to all features on the current device.</p>
        <p><strong>5.2 Transaction Processing</strong><br>
        All payments are processed securely by Apple through the App Store. We do not see, store, or transmit any of your payment information. Apple's own Terms of Service and Privacy Policy govern the purchase transaction.</p>

        <h3>6. Intellectual Property</h3>
        <p>All intellectual property rights in and to the App and its content (including but not limited to question bank data, interface design, textual explanations, icons, quick reference tables, and layout) are owned by us. You may not copy, modify, distribute, or create derivative works without our prior written consent.</p>

        <h3>7. User Responsibilities</h3>
        <ul>
            <li>You agree to use the App only for lawful study purposes.</li>
            <li>You agree not to reverse engineer, decompile, or disassemble the App.</li>
            <li>You agree not to redistribute, resell, or share the App's content.</li>
            <li>You are responsible for maintaining the security of your device.</li>
        </ul>

        <h3>8. Limitation of Liability</h3>
        <p>To the fullest extent permitted by law, we shall not be liable for any indirect, incidental, special, or consequential damages arising from your use of the App (including but not limited to exam failures, loss of study time, or data loss). The App is provided "as is" without any express or implied warranties.</p>

        <h3>9. Third-Party Links</h3>
        <p>The App may reference official institutions (such as the Federal Aviation Administration) and external websites for informational purposes only. We are not responsible for the content, privacy policies, or practices of these third-party websites.</p>

        <h3>10. Changes to Terms</h3>
        <p>We reserve the right to modify these Terms of Service at any time. In the event of material changes, we will notify you via App Store page updates. Your continued use of the App constitutes acceptance of the revised Terms.</p>

        <h3>11. Termination</h3>
        <p>We reserve the right to terminate your access to the App under the following circumstances:</p>
        <ul>
            <li>You violate these Terms of Service;</li>
            <li>We receive requests from Apple or regulatory authorities;</li>
            <li>Legal requirements dictate.</li>
        </ul>

        <p>Thank you for using FAA Part 107 Test Prep!</p>
    </section>

    <hr>

    <!-- Disclaimer Section -->
    <section id="disclaimer">
        <h2>Disclaimer</h2>

        <div class="disclaimer-box">
            <p><strong>Important: Non-Official Status</strong></p>
            <p>FAA Part 107 Test Prep is an <strong>independent, unofficial</strong> study aid. It is <strong>NOT affiliated with, endorsed by, sponsored by, or associated with</strong> the Federal Aviation Administration (FAA) or any other government agency.</p>
            <p>The FAA Part 107 Remote Pilot Knowledge Test is administered solely by the FAA under the legal framework of 14 CFR Part 107 (Title 14 of the Code of Federal Regulations, Part 107). For official, authoritative information about the exam, eligibility, scheduling, and requirements, please visit the official website: <a href="https://www.faa.gov" target="_blank" rel="noopener">faa.gov</a>.</p>
        </div>

        <h3>1. Independent Study Aid</h3>
        <p>This App is an independent study aid designed to help remote pilots prepare for the FAA Part 107 Remote Pilot Knowledge Test. It is not a substitute for official FAA training materials, the Pilot's Handbook of Aeronautical Knowledge, advisory circulars, or guidance from a Certified Flight Instructor (CFI).</p>

        <h3>2. Accuracy of Content</h3>
        <p>All practice questions are based on publicly available FAA Part 107 knowledge areas and the publicly published text of 14 CFR Part 107. We make every effort to ensure accuracy, but we do not guarantee that:</p>
        <ul>
            <li>All questions exactly match the official FAA Part 107 exam questions.</li>
            <li>All content is absolutely free of errors or omissions.</li>
            <li>The difficulty level exactly reflects the current official exam.</li>
        </ul>
        <p>Actual exam questions, format, and requirements are determined solely by the FAA and may change without notice.</p>

        <h3>3. No Guarantee of Exam Success or Certificate Issuance</h3>
        <p>Use of this App does not guarantee that you will pass the FAA Part 107 Remote Pilot Knowledge Test or that the FAA will issue you a Remote Pilot Certificate. Your exam result depends on many factors, including your overall aeronautical knowledge, exam-day performance, and preparation outside this App. The App does not constitute any official certification, qualification guarantee, or authorization to conduct drone operations.</p>

        <h3>4. Flight Log Notice</h3>
        <p>The optional Flight Log included in the App is a personal record-keeping tool for your own training and recreational flights. Entries you create are stored only on your device and are <strong>not submitted to the FAA</strong> or any other authority. The Flight Log is not an official FAA logging system and does not satisfy any regulatory record-keeping requirement under 14 CFR Part 107. You are solely responsible for maintaining any records required by the FAA.</p>

        <h3>5. No Affiliation with Official Institutions</h3>
        <p>The App and its developer have no relationship with:</p>
        <ul>
            <li>Federal Aviation Administration (FAA)</li>
            <li>Department of Transportation (DOT)</li>
            <li>National Transportation Safety Board (NTSB)</li>
            <li>Any other federal, state, or local aviation authority</li>
            <li>Any designated FAA Knowledge Testing Center</li>
        </ul>
        <p>All trademarks, service marks, and trade names referenced in the App are the property of their respective owners. Reference to these institutions is for informational purposes only.</p>

        <h3>6. "As Is" Provision</h3>
        <p>The App is provided "as is" and "as available" without any express or implied warranties, including but not limited to warranties of merchantability, fitness for a particular purpose, or non-infringement. We do not warrant that the App will be error-free, uninterrupted, or that defects will be corrected.</p>

        <h3>7. Quick Reference Content Notice</h3>
        <p>The Quick Reference section provides FAA Part 107 quick-reference tables compiled from 14 CFR Part 107 and FAA guidance. This content is provided for study purposes only and is a condensed summary, not a substitute for the official FAA regulations, advisory circulars, or the Aeronautical Information Manual (AIM). Always consult the current official sources at <a href="https://www.faa.gov" target="_blank" rel="noopener">faa.gov</a> for authoritative regulatory text before conducting any flight operation.</p>

        <h3>8. External Resources</h3>
        <p>Any reference to external websites, books, or organizations (including the FAA) is provided for the user's convenience. We do not control and are not responsible for the content, accuracy, or availability of these external resources.</p>

        <h3>9. Limitation of Liability</h3>
        <p>To the fullest extent permitted by applicable law, neither the developer nor any associated party shall be liable for any direct, indirect, incidental, consequential, special, or exemplary damages arising from the use of or inability to use the App, including but not limited to exam failure, loss of certification opportunities, flight operations incidents, loss of study time, or data loss.</p>

        <h3>10. Acceptance</h3>
        <p>By using this App, you acknowledge that you have read, understood, and agree to this disclaimer. If you do not agree with any part of this disclaimer, please delete the App from your device.</p>

        <p><strong>Contact Us</strong><br>
        If you have any questions about this disclaimer, please contact the developer:<br>
        &#128231; Email: <a href="mailto:710354687@qq.com">710354687@qq.com</a></p>
    </section>
</div>

</body>
</html>