As a Software Engineer at Lifesight, you occupy a critical position at the intersection of data engineering, API solutions, and AI-driven insights. You are not merely writing code; you are building the robust infrastructure that allows Lifesight to process complex data at scale. Your work directly influences how clients derive actionable intelligence, making your technical contributions fundamental to the company's competitive advantage in the market. The role demands a balance of high-level architectural thinking and precise, efficient implementation. Whether you are optimizing data pipelines, designing scalable REST APIs, or contributing to the core platform, you will be solving problems that require both deep technical knowledge and a pragmatic approach to startup-style growth. You will collaborate with cross-functional teams to turn ambiguous requirements into reliable, production-ready systems. ##### Tip The role is fast-paced and requires a high degree of autonomy. Prioritize demonstrating your ability to navigate technical ambiguity while keeping business outcomes in mind.
Initial Screening
reportedThe process begins with an initial screening to assess basic qualifications and fit.
What to demonstrate
- The process begins with an initial screening to assess basic qualifications and fit
- Depth in Data Structures & Algorithms (DSA)
How to prepare
- Be able to walk your CV end to end in two minutes, and say why this company specifically.
- Have your salary expectations, notice period and location constraints ready, and ask for the rest of the loop in writing.
Technical Review
reportedCandidates should prepare for a deep-dive technical review focusing on practical engineering skills.
What to demonstrate
- Candidates should prepare for a deep-dive technical review focusing on practical engineering skills
- Depth in Data Structures & Algorithms (DSA)
How to prepare
- Answer aloud and timed: Describe your process for debugging a memory leak in a production environment.
- Answer aloud and timed: What are the trade-offs between different caching strategies in a high-traffic API?
Cultural Discovery
reportedExpect discussions that explore cultural fit and long-term growth potential within the organization.
What to demonstrate
- Expect discussions that explore cultural fit and long-term growth potential within the organization
- Depth in Data Structures & Algorithms (DSA)
How to prepare
- Answer aloud and timed: How do you ensure your code remains scalable as the system’s user base grows?
- Answer aloud and timed: Design a system for real-time data ingestion and processing.
Timed Technical Assignment
reportedIn some cases, candidates may be required to complete a timed technical assignment.
What to demonstrate
- In some cases, candidates may be required to complete a timed technical assignment
- Depth in Data Structures & Algorithms (DSA)
How to prepare
- Answer aloud and timed: How would you architect a service to handle millions of requests per day?
- Answer aloud and timed: Discuss the pros and cons of microservices versus monolithic architectures in the context of Lifesight.
Final Discussions
reportedThe process concludes with final discussions to clarify expectations and next steps.
What to demonstrate
- The process concludes with final discussions to clarify expectations and next steps
- Depth in Data Structures & Algorithms (DSA)
How to prepare
- Answer aloud and timed: How do you approach designing a fault-tolerant system?
- Answer aloud and timed: Explain how you would manage service discovery and load balancing in a cloud-native environment.
PracHub editorial advice for the preparation topics above.
Going into the loop without having done this.
Prioritize Communication: When solving a coding problem, talk through your thought process out loud. The interviewer is more interested in how you approach a problem than whether you get the perfect solution immediately.
Going into the loop without having done this.
Research the Product: Understand what Lifesight does. Having a clear idea of their data solutions and AI offerings will help you frame your technical answers to match their business goals.
Going into the loop without having done this.
Ask Strategic Questions: Use the VP or architect rounds to ask about the company’s future, their biggest technical challenges, and how they foster professional growth.
Going into the loop without having done this.
If you are asked to provide a salary expectation, be prepared to justify it with market data and your specific experience level.
Choose a category, try a prompt, then open its approach, worked solution or follow-up when you need it.
Archive a resource graph without breaking live references or recursing
Resources reference other resources within a tenant; for the largest tenant the reference table holds up to 2,000,000 nodes and 8,000,000 edges. Archiving a resource must archive everything reachable from it that nothing outside the set still references, refuse when a live external referrer exists, and terminate when references form cycles, which they legitimately do. Produce the archive order and the refusal list, targeting O(V+E). Say what stops the traversal crossing a tenant boundary, and why recursion is the wrong control structure at this size.
Approach
- Load the subgraph with the tenant predicate on both endpoints of the edge, not only on the side you started from. Scoping the left table alone is the classic cross-tenant leak: one mis-entered edge then pulls another tenant's resources into the traversal and, worse, into the archive.
- Traverse iteratively with an explicit stack. A 2,000,000-node graph can hold a chain deep enough to exhaust a native stack in the low tens of thousands of frames, and that failure is a process crash rather than an error you can return.
- Treat cycles as data rather than corruption: compute strongly connected components with Tarjan in O(V+E) using its own explicit stack, then condense. The condensation is a DAG, so a topological order over it gives the archive order, and every member of a component archives in one transaction because no order within a cycle is valid.
- Decide refusals with reverse edges. A candidate is archivable only if every in-edge originates inside the candidate set, so build the transpose or count in-degrees restricted to the visited set, and emit each blocked resource with the id of the external referrer, which is the only part of the answer an operator can act on.
Follow-up
- The graph is read in one query and the archive writes a minute later. What can change in between, and how do you make the write safe?
- The candidate set is 400,000 resources. Is that one transaction, and if not, what does a half-finished archive look like to a reader?
Canonicalise a request body into a stable idempotency fingerprint
idempotency_key.request_fingerprint is a SHA-256 over the method, path and canonicalised body, and a retry whose fingerprint differs must be rejected with 422 rather than served the stored response. Write the canonicaliser. Bodies are JSON up to 256 KB nested at most 32 levels; clients vary key order, whitespace and unicode escaping, and some send 64-bit ids as JSON numbers. Produce a deterministic byte string such that semantically identical bodies match and any semantic difference does not. State your complexity and name two normalisations you refuse to perform.
Approach
- Parse once into a tree, then re-serialise under fixed rules: object keys sorted, array order preserved, one escaping convention, no insignificant whitespace. Parsing is O(n) and sorting keys is O(k log k) per object, so O(n log n) overall with O(depth) stack, and the 32-level cap is enforced during parsing because hostile nesting is how a canonicaliser becomes a stack overflow.
- Sort keys by their UTF-8 bytes and say why the obvious implementation is wrong in some runtimes: a default string comparison that orders by UTF-16 code units places surrogate pairs, meaning code points from U+10000 up, below U+E000 to U+FFFF, which is not UTF-8 byte order, so two services written in different languages disagree on the same document.
- Do not re-encode numbers through a double. IEEE-754 binary64 represents integers exactly only up to 2^53, so normalising a 19-digit id through a float changes it, and 1 against 1.0 cannot be reconciled without deciding whether they are the same value. Preserve the literal token, and require ids as strings at the API boundary if you want them comparable.
- Reject duplicate keys rather than picking one. JSON permits them and parsers disagree, most keeping the last, so any choice you make ties the fingerprint to a parser detail that the code handling the request does not necessarily share.
Follow-up
- A client sends the same logical request with an extra field your API ignores. Same key, different fingerprint, so you return 422. Is that the right answer?
- Where does the fingerprint get computed relative to request decompression and the body-size limit?
Merge partitioned event streams into one ordered feed with bounded lateness
The read-model service consumes 64 log partitions carrying about 4,000 events per second in total. Each partition is ordered within itself, but partitions drift by up to 30 seconds, and the activity feed must present a tenant's events in occurred_at order. Produce the merge. State its complexity, the buffer it requires in events and in bytes, what happens when one partition is idle, and what you do with an event that arrives after you have already emitted its position. Payloads average 1 KB.
Approach
- Merge with a min-heap over the 64 partition heads keyed on (occurred_at, event_id): O(log P) per event and O(n log P) overall. The tie-break on event_id is what makes the output deterministic when two partitions carry the same millisecond, which matters because the feed is paginated and a non-deterministic order reorders pages under the reader.
- Emitting the heap head is only correct once every partition has produced everything up to that timestamp, so the emit condition is a watermark: the minimum across partitions of the highest occurred_at seen, less the allowed lateness. Events are held until the watermark passes them, which is what turns individually ordered streams into a jointly ordered one.
- Size the buffer from the lateness rather than guessing: 4,000 events per second times 30 seconds is 120,000 buffered events, and at 1 KB each about 120 MB of heap. That number is the real price of the ordering guarantee and belongs in front of whoever asked for it.
- Handle the idle partition explicitly, because it fails the feed rather than corrupting it: a partition with no traffic never advances its own maximum, so the watermark freezes and output stops entirely. Either every partition emits a periodic idle marker carrying the broker's current time, or the watermark falls back to wall clock for a partition silent beyond a threshold.
Follow-up
- The lateness budget is raised to five minutes. What is the new buffer, and what besides memory changes?
- The consumer restarts. Where does it resume from, and what does the feed look like for the first 30 seconds?
Explain why the owner filter ignores the listing index
The only index on resource is (tenant_id, status, updated_at DESC, resource_id DESC). A new endpoint returns one user's resources across all statuses, newest created first: WHERE tenant_id = $1 AND owner_user_id = $2 ORDER BY created_at DESC LIMIT 20. On a tenant with 2M rows it takes 900 ms and EXPLAIN shows a sort above a large scan. Explain precisely why the existing index cannot serve it, give the index that can, and state which of these the new index still will not help: owner_user_id alone across tenants; the same query ordered by updated_at. PostgreSQL 16.
Approach
- Separate the two jobs an index does. For filtering, a composite btree is seekable only on a left prefix, so with no predicate on status the scan can at best range over tenant_id and test owner_user_id per row; PostgreSQL 16 has no btree skip scan to jump the unconstrained column.
- For ordering, the index is sorted by (status, updated_at) within a tenant and not by created_at, so the LIMIT cannot stop early: every matching row is read and then sorted. That is the 'Sort Method: top-N heapsort' line, and it is why the plan reads 2M rows to answer with 20.
- Derive the replacement from the access path — equality, equality, then the ordering column: CREATE INDEX CONCURRENTLY ON resource (tenant_id, owner_user_id, created_at DESC). The scan seeks to the (tenant, owner) range and walks 20 entries in order, so the Sort node disappears along with the row-read.
- Treat INCLUDE (title, status) as conditional, not free. An index-only scan still visits the heap for any row whose page is not marked all-visible, so on a table taking 1.2k writes/second the win depends on autovacuum keeping the visibility map current, and the wider index costs more on every insert.
Follow-up
- 90% of rows are status='active'. Would a partial index WHERE status = 'active' change your answer, and for which of the three queries?
- A dashboard runs this for 40 owners in one page load. What changes about the design?
Find version gaps and relay lag with window functions
outbox_event holds event_id, aggregate_type, aggregate_id, aggregate_version, event_type, payload, status ('pending','published','dead'), attempts, created_at, published_at. A projection is missing rows and you must decide whether the relay skipped events or the consumer dropped them. Write three queries over the last seven days: one listing every aggregate_id whose published aggregate_version sequence has a hole, one giving per-day counts with a running total, and one returning the newest published event per aggregate. For each, say where the window function is evaluated relative to WHERE and LIMIT. PostgreSQL 16.
Approach
- Gaps: compute lead(aggregate_version) OVER (PARTITION BY aggregate_id ORDER BY aggregate_version) in a subquery, then filter next_version <> aggregate_version + 1 in the outer query. Window functions are evaluated after WHERE, GROUP BY and HAVING and before the outer ORDER BY and LIMIT, so the predicate cannot sit in the same WHERE clause and PostgreSQL 16 has no QUALIFY.
- Say what the seven-day filter does to the answer: it truncates every partition, so the first row per aggregate has no predecessor inside the window and a hole spanning the boundary is invisible. Widen the window, or join to resource.version as the authority for the true maximum.
- Running total: SELECT date_trunc('day', created_at) AS d, count() AS n, sum(count()) OVER (ORDER BY date_trunc('day', created_at) ROWS UNBOUNDED PRECEDING). An aggregate inside a window call is legal because grouping runs before windowing. The grouping key is unique per row here so ROWS and RANGE agree, but write the frame anyway — over ungrouped rows with tied timestamps the default RANGE frame pulls in every peer row and the total jumps.
- Newest per aggregate: DISTINCT ON (aggregate_id) ... ORDER BY aggregate_id, aggregate_version DESC is the cheap PostgreSQL-only form when an index matches that order; row_number() OVER (PARTITION BY aggregate_id ORDER BY aggregate_version DESC) = 1 is the portable form and needs a subquery for the same evaluation-order reason as the gap query.
Follow-up
- Relay failover redelivers events. Does a duplicate break the gap query, and how would you detect one from this table alone?
- Turn the gap check into a continuous monitor rather than a query someone runs after an incident. What does it watch?
Explain the difference between various design patterns and provide a scenario where you would choose one over
Explain the difference between various design patterns and provide a scenario where you would choose one over another.
Approach
- Clarify what is being asked and what a complete answer contains.
- State your assumptions explicitly before working the problem.
- Say what you would check first and why it is the highest-information step.
- Work from the requirement backwards to the design.
Follow-up
- What assumption would you test first?
- How would you know your answer was wrong?
What are the trade-offs between different caching strategies in a high-traffic API?
What are the trade-offs between different caching strategies in a high-traffic API?
Approach
- Say who the caller is and what they do when the call fails halfway.
- Define the identity of a request so a retry cannot double-apply it.
- Separate accepted, pending, failed and confirmed; they are different facts.
- Design the error taxonomy before the success shape; callers branch on it.
Follow-up
- What happens if the caller retries after a timeout?
- How does a client discover it is on an old version of this contract?
How do you ensure your code remains scalable as the system’s user base grows?
How do you ensure your code remains scalable as the system’s user base grows?
Approach
- Fix the scope first: who calls this, how often, and what they do when it fails.
- Name the read and write paths separately; they rarely have the same bottleneck.
- Choose a partition key and say what query it makes expensive.
- State the consistency you need, and where you are willing to be stale.
Follow-up
- What breaks first when traffic grows ten times?
- How does this behave when that dependency is down for an hour?
Design a system for real-time data ingestion and processing.
Design a system for real-time data ingestion and processing.
Approach
- Fix the scope first: who calls this, how often, and what they do when it fails.
- Name the read and write paths separately; they rarely have the same bottleneck.
- Choose a partition key and say what query it makes expensive.
- State the consistency you need, and where you are willing to be stale.
Follow-up
- What breaks first when traffic grows ten times?
- How does this behave when that dependency is down for an hour?
How would you architect a service to handle millions of requests per day?
How would you architect a service to handle millions of requests per day?
Approach
- Fix the scope first: who calls this, how often, and what they do when it fails.
- Name the read and write paths separately; they rarely have the same bottleneck.
- Choose a partition key and say what query it makes expensive.
- State the consistency you need, and where you are willing to be stale.
Follow-up
- What breaks first when traffic grows ten times?
- How does this behave when that dependency is down for an hour?
Discuss the pros and cons of microservices versus monolithic architectures in the context of Lifesight.
Discuss the pros and cons of microservices versus monolithic architectures in the context of Lifesight.
Approach
- Fix the scope first: who calls this, how often, and what they do when it fails.
- Name the read and write paths separately; they rarely have the same bottleneck.
- Choose a partition key and say what query it makes expensive.
- State the consistency you need, and where you are willing to be stale.
Follow-up
- What breaks first when traffic grows ten times?
- How does this behave when that dependency is down for an hour?
How do you approach designing a fault-tolerant system?
How do you approach designing a fault-tolerant system?
Approach
- Fix the scope first: who calls this, how often, and what they do when it fails.
- Name the read and write paths separately; they rarely have the same bottleneck.
- Choose a partition key and say what query it makes expensive.
- State the consistency you need, and where you are willing to be stale.
Follow-up
- What breaks first when traffic grows ten times?
- How does this behave when that dependency is down for an hour?
Explain how you would manage service discovery and load balancing in a cloud-native environment.
Explain how you would manage service discovery and load balancing in a cloud-native environment.
Approach
- Fix the scope first: who calls this, how often, and what they do when it fails.
- Name the read and write paths separately; they rarely have the same bottleneck.
- Choose a partition key and say what query it makes expensive.
- State the consistency you need, and where you are willing to be stale.
Follow-up
- What breaks first when traffic grows ten times?
- How does this behave when that dependency is down for an hour?
Describe your process for debugging a memory leak in a production environment.
Describe your process for debugging a memory leak in a production environment.
Approach
- Establish what changed and when, before forming any theory.
- Pick a bisection that eliminates candidates whichever way it turns out.
- Check the instrumentation before believing the symptom.
- Separate the trigger from the cause; the deploy is rarely the bug.
Follow-up
- What would you look at first, and what would it rule out?
- How would you tell a cause from a coincidence here?
Built from the rounds and topics Lifesight candidates report.
Prepare, practise & reflect
One practical outcome each day. Spend longer where you need it.
0 / 7 done01Map the Lifesight loop
- Write out the reported sequence: Initial Screening, Technical Review, Cultural Discovery, Timed Technical Assignment, Final Discussions.
- For each round, write one sentence on what it is judging, from the description above, and mark the one you are least ready for.
Deliverable: A one-page map of the 5 reported rounds, with the weakest marked.
02Work Data Structures & Algorithms (DSA)
- Spend the session on Data Structures & Algorithms (DSA), which Lifesight candidates report being tested on.
- Write one worked example in Data Structures & Algorithms (DSA) and time yourself on it.
Deliverable: One timed worked example in Data Structures & Algorithms (DSA).
03Work Java
- Spend the session on Java, which Lifesight candidates report being tested on.
- Write one worked example in Java and time yourself on it.
Deliverable: One timed worked example in Java.
04Work REST APIs
- Spend the session on REST APIs, which Lifesight candidates report being tested on.
- Write one worked example in REST APIs and time yourself on it.
Deliverable: One timed worked example in REST APIs.
05Answer out loud: Technical Foundations & Programming
- Answer aloud, timed: Explain the difference between various design patterns and provide a scenario where you would choose one over another.
- Answer aloud, timed: How do you handle database optimization when dealing with large-scale datasets?
Deliverable: Spoken answers to 2 reported Technical Foundations & Programming question(s), under time.
06Answer out loud: System Design & Architecture
- Answer aloud, timed: Design a system for real-time data ingestion and processing.
- Answer aloud, timed: How would you architect a service to handle millions of requests per day?
Deliverable: Spoken answers to 2 reported System Design & Architecture question(s), under time.
07Answer out loud: Behavioral & Leadership
- Answer aloud, timed: Describe a time you had to pivot your technical approach due to changing business requirements.
- Answer aloud, timed: How do you handle disagreements with stakeholders regarding technical debt versus feature delivery?
Deliverable: Spoken answers to 2 reported Behavioral & Leadership question(s), under time.
Expand any day for tasks and deliverables. Your progress is saved on this device.
Behavioural rounds judge the decision you made and what it cost.
How do you handle database optimization when dealing with large-scale datasets?
How do you handle database optimization when dealing with large-scale datasets?
Approach
- Pick a story where you made the decision, not one where you watched it.
- State the situation in two sentences and spend the rest on the reasoning.
- Give the blast radius: what could have broken, and what you measured.
- Name the disagreement and how you resolved it with evidence.
Follow-up
- What would you do differently if you ran that again?
- How did you know your change caused the improvement?
Describe a time you had to pivot your technical approach due to changing business requirements.
Describe a time you had to pivot your technical approach due to changing business requirements.
Approach
- Pick a story where you made the decision, not one where you watched it.
- State the situation in two sentences and spend the rest on the reasoning.
- Give the blast radius: what could have broken, and what you measured.
- Name the disagreement and how you resolved it with evidence.
Follow-up
- What would you do differently if you ran that again?
- How did you know your change caused the improvement?
How do you handle disagreements with stakeholders regarding technical debt versus feature delivery?
How do you handle disagreements with stakeholders regarding technical debt versus feature delivery?
Approach
- Pick a story where you made the decision, not one where you watched it.
- State the situation in two sentences and spend the rest on the reasoning.
- Give the blast radius: what could have broken, and what you measured.
- Name the disagreement and how you resolved it with evidence.
Follow-up
- What would you do differently if you ran that again?
- How did you know your change caused the improvement?
Tell me about a project where you had to mentor a junior team member or lead a technical initiative.
Tell me about a project where you had to mentor a junior team member or lead a technical initiative.
Approach
- Pick a story where you made the decision, not one where you watched it.
- State the situation in two sentences and spend the rest on the reasoning.
- Give the blast radius: what could have broken, and what you measured.
- Name the disagreement and how you resolved it with evidence.
Follow-up
- What would you do differently if you ran that again?
- How did you know your change caused the improvement?
What makes you interested in the journey and future trajectory of Lifesight?
What makes you interested in the journey and future trajectory of Lifesight?
Approach
- Pick a story where you made the decision, not one where you watched it.
- State the situation in two sentences and spend the rest on the reasoning.
- Give the blast radius: what could have broken, and what you measured.
- Name the disagreement and how you resolved it with evidence.
Follow-up
- What would you do differently if you ran that again?
- How did you know your change caused the improvement?
How do you prioritize your work when facing conflicting deadlines?
How do you prioritize your work when facing conflicting deadlines?
Approach
- Pick a story where you made the decision, not one where you watched it.
- State the situation in two sentences and spend the rest on the reasoning.
- Give the blast radius: what could have broken, and what you measured.
- Name the disagreement and how you resolved it with evidence.
Follow-up
- What would you do differently if you ran that again?
- How did you know your change caused the improvement?
- 01
How do you handle database optimization when dealing with large-scale datasets?
- 02
Describe a time you had to pivot your technical approach due to changing business requirements.
- 03
How do you handle disagreements with stakeholders regarding technical debt versus feature delivery?
- 04
Tell me about a project where you had to mentor a junior team member or lead a technical initiative.
How difficult are the technical interviews?
The difficulty is generally considered average. The focus is on practical, real-world engineering problems rather than obscure competitive programming puzzles.
Lifesight Software Engineer candidate reports ↗What is the best way to stand out?
Demonstrate a deep understanding of the "why" behind your technical decisions. Interviewers at Lifesight appreciate candidates who can discuss the trade-offs of their design choices in detail.
Lifesight Software Engineer candidate reports ↗Is there an assignment round?
Some processes include a time-boxed take-home assignment. Treat this as an opportunity to showcase your clean coding and documentation habits.
Lifesight Software Engineer candidate reports ↗How long does the process take?
The process is typically fast, often spanning a few weeks. Keep in mind that communication speed can vary, so feel free to reach out to your HR contact if you haven't heard back within the expected window.
Lifesight Software Engineer candidate reports ↗How many interview rounds does Lifesight have for a Software Engineer role, and what are the stages?
Candidates for Lifesight Software Engineer roles typically go through an initial screening, then a technical review. The process can also include cultural discovery, a timed technical assignment in some cases, and final discussions to clarify expectations and next steps. Reported interviews for this role in aggregate were 7 total.
Lifesight Software Engineer candidate reports ↗How difficult are Lifesight Software Engineer interviews and what is the offer rate?
For Lifesight Software Engineer interviews, candidates most commonly report the difficulty level as average. In the aggregated experience data provided, the offer rate is 0%, so you should plan your preparation accordingly and focus on being ready for multiple rounds.
Lifesight Software Engineer candidate reports ↗What technical topics does Lifesight test for Software Engineer interviews?
Expect a mix of Data Structures and Algorithms (DSA) and algorithmic coding, plus Java and SQL. The technical review and related rounds also cover REST APIs, Spring Framework, system design, and design patterns, including questions like microservices versus monoliths and fault-tolerant system design.
Lifesight Software Engineer candidate reports ↗Does Lifesight Software Engineer interviews include a timed coding assignment?
Sometimes. The interview process includes a timed technical assignment in some cases, alongside the initial screening and technical review stages. If you see this step for your specific interview loop, prioritize completing code under time constraints.
Lifesight Software Engineer candidate reports ↗What is the interview focus at Lifesight for Software Engineer candidates, system design or coding?
It is both. The technical review emphasizes practical engineering skills, and the evaluation areas call out time and space complexity, efficient use of data structures, and writing unit tests. System design is also explicitly assessed, with expectations to discuss trade-offs and build scalable, reliable distributed system designs.
Lifesight Software Engineer candidate reports ↗What pay range should I expect for a Lifesight Software Engineer role?
The provided material does not include any compensation figures for Lifesight Software Engineer roles, so you cannot rely on a specific base or total number from this data. Since compensation can vary by level and location, treat pay as unknown until you have the job posting details or recruiter input.
Lifesight Software Engineer candidate reports ↗Sources & methodology 3 sources ↗
Official role evidence, timestamped platform data and clearly labeled preparation advice.
- 01Lifesight Software Engineer candidate reports ↗
Company-reported rounds, questions and FAQ.
candidate · Accessed 2026-09-22 - 02PracHub Software Engineer practice ↗
PracHub practice material, not company-reported.
platform · Accessed 2026-09-22 - 03PracHub preparation framework ↗
PracHub preparation guidance.
platform · Accessed 2026-09-22