Skip to content

Instantly share code, notes, and snippets.

@ab
Last active January 4, 2024 17:01
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ab/67c6343530c6b8e599f07cedccbcba3d to your computer and use it in GitHub Desktop.
Save ab/67c6343530c6b8e599f07cedccbcba3d to your computer and use it in GitHub Desktop.
Parser for Motorola Mobility security update policies per device | for https://github.com/endoflife-date/endoflife.date/
#!/usr/bin/env python3
"""
usage: motorola_parse_support_dates.py
This script prints info about Motorola phone end of life dates in the YAML
format expected for the endoflife.date website.
See https://en-us.support.motorola.com/app/software-security-update
This script downloads the HTML content from that URL, then looks for a <script>
tag containing a CDATA section that contains a "guidedAssistant" JSON key.
From this minified JavaScript code, we extract the structured JSON information
about Motorola product end of life dates.
If Motorola changes their website format, this script will break.
Right now this dict starts with something like:
{"i":{"c":"GuidedAssistantSecurity","n":"GuidedAssistantSecurity","w":4},"a":{"guid_tree_name":""
And ends with something like:
"channel":1,"isSpider":1}}
"""
import datetime
import json
import re
import sys
import requests
import yaml
from bs4 import BeautifulSoup
URL = "https://en-us.support.motorola.com/app/software-security-update"
KNOWN_STATUSES = {
"Currently receiving regular security updates.",
"Currently receiving monthly security updates.",
}
class MotorolaParseError(ValueError):
pass
# Hack to make sure that we double quote string values in the output YAML
# Define a Quoted class, which uses style = '"' and add representer to yaml
class Quoted(str):
"""
Subclass of str that will be double quoted in YAML output
"""
pass
def quoted_presenter(dumper, data):
return dumper.represent_scalar("tag:yaml.org,2002:str", data, style='"')
yaml.add_representer(Quoted, quoted_presenter)
def parse_date(text: str) -> datetime.date:
try:
return datetime.datetime.strptime(text, "%B, %Y").date()
except ValueError:
sys.stderr.write(f"Failed to parse date: {text!r}\n")
raise
def download_url(url: str) -> str:
"""Download a URL"""
resp = requests.get(url)
resp.raise_for_status()
return resp.text
def get_json_from_html(html: str) -> dict:
"""
Given HTML downloaded from the Motorola website, find the <script> tag with
the JSON blob containing data on phone support status.
Extract the JSON blob and parse it, returning it as a dict.
Note: this a fragile hack and will stop working if Motorola changes their
website design!
"""
soup = BeautifulSoup(html, features="html.parser")
# find all script tags with no src attribute
# (our target script has the data in the tag body)
script_tags = soup.find_all("script", src=False)
# find script tags with a CDATA section
with_scripts = [s for s in script_tags if "<![CDATA[" in s.text]
# should find exactly one tag
if len(with_scripts) == 0:
raise MotorolaParseError("No script tags contain CDATA")
elif len(with_scripts) > 1:
raise MotorolaParseError(">= 2 tags contain CDATA, unsure what to do")
script = with_scripts[0]
# ideally we would use an actual JavaScript parser to find our desired
# content inside this minified JS code. But for now use a pile of regexes.
lines = script.text.split("\n")
# find line containing "guidedAssistant" JSON key
guided_key = '"guidedAssistant"'
targets = [line for line in lines if guided_key in line]
if len(targets) == 0:
raise MotorolaParseError(f"Couldn't find JSON key {guided_key} in JS")
elif len(targets) > 1:
raise MotorolaParseError(f"Found multiple hits for {guided_key} in JS")
line = targets[0]
# sanity check
if not line[-1] == ";":
raise MotorolaParseError(
f"Expected our line to end with ';', not ...{line[:-10]!r}"
)
# match the first and longest (greedy) set of braces { ... }
m = re.search(r"\{.+\}", line)
if not m:
raise MotorolaParseError("Failed to find { ... } in JavaScript line")
raw_json = m.group(0)
try:
data = json.loads(raw_json)
except Exception as err:
raise MotorolaParseError("Failed to parse dict blob as JSON") from err
if not isinstance(data, dict):
raise MotorolaParseError(
f"JSON root has type {type(data)}, expected dict"
)
return data
def extract_release_info(
data: dict, sort_date: bool = True, show_support_col: bool = False
) -> list[dict]:
"""
Given a dict of info pulled from the Motorola website, extract product
release information from the "guidedAssistant" data.
Return a list of dicts suitable for dumping into the releases YAML file.
"""
assert isinstance(data, dict)
for key, value in data.items():
if "guidedAssistant" in value:
questions = value["guidedAssistant"]["questions"]
break
else:
raise MotorolaParseError("Could not find guidedAssistant key in dict")
sys.stderr.write(f"Found {len(questions)} questions\n")
response_label = "Security patch details for all Motorola products"
phone_qs = []
for q in questions:
resps = q.get("responses")
if resps and resps[0]["text"] == response_label:
phone_qs.append(q)
sys.stderr.write(f"Found {len(phone_qs)} phone records\n")
if not phone_qs:
sys.stderr.write("No phones?\n")
raise MotorolaParseError("No phones found in questions list")
phone_info = []
for q in phone_qs:
text = q["taglessText"].replace("\xa0", " ")
lines = text.split("\n")
sys.stderr.write(json.dumps(lines, indent=2) + "\n")
# [
# 'moto g stylus\xa05G (2023)',
# 'Currently receiving regular security updates.',
# 'Device launched on June, 2023',
# 'Security updates will stop on June, 2026\xa0',
# '',
# 'Launched On: Android 13',
# 'Next OS: Android 14',
# '*This device will receive at least bi-monthly SMRs updates',
# '',
# 'Please note: Channels and regions may have different launch dates and support cycle may vary.'
# ]
# used for generating product link
product_id = q["agentText"]
link = f"https://en-us.support.motorola.com/app/software-security-update/g_id/7112/productid/{product_id}"
info = {}
model = Quoted(lines[0])
status = lines[1]
if status not in KNOWN_STATUSES:
sys.stderr.write(f"\nUnexpected status: {status!r}\n\n")
sys.stderr.write("Lines: " + repr(lines) + "\n")
raise MotorolaParseError(f"Unexpected product status {status!r}")
launch = None
eol = None
for line in lines:
if res := re.search(r"^Device launched on (.*)$", line):
launch = res.group(1).strip()
if res := re.search(r"^Security updates will stop on (.*)$", line):
eol = res.group(1).strip()
if not launch:
sys.stderr.write(f"warn: no launch for {model!r}\n")
if not eol:
sys.stderr.write(f"warn: no eol for {model!r}\n")
info = {
"releaseCycle": model,
"releaseDate": parse_date(launch),
"support": True,
"eol": parse_date(eol),
"link": link,
}
if not show_support_col:
del info["support"]
phone_info.append(info)
if sort_date:
phone_info.sort(key=lambda x: x["releaseDate"], reverse=True)
sys.stderr.write("\n\n")
return phone_info
def print_releases(phone_info: list[dict]) -> None:
"""
Print release info as YAML
"""
# hack to get newlines between each list element when dumping as yaml
print("releases:")
for info in phone_info:
print(yaml.dump([info], sort_keys=False))
def main() -> int:
# download webpage
html = download_url(URL)
# find and parse JSON
data = get_json_from_html(html)
# find product info
info = extract_release_info(data=data)
# print as YAML
print_releases(phone_info=info)
return 0
if __name__ == "__main__":
if len(sys.argv) > 1:
print(__doc__.strip())
sys.exit(1)
sys.exit(main())
# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand.
[[package]]
name = "asttokens"
version = "2.4.1"
description = "Annotate AST trees with source code positions"
optional = false
python-versions = "*"
files = [
{file = "asttokens-2.4.1-py2.py3-none-any.whl", hash = "sha256:051ed49c3dcae8913ea7cd08e46a606dba30b79993209636c4875bc1d637bc24"},
{file = "asttokens-2.4.1.tar.gz", hash = "sha256:b03869718ba9a6eb027e134bfdf69f38a236d681c83c160d510768af11254ba0"},
]
[package.dependencies]
six = ">=1.12.0"
[package.extras]
astroid = ["astroid (>=1,<2)", "astroid (>=2,<4)"]
test = ["astroid (>=1,<2)", "astroid (>=2,<4)", "pytest"]
[[package]]
name = "beautifulsoup4"
version = "4.12.2"
description = "Screen-scraping library"
optional = false
python-versions = ">=3.6.0"
files = [
{file = "beautifulsoup4-4.12.2-py3-none-any.whl", hash = "sha256:bd2520ca0d9d7d12694a53d44ac482d181b4ec1888909b035a3dbf40d0f57d4a"},
{file = "beautifulsoup4-4.12.2.tar.gz", hash = "sha256:492bbc69dca35d12daac71c4db1bfff0c876c00ef4a2ffacce226d4638eb72da"},
]
[package.dependencies]
soupsieve = ">1.2"
[package.extras]
html5lib = ["html5lib"]
lxml = ["lxml"]
[[package]]
name = "certifi"
version = "2023.11.17"
description = "Python package for providing Mozilla's CA Bundle."
optional = false
python-versions = ">=3.6"
files = [
{file = "certifi-2023.11.17-py3-none-any.whl", hash = "sha256:e036ab49d5b79556f99cfc2d9320b34cfbe5be05c5871b51de9329f0603b0474"},
{file = "certifi-2023.11.17.tar.gz", hash = "sha256:9b469f3a900bf28dc19b8cfbf8019bf47f7fdd1a65a1d4ffb98fc14166beb4d1"},
]
[[package]]
name = "charset-normalizer"
version = "3.3.2"
description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet."
optional = false
python-versions = ">=3.7.0"
files = [
{file = "charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5"},
{file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3"},
{file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027"},
{file = "charset_normalizer-3.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03"},
{file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d"},
{file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e"},
{file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6"},
{file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5"},
{file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537"},
{file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c"},
{file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12"},
{file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f"},
{file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269"},
{file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519"},
{file = "charset_normalizer-3.3.2-cp310-cp310-win32.whl", hash = "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73"},
{file = "charset_normalizer-3.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09"},
{file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db"},
{file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96"},
{file = "charset_normalizer-3.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e"},
{file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f"},
{file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574"},
{file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4"},
{file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8"},
{file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc"},
{file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae"},
{file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887"},
{file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae"},
{file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce"},
{file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f"},
{file = "charset_normalizer-3.3.2-cp311-cp311-win32.whl", hash = "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab"},
{file = "charset_normalizer-3.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77"},
{file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8"},
{file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b"},
{file = "charset_normalizer-3.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6"},
{file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a"},
{file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389"},
{file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa"},
{file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b"},
{file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed"},
{file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26"},
{file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d"},
{file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068"},
{file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143"},
{file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4"},
{file = "charset_normalizer-3.3.2-cp312-cp312-win32.whl", hash = "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7"},
{file = "charset_normalizer-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001"},
{file = "charset_normalizer-3.3.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c"},
{file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5"},
{file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985"},
{file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6"},
{file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714"},
{file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786"},
{file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5"},
{file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c"},
{file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8"},
{file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711"},
{file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811"},
{file = "charset_normalizer-3.3.2-cp37-cp37m-win32.whl", hash = "sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4"},
{file = "charset_normalizer-3.3.2-cp37-cp37m-win_amd64.whl", hash = "sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99"},
{file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a"},
{file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac"},
{file = "charset_normalizer-3.3.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a"},
{file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33"},
{file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238"},
{file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a"},
{file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2"},
{file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8"},
{file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898"},
{file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99"},
{file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d"},
{file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04"},
{file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087"},
{file = "charset_normalizer-3.3.2-cp38-cp38-win32.whl", hash = "sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25"},
{file = "charset_normalizer-3.3.2-cp38-cp38-win_amd64.whl", hash = "sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b"},
{file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4"},
{file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d"},
{file = "charset_normalizer-3.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0"},
{file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269"},
{file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c"},
{file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519"},
{file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796"},
{file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185"},
{file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c"},
{file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458"},
{file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2"},
{file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8"},
{file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561"},
{file = "charset_normalizer-3.3.2-cp39-cp39-win32.whl", hash = "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f"},
{file = "charset_normalizer-3.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d"},
{file = "charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc"},
]
[[package]]
name = "colorama"
version = "0.4.6"
description = "Cross-platform colored terminal text."
optional = false
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7"
files = [
{file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"},
{file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"},
]
[[package]]
name = "decorator"
version = "5.1.1"
description = "Decorators for Humans"
optional = false
python-versions = ">=3.5"
files = [
{file = "decorator-5.1.1-py3-none-any.whl", hash = "sha256:b8c3f85900b9dc423225913c5aace94729fe1fa9763b38939a95226f02d37186"},
{file = "decorator-5.1.1.tar.gz", hash = "sha256:637996211036b6385ef91435e4fae22989472f9d571faba8927ba8253acbc330"},
]
[[package]]
name = "exceptiongroup"
version = "1.2.0"
description = "Backport of PEP 654 (exception groups)"
optional = false
python-versions = ">=3.7"
files = [
{file = "exceptiongroup-1.2.0-py3-none-any.whl", hash = "sha256:4bfd3996ac73b41e9b9628b04e079f193850720ea5945fc96a08633c66912f14"},
{file = "exceptiongroup-1.2.0.tar.gz", hash = "sha256:91f5c769735f051a4290d52edd0858999b57e5876e9f85937691bd4c9fa3ed68"},
]
[package.extras]
test = ["pytest (>=6)"]
[[package]]
name = "executing"
version = "2.0.1"
description = "Get the currently executing AST node of a frame, and other information"
optional = false
python-versions = ">=3.5"
files = [
{file = "executing-2.0.1-py2.py3-none-any.whl", hash = "sha256:eac49ca94516ccc753f9fb5ce82603156e590b27525a8bc32cce8ae302eb61bc"},
{file = "executing-2.0.1.tar.gz", hash = "sha256:35afe2ce3affba8ee97f2d69927fa823b08b472b7b994e36a52a964b93d16147"},
]
[package.extras]
tests = ["asttokens (>=2.1.0)", "coverage", "coverage-enable-subprocess", "ipython", "littleutils", "pytest", "rich"]
[[package]]
name = "idna"
version = "3.6"
description = "Internationalized Domain Names in Applications (IDNA)"
optional = false
python-versions = ">=3.5"
files = [
{file = "idna-3.6-py3-none-any.whl", hash = "sha256:c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f"},
{file = "idna-3.6.tar.gz", hash = "sha256:9ecdbbd083b06798ae1e86adcbfe8ab1479cf864e4ee30fe4e46a003d12491ca"},
]
[[package]]
name = "ipdb"
version = "0.13.13"
description = "IPython-enabled pdb"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
files = [
{file = "ipdb-0.13.13-py3-none-any.whl", hash = "sha256:45529994741c4ab6d2388bfa5d7b725c2cf7fe9deffabdb8a6113aa5ed449ed4"},
{file = "ipdb-0.13.13.tar.gz", hash = "sha256:e3ac6018ef05126d442af680aad863006ec19d02290561ac88b8b1c0b0cfc726"},
]
[package.dependencies]
decorator = {version = "*", markers = "python_version > \"3.6\""}
ipython = {version = ">=7.31.1", markers = "python_version > \"3.6\""}
tomli = {version = "*", markers = "python_version > \"3.6\" and python_version < \"3.11\""}
[[package]]
name = "ipython"
version = "8.19.0"
description = "IPython: Productive Interactive Computing"
optional = false
python-versions = ">=3.10"
files = [
{file = "ipython-8.19.0-py3-none-any.whl", hash = "sha256:2f55d59370f59d0d2b2212109fe0e6035cfea436b1c0e6150ad2244746272ec5"},
{file = "ipython-8.19.0.tar.gz", hash = "sha256:ac4da4ecf0042fb4e0ce57c60430c2db3c719fa8bdf92f8631d6bd8a5785d1f0"},
]
[package.dependencies]
colorama = {version = "*", markers = "sys_platform == \"win32\""}
decorator = "*"
exceptiongroup = {version = "*", markers = "python_version < \"3.11\""}
jedi = ">=0.16"
matplotlib-inline = "*"
pexpect = {version = ">4.3", markers = "sys_platform != \"win32\""}
prompt-toolkit = ">=3.0.41,<3.1.0"
pygments = ">=2.4.0"
stack-data = "*"
traitlets = ">=5"
[package.extras]
all = ["black", "curio", "docrepr", "exceptiongroup", "ipykernel", "ipyparallel", "ipywidgets", "matplotlib", "matplotlib (!=3.2.0)", "nbconvert", "nbformat", "notebook", "numpy (>=1.23)", "pandas", "pickleshare", "pytest", "pytest-asyncio (<0.22)", "qtconsole", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "stack-data", "testpath", "trio", "typing-extensions"]
black = ["black"]
doc = ["docrepr", "exceptiongroup", "ipykernel", "matplotlib", "pickleshare", "pytest", "pytest-asyncio (<0.22)", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "stack-data", "testpath", "typing-extensions"]
kernel = ["ipykernel"]
nbconvert = ["nbconvert"]
nbformat = ["nbformat"]
notebook = ["ipywidgets", "notebook"]
parallel = ["ipyparallel"]
qtconsole = ["qtconsole"]
test = ["pickleshare", "pytest", "pytest-asyncio (<0.22)", "testpath"]
test-extra = ["curio", "matplotlib (!=3.2.0)", "nbformat", "numpy (>=1.23)", "pandas", "pickleshare", "pytest", "pytest-asyncio (<0.22)", "testpath", "trio"]
[[package]]
name = "jedi"
version = "0.19.1"
description = "An autocompletion tool for Python that can be used for text editors."
optional = false
python-versions = ">=3.6"
files = [
{file = "jedi-0.19.1-py2.py3-none-any.whl", hash = "sha256:e983c654fe5c02867aef4cdfce5a2fbb4a50adc0af145f70504238f18ef5e7e0"},
{file = "jedi-0.19.1.tar.gz", hash = "sha256:cf0496f3651bc65d7174ac1b7d043eff454892c708a87d1b683e57b569927ffd"},
]
[package.dependencies]
parso = ">=0.8.3,<0.9.0"
[package.extras]
docs = ["Jinja2 (==2.11.3)", "MarkupSafe (==1.1.1)", "Pygments (==2.8.1)", "alabaster (==0.7.12)", "babel (==2.9.1)", "chardet (==4.0.0)", "commonmark (==0.8.1)", "docutils (==0.17.1)", "future (==0.18.2)", "idna (==2.10)", "imagesize (==1.2.0)", "mock (==1.0.1)", "packaging (==20.9)", "pyparsing (==2.4.7)", "pytz (==2021.1)", "readthedocs-sphinx-ext (==2.1.4)", "recommonmark (==0.5.0)", "requests (==2.25.1)", "six (==1.15.0)", "snowballstemmer (==2.1.0)", "sphinx (==1.8.5)", "sphinx-rtd-theme (==0.4.3)", "sphinxcontrib-serializinghtml (==1.1.4)", "sphinxcontrib-websupport (==1.2.4)", "urllib3 (==1.26.4)"]
qa = ["flake8 (==5.0.4)", "mypy (==0.971)", "types-setuptools (==67.2.0.1)"]
testing = ["Django", "attrs", "colorama", "docopt", "pytest (<7.0.0)"]
[[package]]
name = "matplotlib-inline"
version = "0.1.6"
description = "Inline Matplotlib backend for Jupyter"
optional = false
python-versions = ">=3.5"
files = [
{file = "matplotlib-inline-0.1.6.tar.gz", hash = "sha256:f887e5f10ba98e8d2b150ddcf4702c1e5f8b3a20005eb0f74bfdbd360ee6f304"},
{file = "matplotlib_inline-0.1.6-py3-none-any.whl", hash = "sha256:f1f41aab5328aa5aaea9b16d083b128102f8712542f819fe7e6a420ff581b311"},
]
[package.dependencies]
traitlets = "*"
[[package]]
name = "parso"
version = "0.8.3"
description = "A Python Parser"
optional = false
python-versions = ">=3.6"
files = [
{file = "parso-0.8.3-py2.py3-none-any.whl", hash = "sha256:c001d4636cd3aecdaf33cbb40aebb59b094be2a74c556778ef5576c175e19e75"},
{file = "parso-0.8.3.tar.gz", hash = "sha256:8c07be290bb59f03588915921e29e8a50002acaf2cdc5fa0e0114f91709fafa0"},
]
[package.extras]
qa = ["flake8 (==3.8.3)", "mypy (==0.782)"]
testing = ["docopt", "pytest (<6.0.0)"]
[[package]]
name = "pexpect"
version = "4.9.0"
description = "Pexpect allows easy control of interactive console applications."
optional = false
python-versions = "*"
files = [
{file = "pexpect-4.9.0-py2.py3-none-any.whl", hash = "sha256:7236d1e080e4936be2dc3e326cec0af72acf9212a7e1d060210e70a47e253523"},
{file = "pexpect-4.9.0.tar.gz", hash = "sha256:ee7d41123f3c9911050ea2c2dac107568dc43b2d3b0c7557a33212c398ead30f"},
]
[package.dependencies]
ptyprocess = ">=0.5"
[[package]]
name = "prompt-toolkit"
version = "3.0.43"
description = "Library for building powerful interactive command lines in Python"
optional = false
python-versions = ">=3.7.0"
files = [
{file = "prompt_toolkit-3.0.43-py3-none-any.whl", hash = "sha256:a11a29cb3bf0a28a387fe5122cdb649816a957cd9261dcedf8c9f1fef33eacf6"},
{file = "prompt_toolkit-3.0.43.tar.gz", hash = "sha256:3527b7af26106cbc65a040bcc84839a3566ec1b051bb0bfe953631e704b0ff7d"},
]
[package.dependencies]
wcwidth = "*"
[[package]]
name = "ptyprocess"
version = "0.7.0"
description = "Run a subprocess in a pseudo terminal"
optional = false
python-versions = "*"
files = [
{file = "ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35"},
{file = "ptyprocess-0.7.0.tar.gz", hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220"},
]
[[package]]
name = "pure-eval"
version = "0.2.2"
description = "Safely evaluate AST nodes without side effects"
optional = false
python-versions = "*"
files = [
{file = "pure_eval-0.2.2-py3-none-any.whl", hash = "sha256:01eaab343580944bc56080ebe0a674b39ec44a945e6d09ba7db3cb8cec289350"},
{file = "pure_eval-0.2.2.tar.gz", hash = "sha256:2b45320af6dfaa1750f543d714b6d1c520a1688dec6fd24d339063ce0aaa9ac3"},
]
[package.extras]
tests = ["pytest"]
[[package]]
name = "pygments"
version = "2.17.2"
description = "Pygments is a syntax highlighting package written in Python."
optional = false
python-versions = ">=3.7"
files = [
{file = "pygments-2.17.2-py3-none-any.whl", hash = "sha256:b27c2826c47d0f3219f29554824c30c5e8945175d888647acd804ddd04af846c"},
{file = "pygments-2.17.2.tar.gz", hash = "sha256:da46cec9fd2de5be3a8a784f434e4c4ab670b4ff54d605c4c2717e9d49c4c367"},
]
[package.extras]
plugins = ["importlib-metadata"]
windows-terminal = ["colorama (>=0.4.6)"]
[[package]]
name = "pyyaml"
version = "6.0.1"
description = "YAML parser and emitter for Python"
optional = false
python-versions = ">=3.6"
files = [
{file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"},
{file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"},
{file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"},
{file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"},
{file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"},
{file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"},
{file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"},
{file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"},
{file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"},
{file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"},
{file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"},
{file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"},
{file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"},
{file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"},
{file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"},
{file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"},
{file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"},
{file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"},
{file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"},
{file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"},
{file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"},
{file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"},
{file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"},
{file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"},
{file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"},
{file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"},
{file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"},
{file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"},
{file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"},
{file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"},
{file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"},
{file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"},
{file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"},
{file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"},
{file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"},
{file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"},
{file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"},
{file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"},
{file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"},
{file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"},
{file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"},
{file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"},
{file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"},
{file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"},
{file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"},
{file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"},
{file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"},
{file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"},
{file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"},
{file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"},
]
[[package]]
name = "requests"
version = "2.31.0"
description = "Python HTTP for Humans."
optional = false
python-versions = ">=3.7"
files = [
{file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"},
{file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"},
]
[package.dependencies]
certifi = ">=2017.4.17"
charset-normalizer = ">=2,<4"
idna = ">=2.5,<4"
urllib3 = ">=1.21.1,<3"
[package.extras]
socks = ["PySocks (>=1.5.6,!=1.5.7)"]
use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"]
[[package]]
name = "six"
version = "1.16.0"
description = "Python 2 and 3 compatibility utilities"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*"
files = [
{file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"},
{file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"},
]
[[package]]
name = "soupsieve"
version = "2.5"
description = "A modern CSS selector implementation for Beautiful Soup."
optional = false
python-versions = ">=3.8"
files = [
{file = "soupsieve-2.5-py3-none-any.whl", hash = "sha256:eaa337ff55a1579b6549dc679565eac1e3d000563bcb1c8ab0d0fefbc0c2cdc7"},
{file = "soupsieve-2.5.tar.gz", hash = "sha256:5663d5a7b3bfaeee0bc4372e7fc48f9cff4940b3eec54a6451cc5299f1097690"},
]
[[package]]
name = "stack-data"
version = "0.6.3"
description = "Extract data from python stack frames and tracebacks for informative displays"
optional = false
python-versions = "*"
files = [
{file = "stack_data-0.6.3-py3-none-any.whl", hash = "sha256:d5558e0c25a4cb0853cddad3d77da9891a08cb85dd9f9f91b9f8cd66e511e695"},
{file = "stack_data-0.6.3.tar.gz", hash = "sha256:836a778de4fec4dcd1dcd89ed8abff8a221f58308462e1c4aa2a3cf30148f0b9"},
]
[package.dependencies]
asttokens = ">=2.1.0"
executing = ">=1.2.0"
pure-eval = "*"
[package.extras]
tests = ["cython", "littleutils", "pygments", "pytest", "typeguard"]
[[package]]
name = "tomli"
version = "2.0.1"
description = "A lil' TOML parser"
optional = false
python-versions = ">=3.7"
files = [
{file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"},
{file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"},
]
[[package]]
name = "traitlets"
version = "5.14.1"
description = "Traitlets Python configuration system"
optional = false
python-versions = ">=3.8"
files = [
{file = "traitlets-5.14.1-py3-none-any.whl", hash = "sha256:2e5a030e6eff91737c643231bfcf04a65b0132078dad75e4936700b213652e74"},
{file = "traitlets-5.14.1.tar.gz", hash = "sha256:8585105b371a04b8316a43d5ce29c098575c2e477850b62b848b964f1444527e"},
]
[package.extras]
docs = ["myst-parser", "pydata-sphinx-theme", "sphinx"]
test = ["argcomplete (>=3.0.3)", "mypy (>=1.7.0)", "pre-commit", "pytest (>=7.0,<7.5)", "pytest-mock", "pytest-mypy-testing"]
[[package]]
name = "urllib3"
version = "2.1.0"
description = "HTTP library with thread-safe connection pooling, file post, and more."
optional = false
python-versions = ">=3.8"
files = [
{file = "urllib3-2.1.0-py3-none-any.whl", hash = "sha256:55901e917a5896a349ff771be919f8bd99aff50b79fe58fec595eb37bbc56bb3"},
{file = "urllib3-2.1.0.tar.gz", hash = "sha256:df7aa8afb0148fa78488e7899b2c59b5f4ffcfa82e6c54ccb9dd37c1d7b52d54"},
]
[package.extras]
brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"]
socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"]
zstd = ["zstandard (>=0.18.0)"]
[[package]]
name = "wcwidth"
version = "0.2.12"
description = "Measures the displayed width of unicode strings in a terminal"
optional = false
python-versions = "*"
files = [
{file = "wcwidth-0.2.12-py2.py3-none-any.whl", hash = "sha256:f26ec43d96c8cbfed76a5075dac87680124fa84e0855195a6184da9c187f133c"},
{file = "wcwidth-0.2.12.tar.gz", hash = "sha256:f01c104efdf57971bcb756f054dd58ddec5204dd15fa31d6503ea57947d97c02"},
]
[metadata]
lock-version = "2.0"
python-versions = "^3.10"
content-hash = "2e6a89482b0188c4498fa6aa5e2c3e59217ecc6c8dd423b314abebfb55ed1d97"
[tool.poetry]
name = "motorola-parse-endoflife"
version = "0.1.0"
description = ""
authors = ["Andy Brody <git@abrody.com>"]
[tool.poetry.dependencies]
python = "^3.10"
beautifulsoup4 = "^4.12.2"
requests = "^2.31.0"
pyyaml = "^6.0.1"
[tool.poetry.group.dev.dependencies]
ipython = "^8.19.0"
ipdb = "^0.13.13"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
<!DOCTYPE html>
<html class="no-js" lang="en-US" style="overflow-x: hidden !important;">
<head>
<script type="text/javascript">
//var console = {};
console.info= function() {};
console.dir = function() {};
console.error = function() {};
//console.log = function() {};
console.warn = function() {};
</script>
<link rel="icon" href="/euf/assets/mcp/img/motorola-logo.png" type="image/png"/>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/euf/assets/motorola_v3/styles/css/slick.css">
<link rel="stylesheet" href="/euf/assets/motorola_v3/styles/css/progress-keyframe.css">
<link rel="stylesheet" href="/euf/assets/motorola_v3/styles/css/style.css">
<script src="/euf/assets/motorola_v3/js/jquery.min.js"></script>
<script src="/euf/assets/motorola_v3/js/slick.min.js"></script>
<link rel="stylesheet" href="/euf/assets/motorola_v3/styles/css/yui3-panel.css">
<script src="https://knola.lenovo.com/js/business/feedBack/index.js"></script>
<script src="https://knola.lenovo.com/js/business/answer/index.js"></script>
<script src="https://knola.lenovo.com/js/config.js"></script>
<meta name="google-site-verification" content="_glLX-b2AMixqwV_9A2ljXDZT8kAq3IEVTpxbz9eZqw" /> <meta name="robots" content="INDEX,FOLLOW"><meta lang="en" name="description" content="Visit the customer support page to view user guides, FAQs, bluetooth pairing, software downloads, drivers, tutorials and to get repair and contact us information."/><meta lang="en" name="keywords" content=', customer support, motorola cell phone, user guide, manual, FAQs, Email Set Up, repair, Internet settings, sim card, drivers, bluetooth,'/><link rel='canonical' href='https://en-us.support.motorola.com/app/software-security-update'/><title>Security Updates | Motorola Support US</title> <!-- Google Tag Manager --> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-NFRM');</script> <!-- End Google Tag Manager --> <script type="text/javascript"> (function() { window._uxa = window._uxa || []; if (typeof CS_CONF === 'undefined') { window._uxa.push(['setPath', window.location.pathname + window.location.hash.replace('#', '?__')]); var mt = document.createElement("script"); mt.type = "text/javascript"; mt.async = true; mt.src = "//t.contentsquare.net/uxa/eda2303235939.js"; document.getElementsByTagName("head")[0].appendChild(mt); } else { window._uxa.push(['trackPageview', window.location.pathname + window.location.hash.replace('#', '?__')]); } })(); </script> <script type="text/javascript">
$(document).ready(function () {
$("#search_support").focus(function () {
$(this).css("background-image", "none");
}).blur(function () {
if ($(this).val() == "") {
$(this).css("background-image", "url(' " + $(this).attr('bgImg') + "')");
}
});
});
</script>
<script type="text/javascript">
function gaTracker(id) {
$.getScript('//www.google-analytics.com/analytics.js'); // jQuery shortcut
window.ga = window.ga || function () {
(ga.q = ga.q || []).push(arguments)
};
ga.l = +new Date;
ga('create', id, 'auto');
//ga('send', 'pageview');
}
// Function to track a virtual page view
function gaTrack(path, title,imei='',error='') {
ga('set', { page: path, title: title });
window._uxa = window._uxa || [];
if(RightNow.Profile.contactID()!=''){
ga('set', 'dimension1', RightNow.Profile.contactID());
window._uxa.push(['setCustomVariable', 1, 'c_id', RightNow.Profile.contactID()]);
}
if(imei!='') {
ga('set', 'dimension2', imei);
window._uxa.push(['setCustomVariable', 2, 'imei', imei]);
}
if(error!='') {
ga('set', 'dimension3', error);
window._uxa.push(['setCustomVariable', 3, 'error', error]);
}
ga('send', 'pageview');
window._uxa.push(['trackPageview', path ]);
}
// Initiate the tracker after app has loaded
gaTracker('UA-29445500-8');
</script>
<!-- WebAnalytics :: Start --><meta name="DCSext.locale" content="en_US"/><meta name="WT.z_site_type" content="2" /><meta xml:lang="en" name="DCSext.b2csupport" content="1"><meta name="Publisher" content="Motorola" /><meta name="Author" content="Motorola Mobility, Inc." /><!-- WebAnalytics :: End --> <meta name="WT.ti" content="Product Support - US-EN - SOFTWARE SECURITY UPDATE"/><meta name="WT.cg_n" content="Product Support"/><meta name="WT.cg_s" content="SOFTWARE SECURITY UPDATE"/>
<style type='text/css'>
<!--
.rn_ScreenReaderOnly{position:absolute; height:1px; left:-10000px; overflow:hidden; top:auto; width:1px;}
.rn_Hidden{display:none !important;}
--></style>
<base href='https://en-us.support.motorola.com/euf/generated/optimized/1704328169/themes/standard/'/>
<link href='/euf/generated/optimized/1704328169/templates/motorola.themes.standard.css' rel='stylesheet' type='text/css' media='all'/>
<link href='/euf/generated/optimized/1704328169/pages/software-security-update.themes.standard.css' rel='stylesheet' type='text/css' media='all'/>
</head>
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NFRM" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript><body class="background-unique">
<header class="header">
<div class="header-wrapper container-center">
<a href="/" class="logo-wrapper">
<img src="/euf/assets/motorola_v3/assets/motorola-logo-white.png" alt="logo" class="header-logo">
</a>
<!-- Uncommenting now for code migration and testing-- "by Suvrajit"
<div class="header-search__container">
<svg class="header-search__icon" xmlns="http://www.w3.org/2000/svg" width="23.113" height="23.311"
viewBox="0 0 23.113 23.311">
<path id="Union_13" data-name="Union 13"
d="M16.147,16.346l4.966,4.966ZM0,9.463a9.463,9.463,0,1,1,9.463,9.463A9.463,9.463,0,0,1,0,9.463Z"
transform="translate(1 1)" fill="none" stroke="#fff" stroke-linejoin="round" stroke-width="2" />
</svg>
<input class="header-search__input" placeholder="e.g My screen froze" />
</div>-->
<div class="menu-drawer">
<nav class="menu-navigation">
<div class="menu-link__wrapper">
<a href="/app/home" class="menu-link">Support Home</a>
</div>
<div class="menu-link__wrapper">
<a class="menu-link">Shop</a>
<div class="menu-categories__wrapper">
<a href="http://www.motorola.com/us/" class="menu-categories">Shop Now</a>
<a href="/app/product_returns/g_id/3612" class="menu-categories">Returns</a>
<a href="/app/mcp/track-my-stuff-landing" class="menu-categories">Order Status</a>
</div>
</div>
<div class="menu-link__wrapper">
<a class="menu-link">Repair</a>
<div class="menu-categories__wrapper">
<a href="/app/repair-faqs" class="menu-categories">Repair Options</a>
<a href="/app/repair-faqs/category/how-track-service" class="menu-categories">Track a Repair</a>
<a href="/app/repair-faqs/category/how-submit-repair" class="menu-categories">Submit a Repair</a>
<a href="http://www.motorola.com/device-legal" class="menu-categories">Warranty Terms and Conditions</a>
<a href="https://www.motorola.com/us/moto-care" class="menu-categories">Moto Care Extended Warranty</a>
</div>
</div>
<div class="menu-link__wrapper">
<a class="menu-link">Software</a>
<div class="menu-categories__wrapper">
<a href="/app/software-upgrade" class="menu-categories">Software Upgrade News</a>
<a href="/app/usb-drivers" class="menu-categories">Drivers</a>
<a href="/app/software-security-update/g_id/7112" class="menu-categories">Security Updates</a>
<a href="/app/rsa" class="menu-categories">Rescue and Smart Assistant</a>
</div>
</div>
<div class="menu-link__wrapper">
<a href="/app/mcp/contactus" class="menu-link">Contact Us</a>
</div>
</nav> <a href="/app/mcp/my_devices" class="my-products-header__wrapper">
<img class="my-products-header__icon" src="/euf/assets/motorola_v3/assets/my-products.png" alt="" srcset="">
<span class="my-products-header__text">My Products</span>
</a>
<!--<img class="menu-close" src="/euf/assets/motorola_v3/assets/icon-close-menu.svg" alt="icon close menu" />-->
</div>
<a href="/app/utils/welcome?p_next_page=software-security-update" class="user-login__wrapper">
<img src="/euf/assets/motorola_v3/assets/user-profile.png" alt="icon user profile" class="user-login__icon">
<span class="user-login__text">Sign in</span>
</a>
<!-- Uncommenting now for code migration and testing-- "by Suvrajit"
<img class="header-moli" src="https://en-gb.support.motorola.com/euf/assets/motorola_v3/assets/moli-mobile.svg" alt="moli" />-->
<img class="menu-close" src="/euf/assets/motorola_v3/assets/icon-close-menu.svg" alt="icon close menu" />
<img class="menu-hamburguer" src="/euf/assets/motorola_v3/assets/menu-hamburguer.svg" alt="menu hamburguer" />
</div>
</header>
<!-- Security banner -->
<div class="container-security">
<h1 class="security-banner__text" >Security Updates</h1>
<img class="security-banner__img" src="https://en-gb.support.motorola.com/euf/assets/motorola_v3/assets/images/security-img-banner.png" alt="Image Phone">
</div>
<!-- Security Tabs -->
<div class="container-btn">
<button class="security-btn__tab -active" data-name="security__updates">Details</button>
<button class="security-btn__tab -product" data-name="security__products">Select your product</button>
</div>
<!-- Section Details -->
<div class="security-content__wrapper">
<div class="security__content -active" data-name="security__updates">
<div class="security_center">
<section class="security-section" id="security__top">
<img class="security-section__img" src="https://en-gb.support.motorola.com/euf/assets/motorola_v3/assets/images/security-img-1.png" alt="Woman Image">
<div class="security-text__wrapper">
<h2 class="security-section__title">Android Security Updates</h2>
<p class="security-section__text">
Motorola provides security updates that include patches released by Google and <br> third parties that address security vulnerabilities and threats.
<br>
<br>
Use the "Select your product" tab for details about the security update support cycle for your product.
</p>
</div>
</section>
<section class="security-section security-invert" id="security__top">
<img class="security-section__img" src="https://en-gb.support.motorola.com/euf/assets/motorola_v3/assets/images/security-img-2.png" alt="People Image">
<div class="security-text__wrapper security-wrapper__invert">
<h2 class="security-section__title">Security Update Details</h2>
<p class="security-section__text">
To see more details on security updates, including the list of fixes, please <a class="security-text__link" href="https://motorola-global-portal.custhelp.com/app/software-security-update_link/g_id/6853">click here</a>.
<br>
<br>
To see details on Motorola software vulnerabilities, <a class="security-text__link" href="https://en-us.support.motorola.com/app/answers/detail/a_id/175353">click here</a>.
</p>
</div>
</section>
<section class="security-section" id="security__top">
<img class="security-section__img" src="https://en-gb.support.motorola.com/euf/assets/motorola_v3/assets/images/security-img-3.png" alt="Phone Image">
<div class="security-text__wrapper">
<h2 class="security-section__title">Reporting a security vulnerability</h2>
<p class="security-section__text">
If you have identified a potential security vulnerability in any Motorola phone and you would like to submit a security vulnerability report, please <a class="security-text__link" href="https://motorola-global-portal.custhelp.com/app/emailform">click here</a>.
</p>
</div>
</section>
<section class="security-section security-invert" id="security__top">
<img class="security-section__img" src="https://en-gb.support.motorola.com/euf/assets/motorola_v3/assets/images/security-img-4.png" alt="Phone Image">
<div class="security-text__wrapper security-wrapper__invert">
<h2 class="security-section__title">Product availability</h2>
<p class="security-section__text">
Availability of products varies by region. <br>Not all products will be available in all regions. <br>Devices not listed will no longer receive security or OS updates.
</p>
</div>
</section><script src='/euf/assets/motorola_v3/js/fontawesome.js' ></script>
<div id="rn_AnswerFeedback_3" class="rn_AnswerFeedback rn_AnswerFeedback">
<div id="rn_AnswerFeedback_3_AnswerFeedbackControl" class="rn_AnswerFeedbackControl">
<h2 class="rn_Title">Was this page helpful?</h2>
<div id="rn_AnswerFeedback_3_RatingButtons" class="rn_RatingButtons">
<button id="rn_AnswerFeedback_3_RatingYesButton" type="button">Yes</button>
<button id="rn_AnswerFeedback_3_RatingNoButton" type="button">No</button>
</div>
</div>
</div>
</div>
</div>
<div class="security__content" data-name="security__products">
<div id="rn_GuidedAssistantSecurity_4" class="shelf-product container-center guide__container">
<a id="rn_GuidedAssistantSecurity_4_SamePageAnchor"></a>
<div id="rn_GuidedAssistantSecurity_4_Guide7112" class="rn_Guide">
<section class="shelf-product container-center security-adjust__title" id="rn_title_container">
<div class="shelf-product__title-wrapper" id="rn_title">
<img class="rn_Hidden shelf-security__arrow-back" src="/euf/assets/motorola_v3/assets/icons/icon-arrow-back.png" id="rn_GuidedAssistantSecurity_4_BackButton"/>
<h3 id="rn_GuidedAssistantSecurity_4_Question7112_1_Heading" class="shelf-product__title security-adjust__title"><p>Select your product family</p> </h3>
</div>
</section>
<div id="rn_GuidedAssistantSecurity_4_Question7112_1" class="rn_Node rn_Question product_content">
<div id="rn_GuidedAssistantSecurity_4_Response7112_1" class="shelf-product__container">
<div class="shelf-product__image-wrapper">
<input type="image" class="shelf-product__image" src="/ci/fattach/get/77257978/1645130250" alt="Razr Family Image" data-level="1" data-guide="7112" data-question="1" data-response="4" id="rn_GuidedAssistantSecurity_4_Response7112_1_4" name="rn_GuidedAssistantSecurity_4_ImageResponse7112_1" value="4">
<span class="shelf-product__text"> moto g family </span>
</input>
</div>
<div class="shelf-product__image-wrapper">
<input type="image" class="shelf-product__image" src="/ci/fattach/get/77257977/1645130250" alt="Razr Family Image" data-level="1" data-guide="7112" data-question="1" data-response="5" id="rn_GuidedAssistantSecurity_4_Response7112_1_5" name="rn_GuidedAssistantSecurity_4_ImageResponse7112_1" value="5">
<span class="shelf-product__text"> moto e family </span>
</input>
</div>
<div class="shelf-product__image-wrapper">
<input type="image" class="shelf-product__image" src="/ci/fattach/get/77257979/1645130250" alt="Razr Family Image" data-level="1" data-guide="7112" data-question="1" data-response="2" id="rn_GuidedAssistantSecurity_4_Response7112_1_2" name="rn_GuidedAssistantSecurity_4_ImageResponse7112_1" value="2">
<span class="shelf-product__text"> motorola edge family </span>
</input>
</div>
<div class="shelf-product__image-wrapper">
<input type="image" class="shelf-product__image" src="/ci/fattach/get/77257981/1645130250" alt="Razr Family Image" data-level="1" data-guide="7112" data-question="1" data-response="7" id="rn_GuidedAssistantSecurity_4_Response7112_1_7" name="rn_GuidedAssistantSecurity_4_ImageResponse7112_1" value="7">
<span class="shelf-product__text"> motorola razr family </span>
</input>
</div>
<div class="shelf-product__image-wrapper">
<input type="image" class="shelf-product__image" src="/ci/fattach/get/80354590/1675821910" alt="Razr Family Image" data-level="1" data-guide="7112" data-question="1" data-response="14" id="rn_GuidedAssistantSecurity_4_Response7112_1_14" name="rn_GuidedAssistantSecurity_4_ImageResponse7112_1" value="14">
<span class="shelf-product__text"> ThinkPhone by motorola </span>
</input>
</div>
</div>
</div>
</div>
</div>
<div id="security__content_answer_feedback" style="display:none">
<script src='/euf/assets/motorola_v3/js/fontawesome.js' ></script>
<div id="rn_AnswerFeedback_5" class="rn_AnswerFeedback rn_AnswerFeedback">
<div id="rn_AnswerFeedback_5_AnswerFeedbackControl" class="rn_AnswerFeedbackControl">
<h2 class="rn_Title">Was this page helpful?</h2>
<div id="rn_AnswerFeedback_5_RatingButtons" class="rn_RatingButtons">
<button id="rn_AnswerFeedback_5_RatingYesButton" type="button">Yes</button>
<button id="rn_AnswerFeedback_5_RatingNoButton" type="button">No</button>
</div>
</div>
</div>
</div>
</div>
<section class="security-information__wrapper"> <h2 class="security-information__title">An important note:</h2> <p class="security-information__text"> The information contained herein is provided for information purposes only and is intended only to describe Motorola Mobility’s current plans <br>regarding potential security updates on its Android-powered devices. The information communicated is not a commitment or an obligation of Motorola Mobility.<br> <br>Motorola Mobility reserves the right to change the content and timing of any software release without further notification. <br><br>The list of fixes provided by a specific version or software update of the Android operating system may vary by device.The list of products targeting <br>each security update cycle is subject to change as the regular support period expires.Some carriers may only support different cycles of updates for the <br>list of products listed above. Regular maintenance versions and/or OS upgrades may cause delays to release security patch updates. Despite Motorola's <br>concern for security matters, the schedule and release of security patch updates may vary depending on the third parties, regions, products, and channels. </p> </section>
<footer>
<!-- Map Site Mobile -->
<div class="accordion-mobile">
<div class="container-map-mobile">
<div class="box"> <input type="checkbox" name="check" id="check-1" class="toggle-map-mobile" /> <label for="check-1" class="label-map-mobile box-sizing select">PRODUCTS</label> <div class="content-map-mobile">
<li><a class="map-link" href="https://www.motorola.com/us/specials">Special Offers</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/smartphones-razr-family">Razr Family</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/motorola-edge-family">Motorola Edge Family</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/products/moto-g-family">Moto G Family</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/smartphones-motorola-one-5g-ace/p?skuId=537">Motorola One 5G ACE</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/moto360/p">Moto 360</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/products/moto-smartphones">All Moto Phones</a></li>
</div> </div>
<div class="box"> <input type="checkbox" name="check" id="check-2" class="toggle-map-mobile" /> <label for="check-2" class="label-map-mobile box-sizing select">MOTOROLA HOME</label> <div class="content-map-mobile">
<li><a class="map-link" href="https://www.motorola.com/us/cases-and-protection">Cases and Protection</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/motorola-power-and-charger">Power & Charging</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/motorola-wearables">Wearables</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/motorola-headphones">Headphones</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/motorola-portable-speakers">Portable Speakers</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/motorola-auto-accessories">Auto Accessories</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/motorola-smart-nursery-and-monitors">Smart Nursery and Monitors</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/motorola-security-and-surveillance">Security and Surveillance</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/modems-routers">Modems + Routers</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/motorola-home-and-office-phones">Home and Office phones</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/motorola-outdoor-products">Outdoor Products</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/motorola-all-accessories">All Accessories</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/motorola-all-smart-products">All Smart Products</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/motorola-all-electronics">All Electronics</a></li>
</div> </div>
<div class="box"> <input type="checkbox" name="check" id="check-3" class="toggle-map-mobile" /> <label for="check-3" class="label-map-mobile box-sizing select">SUPPORT</label> <div class="content-map-mobile">
<li><a class="map-link" href="/app/home/">Product Support</a></li>
<li><a class="map-link" href="https://forums.motorola.com/pages/home">Forums</a></li>
<li><a class="map-link" href="/app/mcp/track-my-stuff-landing">Order Status</a></li>
<li><a class="map-link" href="/app/mcp/contactus">Contact Us</a></li>
<li><a class="map-link" href="https://signup.cj.com/member/signup/publisher/?cid=4057709#/branded?_k=0hta5e">Affiliate Program</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/financing">Financing</a></li>
</div> </div>
<div class="box"> <input type="checkbox" name="check" id="check-4" class="toggle-map-mobile" /> <label for="check-4" class="label-map-mobile box-sizing select">ABOUT</label> <div class="content-map-mobile">
<li><a class="map-link" href="https://www.motorola.com/us/about">Motorola</a></li>
<li><a class="map-link" href="https://www.lenovo.com/">Lenovo</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/about/corporate-responsibility">Responsibility</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/content/licensing">Licensing</a></li>
<li><a class="map-link" href="https://www.motorola.com/blog/en-us">News</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/about/corporate-responsibility-environment">Environment</a></li>
<li><a class="map-link" href="https://lenovocareers.com/areas-mobile.html">Careers</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/legal/privacy-policy">Privacy Policy</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/legal/terms-of-sale">Terms of sale</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/legal/terms-of-use">Terms of use</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/legal/product-privacy">Product privacy</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/about/motorola-executive-team">Executive Team</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/about/motorola-mobility-foundation">Foundation</a></li>
<li><a class="map-link" href="https://pages.motorola-mail.com/registration/">Get Updates</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/about/innovation">Innovation</a></li>
</div> </div>
</div>
</div>
<!-- Map Site --><div class="map-menu">
<ul class="map-list">
<h3 class="map-title">Products</h3>
<li><a class="map-link" href="https://www.motorola.com/us/specials">Special Offers</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/smartphones-razr-family">Razr Family</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/motorola-edge-family">Motorola Edge Family</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/products/moto-g-family">Moto G Family</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/smartphones-motorola-one-5g-ace/p?skuId=537">Motorola One 5G ACE</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/moto360/p">Moto 360</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/products/moto-smartphones">All Moto Phones</a></li>
</ul>
<ul class="map-list">
<h3 class="map-title">Motorola Home</h3>
<li><a class="map-link" href="https://www.motorola.com/us/cases-and-protection">Cases and Protection</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/motorola-power-and-charger">Power & Charging</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/motorola-wearables">Wearables</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/motorola-headphones">Headphones</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/motorola-portable-speakers">Portable Speakers</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/motorola-auto-accessories">Auto Accessories</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/motorola-smart-nursery-and-monitors">Smart Nursery and Monitors</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/motorola-security-and-surveillance">Security and Surveillance</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/modems-routers">Modems + Routers</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/motorola-home-and-office-phones">Home and Office phones</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/motorola-outdoor-products">Outdoor Products</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/motorola-all-accessories">All Accessories</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/motorola-all-smart-products">All Smart Products</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/motorola-all-electronics">All Electronics</a></li>
</ul>
<ul class="map-list">
<h3 class="map-title">Support</h3>
<li><a class="map-link" href="/app/home/">Product Support</a></li>
<li><a class="map-link" href="https://forums.motorola.com/pages/home">Forums</a></li>
<li><a class="map-link" href="/app/mcp/track-my-stuff-landing">Order Status</a></li>
<li><a class="map-link" href="/app/mcp/contactus">Contact Us</a></li>
<li><a class="map-link" href="https://signup.cj.com/member/signup/publisher/?cid=4057709#/branded?_k=0hta5e">Affiliate Program</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/financing">Financing</a></li>
<li><a class="map-link" href="https://www.motorola-support.com/us-en/">Interactive Tutorials</a></li>
</ul>
<ul class="map-list">
<h3 class="map-title">About</h3>
<li><a class="map-link" href="https://www.motorola.com/us/about">Motorola</a></li>
<li><a class="map-link" href="https://www.lenovo.com/">Lenovo</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/about/corporate-responsibility">Responsibility</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/content/licensing">Licensing</a></li>
<li><a class="map-link" href="https://www.motorola.com/blog/en-us">News</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/about/corporate-responsibility-environment">Environment</a></li>
<li><a class="map-link" href="https://jobs.lenovo.com/en_US/careers">Careers</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/legal/privacy-policy">Privacy Policy</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/legal/terms-of-sale">Terms of sale</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/legal/terms-of-use">Terms of use</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/legal/product-privacy">Product privacy</a></li>
<li><a class="map-link" href="https://www.lenovo.com/us/en/lenovo-responds-covid-19">Covid Response</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/about/motorola-executive-team">Executive Team</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/about/motorola-mobility-foundation">Foundation</a></li>
<li><a class="map-link" href="https://cloud.motorola-mail.com/registration/">Get Updates</a></li>
<li><a class="map-link" href="https://www.motorola.com/us/about/innovation">Innovation</a></li>
</ul>
</div> <!-- DropDown Footer -->
<div class="btn-dropdown"><button class="map-button select">more information</button> </div>
<div class="container-center box-sizing footer-container">
<div class="footer-wrapper-text">
<img class="footer-motorola-logo" src="/euf/assets/motorola_v3/assets/logos/motorola-logo.svg" alt="Motorola Logo" />
<div class="footer-text footer-text--left"> <h5 class="footer-title">©2024 Motorola Mobility LLC. All Rights Reserved</h5>
<br/>
<p> MOTOROLA, the Stylized M Logo, MOTO and the MOTO family of marks are trademarks of Motorola Trademark Holdings, LLC. LENOVO is a trademark of Lenovo. All other trademarks are the property of their respective owners. </p>
<br/>
<p> Welcome to Motorola. Shop our Android smartphones, including the new razr, edge+, moto g stylus, moto g power, and more. </p>
<br/>
<p> All mobile phones are designed and manufactured by/for Motorola Mobility LLC, a wholly owned subsidiary of Lenovo.</p>
<br/>
<p> Expedited shipping: Some orders with multiple products and with anticipated inventory won't be available for Expedited shipping, if you don't see the option at checkout, your order will be sent with normal ground delivery </p> </div>
</div>
<div class="footer-location">
<div class="footer-wrapper-flag"> <img class="footer-flag-usa" src="/euf/assets/motorola_v3/assets/logos/flag-usa.png" alt="Flag" /> <span class="footer-link">USA &ensp;| <a id="link" href="https://www.motorola.com/country-selector"> Change Location </a></span > </div>
<span class="footer-text footer-text--right"><p>
<p> Theoretical max speeds based on 5G mmwave technology and eight channel carrier aggregation (8cc). Actual speeds vary based on many factors including network configuration, signal strength, network congestion, physical obstructions, and weather. 5G network coverage (available in certain areas in 2020, expanding after that). </p>
<br/>
<p> Moto Care T&Cs - </p>
<br/>
<p> * Exclusions and limitations apply. Please read the terms and conditions for details that include exclusions, limitations, how to make a claim, cancel coverage, and list of coverage providers. For a complete list of exclusions, read the detailed terms and conditions <a href= "https://www.motorola.com/us/legal/extended-warranty-07-2015">here.</a> </p>
<br/>
<p> † If you purchase Moto Care Accident Protection within 30 days of receiving your device, coverage begins on the date you purchased your device. </p>
<br/>
<p> ‡ Secure deposit required for advance exchange. Subject to device availability and terms. You will receive a certified refurbished, like-new device that has passed stringent software and hardware tests. </p>
</p> </span>
</div>
</div>
</div>
<div class="footer-botton-mobile">
<h5 class="footer-title-mobile"> ©2024 Motorola Mobility LLC. All Rights Reserved </h5>
</div>
</footer><div class="loader" style="display: none;"></div>
<script>var YUI_config={"fetchCSS":false,"modules":{"RightNowTreeView":"/euf/core/3.9/js/4.54/min/modules/ui/treeview.js","RightNowTreeViewDialog":"/euf/core/3.9/js/4.54/min/modules/ui/treeviewdialog.js","RightNowTreeViewDropdown":"/euf/core/3.9/js/4.54/min/modules/ui/treeviewdropdown.js"},"lang":["en-US","en-US"],"injected":true,"comboBase":"//motorola-global-portal.widget.custhelp.com/ci/cache/yuiCombo/","groups":{"gallery-treeview":{"base":"/rnt/rnw/yui_3.18/gallery-treeview/","modules":{"gallery-treeview":{"path":"gallery-treeview-min.js"}}}}};</script>
<script type="text/javascript" src="/euf/core/3.9/js/4.54/min/RightNow.js"></script>
<script type="text/javascript" src="/euf/generated/optimized/1704328169/templates/motorola.35cb144f07945eebe7fcd816a59d0b5f.js"></script>
<script type="text/javascript" src="/euf/generated/optimized/1704328169/pages/software-security-update.bce85e70f351e36aaf7326570f84523f.js"></script>
<script>
/* <![CDATA[ */
RightNow.Env=(function(){var _props={module:'standard',coreAssets:'/euf/core/3.9/',yuiCore:'/rnt/rnw/yui_3.18/',profileData:{"isLoggedIn":false,"previouslySeenEmail":null}};return function(prop){return _props[prop];};})();RightNow.Interface.setMessagebase(function(){return {"ATTRIBUTES_LC_LBL":"attributes","ATTRIBUTE_HAVENT_SPECIFIED_VALID_IT_LBL":" Value for '%s' attribute is a number and you haven't specified a valid value for it.","BACK_LBL":"Back","BEG_DIALOG_PLS_DISMISS_DIALOG_BEF_MSG":"Beginning of dialog, please dismiss dialog before continuing","CHANGED_LBL":"Changed","CLOSE_CMD":"Close","COL_SAVE_ED_ERR_L_INV_E_PERMISSIONS_MSG":"Widget changes could not be saved due to errors while saving. Please check the file permissions.","DIALOG_LBL":"dialog","DIALOG_PLEASE_READ_TEXT_DIALOG_MSG_MSG":"dialog, please read above text for dialog message","END_DIALOG_PLS_DISMISS_DIALOG_BEF_MSG":"End of dialog, please dismiss dialog before continuing","ERROR_LBL":"Error","ERRORS_LBL":"Errors","ERROR_PCT_S_LBL":"Error: %s","ERROR_REQUEST_ACTION_COMPLETED_MSG":"There was an error with the request and the action could not be completed.","ERR_SUBMITTING_FORM_DUE_INV_INPUT_LBL":"There was an error submitting the form due to invalid input","ERR_SUBMITTING_SEARCH_MSG":"There was a problem with your request. Please change your search terms and try again.","HELP_LBL":"Help","INFORMATION_LBL":"Information","INFORMATION_S_LBL":"Information: %s","OK_LBL":"OK","PCT_S_ATTRIB_REQD_HAVENT_VALUE_MSG":"The '%s' attribute is required and you haven't specified a value for it.","PG_COL_SAVE_ED_ERR_L_INV_E_PERMISSIONS_MSG":"Widget changes of page could not be saved due to errors while saving. Please check the page file permissions.","REVEALED_DISP_TB_DD_OP_ADDTL_T_EXPOSED_MSG":"Note: The widget, when revealed, can be inspected, but you may need to perform additional actions for it to be exposed.","SOME_INST_ID_BUT_SEE_ITS_SATTRIBUTESS_MSG":"Some or all instances of this widget are hidden, but you can see its %sattributes%s.","SUCCESS_S_LBL":"Success: %s","TEMPL_COL_SAVE_ED_ERR_INV_TEMPL_PRMSSNS_MSG":"Widget changes of template could not be saved due to errors while saving. Please check the template file permissions.","THIS_WIDGET_HAS_NO_ATTRIBUTES_MSG":"This widget has no attributes.","THIS_WIDGET_HAS_NO_VIEW_LBL":"This widget has no view","VAL_PCT_S_ATTRIB_MINIMUM_VAL_ACCD_MSG":"Value for '%s' attribute is too small. The minimum value accepted is %s but the value received was %s.","VAL_PCT_S_ATTRIB_MAX_VAL_ACCD_PCT_S_MSG":"Value for '%s' attribute is too large. The maximum value accepted is %s but the value received was %s.","VIEW_ATTRIBUTES_LBL":"View Attributes","WARNING_LBL":"Warning","WARNING_S_LBL":"Warning: %s","WIDGET_CHANGES_ERRORS_WILL_IGNORED_MSG":"Widget changes with errors will be ignored.","REQUIRED_LBL":"Required","FIELD_REQUIRED_MARK_LBL":"*","CUSTOM_MSG_ANSWER_FEEDBACK_YES":"Overall, how satisfied are you with the Motorola Support website today?<span class=\"text-signal-required\"><\/span>","CUSTOM_MSG_PROVIDE_ADDITIONAL_INFORMATION_LBL_YES":"Thank you for your feedback","CUSTOM_MSG_ANSWER_FEEDBACK_NO":"We\u2019re sorry this didn\u2019t help. Please let us know what we could have done better.<span class=\"text-signal-required\"><\/span>","CUSTOM_MSG_PROVIDE_ADDITIONAL_INFORMATION_LBL_NO":"Thank you for your feedback","CUSTOM_MSG_ANSWER_FEEDBACK_TEXTAREA_PLACEHOLDER":"Comments...","CUSTOM_MSG_ANSWER_FEEDBACK_ADD_REQUIRED_MARK":"<div>","CUSTOM_MSG_ANSWER_FEEDBACK_CONTACT_US_LINK":"<div class=\"contactus-div\"><span class=\"required-text-signal bold\"> Need more help?&nbsp;&nbsp;<a href=\"\/app\/mcp\/contactus\"> Contact us<\/a><\/span><\/div>","CUSTOM_MSG_ANSWER_FEEDBACK_CONTACT_US_LINK_YES":"","CUSTOM_MSG_ANSWER_FEEDBACK_WORD_LIMIT_TEXT":"characters left","PCT_S_IS_REQUIRED_MSG":"%s is required","FIELD_IS_NOT_A_VALID_EMAIL_ADDRESS_MSG":"field is not a valid email address.","CUSTOM_MSG_ANSWER_FEEDBACK_ADD_RATING_REQUIRED":"Rating is a required field. Please fill in the rating","RESPONSE_PLACEHOLDER_LBL":"<Response Placeholder>","NO_ANSWERS_FOUND_MSG":"No Answers found.","AGT_TEXT_LBL":"Agent text:","ADD_TO_CHAT_CMD":"Add to Chat","NEW_CONTENT_ADDED_BELOW_MSG":"New content added below.","TOP_CONTENT_CONTENT_ADDED_MSG":"Top of new content. New content has been added below."};});
RightNow.Interface.setConfigbase(function(){return {"DE_VALID_EMAIL_PATTERN":"^((([-_!#$%&'*+\/=?^~`{|}\\w]+(\\.[.]?[-_!#$%&'*+\/=?^~`{|}\\w]+)*)|(\"[^\"]+\"))@[0-9A-Za-z]+([\\-]+[0-9A-Za-z]+)*(\\.[0-9A-Za-z]+([\\-]+[0-9A-Za-z]+)*)+[; ]*)$","CP_HOME_URL":"home","CP_FILE_UPLOAD_MAX_TIME":300,"OE_WEB_SERVER":"en-us.support.motorola.com","SUBMIT_TOKEN_EXP":120};});
RightNow.Url.setParameterSegment(4);
RightNow.Event.setNoSessionCookies(true);
RightNow.Interface.Constants =
{"API_VALIDATION_REGEX_EMAIL":"((([-_!#$%&'*+\/=?^~`{|}\\w]+([.][-_!#$%&'*+\/=?^~`{|}\\w]*)*)|(\"[^\"]+\"))@[0-9A-Za-z]+([\\-]+[0-9A-Za-z]+)*(\\.[0-9A-Za-z]+([\\-]+[0-9A-Za-z]+)*)+[;, ]*)+"};
YUI().use('event-base',function(Y){Y.on('domready',function(){var n=RightNow.namespace,W=RightNow.Widgets,c='createWidgetInstance';
n('Custom.Widgets.feedback.AnswerFeedback').templates={"feedbackForm":"<div id=\"<%= domPrefix %>_AnswerFeedbackForm\" class=\"rn_AnswerFeedbackForm\"> <div id=\"<%= domPrefix %>_DialogDescription\" class=\"rn_DialogSubtitle\"><%= labelDialogDescription %><\/div> <div id=\"<%= domPrefix %>_ErrorMessage\"><\/div> <form> <%if(!raitingSubmited && rate != 1){%>\r<div data-v-86f3e33c class=\"sc-introduction\">\r<div data-v-86f3e33c=\"\" class=\"sc-panel-label\">\r<i class='far fa-frown' style='font-size:24px;color:red;'><\/i>\r<i class='far fa-smile' style='font-size:24px;color:#13cf13;'><\/i>\r<\/div> <div data-v-86f3e33c class=\"sc-item\"> <span data-v-86f3e33c class=\"ratingNumber\" value=\"0\" style=\"background: rgba(14, 179, 191, 0.05);\">0<\/span>\r<span data-v-86f3e33c class=\"ratingNumber\" value=\"1\" style=\"background: rgba(14, 179, 191, 0.1);\">1<\/span> <span data-v-86f3e33c class=\"ratingNumber\" value=\"2\" style=\"background: rgba(14, 179, 191, 0.2);\">2<\/span>\r<span data-v-86f3e33c class=\"ratingNumber\" value=\"3\" style=\"background: rgba(14, 179, 191, 0.3);\">3<\/span> <span data-v-86f3e33c class=\"ratingNumber\" value=\"4\" style=\"background: rgba(14, 179, 191, 0.4);\">4<\/span>\r<span data-v-86f3e33c class=\"ratingNumber\" value=\"5\" style=\"background: rgba(14, 179, 191, 0.5);\">5<\/span> <span data-v-86f3e33c class=\"ratingNumber\" value=\"6\" style=\"background: rgba(14, 179, 191, 0.6);\">6<\/span>\r<span data-v-86f3e33c class=\"ratingNumber\" value=\"7\" style=\"background: rgba(14, 179, 191, 0.7);\">7<\/span> <span data-v-86f3e33c class=\"ratingNumber\" value=\"8\" style=\"background: rgba(14, 179, 191, 0.8);\">8<\/span>\r<span data-v-86f3e33c class=\"ratingNumber\" value=\"9\" style=\"background: rgba(14, 179, 191, 0.9);\">9<\/span> <span data-v-86f3e33c class=\"ratingNumber\" value=\"10\" style=\"background: rgba(14, 179, 191, 1.0);\">10<\/span> <\/div>\r<\/div>\r<%}%> <label class=\"AnswerFeedback_Textarea_label\" for=\"<%= domPrefix %>_FeedbackTextarea\"><%= labelCommentBox %> <\/label> <textarea id=\"<%= domPrefix %>_FeedbackTextarea\" class=\"rn_Textarea AnswerFeedback_Textarea\" rows=\"4\" cols=\"60\" maxlength=\"<%=feedbackwordlimit%>\" placeholder=\"<%=placeholder%>\"><\/textarea>\r<div class=\"required-parent\">\r<%=requiredmark%>\r<p class=\"feedbackwordlimit\" ><span id=\"feedbacktextpending\"><%=feedbackwordlimit%><\/span>&nbsp<%=wordlimittext%><\/p> <\/div>\r<%if(rate == 1){%>\r<%=contactus_no%>\r<%}else{%>\r<%=contactus_yes%>\r<%}%> <\/form> \r<\/div>"};
n('Custom.Widgets.feedback.AnswerFeedback').requires=["node-event-simulate"];
n('Custom.Widgets.knowledgebase.GuidedAssistantSecurity').templates={"buttonResponse":"<section> <% for (var i = 0; i < responses.length; i++) { console.log( responses);%> <button class=\"security-select__btn\" onclick=\"window.open('\/app\/software-security-update_link\/g_id\/<%=responses[i].childGuideID%>')\" data-level=\"<%= level %>\" data-guide=\"<%= guideID %>\" data-question=\"<%= questionID %>\" data-response=\"<%= responses[i].responseID %>\"><%= responses[i].text %><\/button> <% } %> <\/section>","imageResponse":"<fieldset class=\"shelf-product__container\"> <% for (var i = 0, altText; i < responses.length; i++) {%> <div class=\"shelf-product__image-wrapper\"> <label for=\"<%= id + responses[i].responseID %>\"> <% altText = (!responses[i].showCaption) ? responses[i].text : \"\"; %> <!--<img src=\"\/ci\/fattach\/get\/<%= responses[i].imageID %>\" alt=\"<%= altText %>\"\/>--> <input type=\"image\" class=\"shelf-product__image\" src=\"\/ci\/fattach\/get\/<%= responses[i].imageID %>\" data-level=\"<%= level %>\" data-guide=\"<%= guideID %>\" data-question=\"<%= questionID %>\" data-response=\"<%= responses[i].responseID %>\" id=\"<%= id + responses[i].responseID %>\" name=\"<%= id + '_' + questionID %>\" value=\"<%= responses[i].responseID %>\"\/> <% if (responses[i].showCaption) { %> <span class=\"shelf-product__text\"><%= responses[i].text %> <\/span> <% } %> <\/input> <\/label> <\/div>\r<% } %>\r<\/fieldset>","question":"\r<% if (questionName == \"Feature\") { console.log(questionText); %> <div class=\"shelf-security__container\"> <a href=\"\/\" class=\"shelf-product__image-wrapper\"> <img src=\"\/euf\/assets\/motorola_v3\/assets\/images\/moto-g-family.png\" alt=\"Moto G Image\" class=\"shelf-product__image\"> <span class=\"shelf-product__text\"><%=questionText[0]%><\/span> <\/a> <\/div> <\/section> <section class=\"security-select__wrapper\"> <p class=\"security-select__text1\"> <%=questionText[1]%> <\/p> <p class=\"security-select__text2\"> <span class=\"secutiry-select_strong\"> <%=questionText[2]%> <\/span> <\/p> <\/section> <% if (questionText[3] == \"Yes\") {%> <section class=\"security-section__stamp\"> <img class=\"security-select__img\" src=\"\/euf\/assets\/motorola_v3\/assets\/images\/stamp-security.png\" alt=\"Stamp Android\"> <\/section> <%}%>\r<%} else {%> <div class=\"rn_QuestionText product_content\"> <%if(questionType!=7){%> <%=questionText1 %> <%}%> <\/div> <%}%>\r\r<div id=\"<%= responseID %>\" class=\"rn_Response <%= responseClass %>\"> <%= responseContent %>\r<\/div>\r\r"};
W.setInitialWidgetCount(7);
W[c]({"i":{"c":"header","n":"header","w":0},"a":[],"j":[]},'W10=','fUCI4qlyW8gu3s4Fek4yOTLxKVp5cZUpk9c1BgrcNMn70hF87c7~7Ae4Yd6KRlfFvFfQeY5D7FZmGViWv4ulOsBQjbEk1a~ZfJvA1lm_03L8js0e7WcrxkmO_jsHOL3_YAGoczeA7b6qc!',1704380485,'header_0','custom/Template/header','Custom.Widgets.Template.header','0','ZlVNcmpqQ1dnNTVKTWFGNXFKRG5rWlJWbE9TRVJQWkVqcEsxR2Y2Q1puMjljUHN5cVN5eG13dW5wRmEweFpOcE1IS2lHbTJZSDFaakc5VkZhb1VVd3VMWk9wSjZ_bUtpdEd3SjlwRHpBRVFYbmJ3VVFLd09SYnFVWWJfUkZRcUc3VU1lNEg3QTF0YlNIaU13Qnd6VENlSmd0MFo0eWRnNzNE');
W[c]({"i":{"c":"login","n":"login","w":1},"a":{"login_url":"\/app\/utils\/welcome?p_next_page=software-security-update"},"j":[]},'W10=','fUY2KW056E44wAHklpMfTuculA3JZOAtjvHbp4P986A920PZFvtuxaftQ7ilmNj8DQ2Y8qpcKGQJoTusZRl9_oIBmO_e49x2PtRzYBAX2SZRS4phX52pEqFnOg8Y4S~cAQKMFuZsdD9dY!',1704380485,'login_1','custom/Template/login','Custom.Widgets.Template.login','1','ZlVOWnYzRk5GSXBMX1J6NGxHOGtyUWtqaGpCNHpKR2M4RW96dmlyMEFMQlg4dHh5N1paZ1REVDIxUzVVMklqWTJBSEZOWERrQ0dLZkZHY3VJNFV3aURxUl9xaGdycjJrfm9tMnZRUDd6dzRac01SdHRMRWZtNXpxWEpvTHUxdklzcGJTX3R5VkVCTlVVTV9VSkR1dThzRFU2UFBFZERwT050');
W[c]({"i":{"c":"AnswerFeedback","n":"AnswerFeedback","w":3},"a":{"getFeedbackToken":"\/ci\/ajax\/widget\/custom\/feedback\/AnswerFeedback\/getFeedbackToken","submitConfirmIt":"\/ci\/ajax\/widget\/custom\/feedback\/AnswerFeedback\/submitConfirmIt","country":"US","feedbackwordlimit":1500,"submit_rating_ajax":"\/ci\/ajaxRequest\/submitAnswerRating","submit_feedback_ajax":"\/ci\/ajaxRequest\/submitAnswerFeedback","label_title":"Was this page helpful?","label_accessible_option_description":"Rate answer %d of %d","label_dialog_title":"Thanks for your feedback","label_dialog_description":"Your rating has been submitted, please tell us how we can make this answer more useful.","options_count":2,"options_descending":false,"label_yes_button":"Yes","label_no_button":"No","feedback_page_url":"","dialog_threshold":1,"label_feedback_submitted":"Your feedback has been submitted.","label_feedback_thanks":"Thanks for your feedback.","label_email_address":"Email","label_comment_box":"Your Feedback","label_send_button":"Submit","label_cancel_button":"Cancel","use_rank_labels":false},"j":{"f_tok":"ZlVqb2xCQVpMMkdNcHY4NmJYQ352Q3pKdGRPOHdIeEdKOW1La2Q4S0loMmlSZkIwR2VMMTFCaVZManBuTERXY2ZfUndrbXpaQnJUaUNMVUZmb0pneXhyd0RUeU9hcEV1X3R3N2RyYWEwU0t5elBWSDdncVRJc3lJdHp4MlJGMVpKSm41N2N3S3dkbXU2djVKR19sOW9HN3hFbjlVVm9Vdldf","isProfile":false,"email":"","buttonView":true,"answerID":null,"ip":"73.16.152.10","customer_country":{"ip":"73.16.152.10","iso_code":"US","country_name":"United States"}}},'eyJleHRlbmRzIjpbInN0YW5kYXJkXC9mZWVkYmFja1wvQW5zd2VyRmVlZGJhY2siXSwibm9uRGVmYXVsdEF0dHJWYWx1ZXMiOnsibGFiZWxfdGl0bGUiOiJXYXMgdGhpcyBwYWdlIGhlbHBmdWw/In0sImNsaWNrc3RyZWFtIjp7ImdldEZlZWRiYWNrVG9rZW4iOiJjdXN0b21fYWN0aW9uIiwic3VibWl0Q29uZmlybUl0IjoiY3VzdG9tX2FjdGlvbiJ9fQ==','fUf8WgpoCdZHTkj~~PhFIR_0fgN~DxL6nXME_kthwiKlf7ol5_2xPAicnSUoNXCS3iUiZ7pTUNNvTGFH0Q5JAQpdbncMgrymeqB4r4XazH7zS~HstOVCPeSzgMhyNLdtCxvtq8AkjYIp0!',1704380485,'AnswerFeedback_3','custom/feedback/AnswerFeedback','Custom.Widgets.feedback.AnswerFeedback','3','ZlU1NWV4WEZqaGxXZ1NmMzltT3NXdUZGSEtNUWZnTjdqXzN2Ym1zRkRaV2c5eEZDMzJ1VGNVN3dPUkh1ck9paDRWbXRIdGY3ampCNkh6M194WDRITG1MWWxOUkZsUlFEZTRSaVhseVRTZUdhejVXTkNsfnpRYlZjN1Vsbms3WnZ_NHFGc1hYZVhsTFc3TUNYMlNBMFZXeWZiflFqcXFpdTU0');
W[c]({"i":{"c":"GuidedAssistantSecurity","n":"GuidedAssistantSecurity","w":4},"a":{"guid_tree_name":"","guide_request_ajax":"\/ci\/ajax\/widget\/custom\/knowledgebase\/GuidedAssistantSecurity\/getGuideAsArray","static_guide_id":7112,"label_question_back":"Go Back","label_start_over":"Start over","label_answer_result":"Please consult the following information:","label_text_result":"","popup_window_url":"","label_popup_launch_button":"Launch the Guided Assistant","label_text_response_button":"OK","single_question_display":true,"target":"","call_url_new_window":false,"page_name":"security_guide"},"j":{"guidedAssistant":{"guideID":7112,"name":"Security-ROW-NEW","questions":[{"questionID":1,"text":"<p>Select your product family<\/p>","taglessText":"Select your product family","type":7,"responses":[{"responseID":4,"responseText":"","text":"moto g family","type":1,"parentQuestionID":1,"childQuestionID":4,"imageID":"77257978\/1645130250","showCaption":true},{"responseID":5,"responseText":"","text":"moto e family","type":1,"parentQuestionID":1,"childQuestionID":5,"imageID":"77257977\/1645130250","showCaption":true},{"responseID":2,"responseText":"","text":"motorola edge family","type":1,"parentQuestionID":1,"childQuestionID":7,"imageID":"77257979\/1645130250","showCaption":true},{"responseID":7,"responseText":"","text":"motorola razr family","type":1,"parentQuestionID":1,"childQuestionID":8,"imageID":"77257981\/1645130250","showCaption":true},{"responseID":14,"responseText":"","text":"ThinkPhone by motorola","type":1,"parentQuestionID":1,"childQuestionID":15,"imageID":"80354590\/1675821910","showCaption":true}]},{"questionID":4,"text":"<p><span style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\"><span style=\"FONT-SIZE: 12pt; FONT-WEIGHT: normal\">Select your product:<\/span><\/span><br \/><\/p>","taglessText":"Select your product:","type":7,"responses":[{"responseID":101,"responseText":"","text":"moto g stylus 5G (2023)","type":1,"parentQuestionID":4,"childQuestionID":60,"imageID":"81073323\/1683233234","showCaption":true},{"responseID":95,"responseText":"","text":"moto g 5G (2023)","type":1,"parentQuestionID":4,"childQuestionID":55,"imageID":"81225499\/1684854365","showCaption":true},{"responseID":89,"responseText":"","text":"moto g stylus (2023)","type":1,"parentQuestionID":4,"childQuestionID":51,"imageID":"81073323\/1683233234","showCaption":true},{"responseID":38,"responseText":"","text":"moto g power 5G (2023)","type":1,"parentQuestionID":4,"childQuestionID":40,"imageID":"80892986\/1681223982","showCaption":true},{"responseID":17,"responseText":"","text":"moto g play 2023","type":1,"parentQuestionID":4,"childQuestionID":18,"imageID":"79865977\/1670594491","showCaption":true},{"responseID":76,"responseText":"","text":"moto g stylus 5G (2022)","type":1,"parentQuestionID":4,"childQuestionID":43,"imageID":"78236617\/1654020945","showCaption":true},{"responseID":82,"responseText":"","text":"moto g 5G (2022)","type":1,"parentQuestionID":4,"childQuestionID":48,"imageID":"77910041\/1651670349","showCaption":true},{"responseID":3,"responseText":"","text":"moto g stylus (2022)","type":1,"parentQuestionID":4,"childQuestionID":3,"imageID":"78236617\/1654020945","showCaption":true},{"responseID":13,"responseText":"","text":"moto g power (2022)","type":1,"parentQuestionID":4,"childQuestionID":14,"imageID":"77967199\/1652295222","showCaption":true},{"responseID":23,"responseText":"","text":"moto g pure","type":1,"parentQuestionID":4,"childQuestionID":24,"imageID":"77109153\/1643761408","showCaption":true},{"responseID":64,"responseText":"","text":"moto g200 5G","type":1,"parentQuestionID":4,"childQuestionID":44,"imageID":"77109173\/1643761430","showCaption":true},{"responseID":12,"responseText":"","text":"moto g84 5G","type":1,"parentQuestionID":4,"childQuestionID":6,"imageID":"82041693\/1694200734","showCaption":true},{"responseID":137,"responseText":"","text":"moto g82 5G","type":1,"parentQuestionID":4,"childQuestionID":73,"imageID":"78891692\/1660576335","showCaption":true},{"responseID":29,"responseText":"","text":"moto g73 5G","type":1,"parentQuestionID":4,"childQuestionID":17,"imageID":"80365478\/1675879573","showCaption":true},{"responseID":59,"responseText":"","text":"moto g72","type":1,"parentQuestionID":4,"childQuestionID":41,"imageID":"79431726\/1666134876","showCaption":true},{"responseID":74,"responseText":"","text":"moto g71 5G","type":1,"parentQuestionID":4,"childQuestionID":45,"imageID":"77109191\/1643761454","showCaption":true},{"responseID":22,"responseText":"","text":"moto g62 5G","type":1,"parentQuestionID":4,"childQuestionID":22,"imageID":"78892328\/1660589333","showCaption":true},{"responseID":25,"responseText":"","text":"moto g54 5G","type":1,"parentQuestionID":4,"childQuestionID":13,"imageID":"82041663\/1694200443","showCaption":true},{"responseID":158,"responseText":"","text":"moto g53y 5G","type":1,"parentQuestionID":4,"childQuestionID":84,"imageID":"80347668\/1675703119","showCaption":true},{"responseID":152,"responseText":"","text":"moto g53j 5G","type":1,"parentQuestionID":4,"childQuestionID":81,"imageID":"80347668\/1675703119","showCaption":true},{"responseID":31,"responseText":"","text":"moto g53 5G","type":1,"parentQuestionID":4,"childQuestionID":19,"imageID":"80347668\/1675703119","showCaption":true},{"responseID":141,"responseText":"","text":"moto g52j 5G","type":1,"parentQuestionID":4,"childQuestionID":75,"imageID":"77109137\/1643761388","showCaption":true},{"responseID":66,"responseText":"","text":"moto g52","type":1,"parentQuestionID":4,"childQuestionID":37,"imageID":"77782138\/1650320969","showCaption":true},{"responseID":83,"responseText":"","text":"moto g51 5G","type":1,"parentQuestionID":4,"childQuestionID":69,"imageID":"77109137\/1643761388","showCaption":true},{"responseID":34,"responseText":"","text":"moto g42","type":1,"parentQuestionID":4,"childQuestionID":23,"imageID":"78891957\/1660581133","showCaption":true},{"responseID":24,"responseText":"","text":"moto g41","type":1,"parentQuestionID":4,"childQuestionID":25,"imageID":"77109155\/1643761408","showCaption":true},{"responseID":62,"responseText":"","text":"moto g32","type":1,"parentQuestionID":4,"childQuestionID":38,"imageID":"78907759\/1660743900","showCaption":true},{"responseID":35,"responseText":"","text":"moto g31","type":1,"parentQuestionID":4,"childQuestionID":35,"imageID":"77109172\/1643761430","showCaption":true},{"responseID":54,"responseText":"","text":"moto g23","type":1,"parentQuestionID":4,"childQuestionID":30,"imageID":"80347667\/1675703119","showCaption":true},{"responseID":26,"responseText":"","text":"moto g22","type":1,"parentQuestionID":4,"childQuestionID":27,"imageID":"77454565\/1647014374","showCaption":true},{"responseID":1,"responseText":"","text":"moto g14","type":1,"parentQuestionID":4,"childQuestionID":2,"imageID":"81776881\/1691085016","showCaption":true},{"responseID":55,"responseText":"","text":"moto g13","type":1,"parentQuestionID":4,"childQuestionID":32,"imageID":"80347666\/1675703119","showCaption":true},{"responseID":11,"responseText":"","text":"moto g pure (2021)","type":1,"parentQuestionID":4,"childQuestionID":12,"imageID":"77109153\/1643761408","showCaption":true}]},{"questionID":5,"text":"<p><span style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\"><span style=\"FONT-SIZE: 12pt; FONT-WEIGHT: normal\">Select your product:<\/span><\/span><br \/><\/p>","taglessText":"Select your product:","type":7,"responses":[{"responseID":84,"responseText":"","text":"moto e40","type":1,"parentQuestionID":5,"childQuestionID":70,"imageID":"77109170\/1643761430","showCaption":true},{"responseID":52,"responseText":"","text":"moto e32s","type":1,"parentQuestionID":5,"childQuestionID":34,"imageID":"78892559\/1660594690","showCaption":true},{"responseID":139,"responseText":"","text":"moto e32","type":1,"parentQuestionID":5,"childQuestionID":74,"imageID":"77955158\/1652197050","showCaption":true},{"responseID":128,"responseText":"","text":"moto e30","type":1,"parentQuestionID":5,"childQuestionID":71,"imageID":"77109169\/1643761430","showCaption":true},{"responseID":147,"responseText":"","text":"moto e22s","type":1,"parentQuestionID":5,"childQuestionID":78,"imageID":"77955158\/1652197050","showCaption":true},{"responseID":80,"responseText":"","text":"moto e22i","type":1,"parentQuestionID":5,"childQuestionID":42,"imageID":"79431725\/1666134876","showCaption":true},{"responseID":81,"responseText":"","text":"moto e22","type":1,"parentQuestionID":5,"childQuestionID":77,"imageID":"79431725\/1666134876","showCaption":true},{"responseID":129,"responseText":"","text":"moto e20","type":1,"parentQuestionID":5,"childQuestionID":72,"imageID":"77109151\/1643761408","showCaption":true},{"responseID":56,"responseText":"","text":"moto e13","type":1,"parentQuestionID":5,"childQuestionID":46,"imageID":"80410014\/1676306628","showCaption":true}]},{"questionID":7,"text":"<p><span style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\"><span style=\"FONT-SIZE: 12pt; FONT-WEIGHT: normal\">Select your product:<\/span><\/span><br \/><\/p>","taglessText":"Select your product:","type":7,"responses":[{"responseID":86,"responseText":"","text":"motorola edge+ (2023)","type":1,"parentQuestionID":7,"childQuestionID":49,"imageID":"81063989\/1683137910","showCaption":true},{"responseID":49,"responseText":"","text":"motorola edge (2023)","type":1,"parentQuestionID":7,"childQuestionID":28,"imageID":"81454270\/1687366716","showCaption":false},{"responseID":79,"responseText":"","text":"motorola edge 40 pro","type":1,"parentQuestionID":7,"childQuestionID":47,"imageID":"81063989\/1683137910","showCaption":true},{"responseID":30,"responseText":"","text":"motorola edge 40 neo","type":1,"parentQuestionID":7,"childQuestionID":26,"imageID":"82108725\/1694788436","showCaption":true},{"responseID":93,"responseText":"","text":"motorola edge 40","type":1,"parentQuestionID":7,"childQuestionID":52,"imageID":"81072800\/1683219545","showCaption":true},{"responseID":9,"responseText":"","text":"motorola edge 30 ultra","type":1,"parentQuestionID":7,"childQuestionID":10,"imageID":"79107010\/1662737597","showCaption":true},{"responseID":8,"responseText":"","text":"motorola edge 30 pro","type":1,"parentQuestionID":7,"childQuestionID":9,"imageID":"77393598\/1646416425","showCaption":true},{"responseID":19,"responseText":"","text":"motorola edge 30 neo","type":1,"parentQuestionID":7,"childQuestionID":20,"imageID":"78104439\/1652804134","showCaption":true},{"responseID":20,"responseText":"","text":"motorola edge 30 fusion","type":1,"parentQuestionID":7,"childQuestionID":21,"imageID":"79107009\/1662737597","showCaption":true},{"responseID":91,"responseText":"","text":"motorola edge 30","type":1,"parentQuestionID":7,"childQuestionID":50,"imageID":"78104439\/1652804134","showCaption":true},{"responseID":10,"responseText":"","text":"motorola edge+ (2022)","type":1,"parentQuestionID":7,"childQuestionID":11,"imageID":"77393597\/1646416410","showCaption":true},{"responseID":77,"responseText":"","text":"motorola edge (2022)","type":1,"parentQuestionID":7,"childQuestionID":39,"imageID":"78104439\/1652804134","showCaption":true},{"responseID":118,"responseText":"","text":"motorola edge 20 lite","type":1,"parentQuestionID":7,"childQuestionID":65,"imageID":"77109134\/1643761388","showCaption":true},{"responseID":125,"responseText":"","text":"motorola edge 20 fusion","type":1,"parentQuestionID":7,"childQuestionID":68,"imageID":"77109134\/1643761388","showCaption":true},{"responseID":119,"responseText":"","text":"motorola edge 20","type":1,"parentQuestionID":7,"childQuestionID":66,"imageID":"77109135\/1643761388","showCaption":true},{"responseID":143,"responseText":"","text":"motorola edge (2021)","type":1,"parentQuestionID":7,"childQuestionID":76,"imageID":"77109189\/1643761454","showCaption":true}]},{"questionID":8,"text":"<p><span style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\"><span style=\"FONT-SIZE: 12pt; FONT-WEIGHT: normal\">Select your product:<\/span><\/span><br \/><\/p>","taglessText":"Select your product:","type":7,"responses":[{"responseID":110,"responseText":"","text":"motorola razr 40 ultra","type":1,"parentQuestionID":8,"childQuestionID":61,"imageID":"81334213\/1685976584","showCaption":true},{"responseID":63,"responseText":"","text":"motorola razr 40s","type":1,"parentQuestionID":8,"childQuestionID":29,"imageID":"81463849\/1687452453","showCaption":false},{"responseID":154,"responseText":"","text":"motorola razr 40","type":1,"parentQuestionID":8,"childQuestionID":82,"imageID":"81334213\/1685976584","showCaption":true},{"responseID":111,"responseText":"","text":"motorola razr+ (2023)","type":1,"parentQuestionID":8,"childQuestionID":80,"imageID":"81334213\/1685976584","showCaption":true},{"responseID":155,"responseText":"","text":"motorola razr (2023)","type":1,"parentQuestionID":8,"childQuestionID":83,"imageID":"81334213\/1685976584","showCaption":true},{"responseID":149,"responseText":"","text":"motorola razr (2022)","type":1,"parentQuestionID":8,"childQuestionID":79,"imageID":"79107011\/1662737597","showCaption":true}]},{"questionID":15,"text":"<p><span style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\"><span style=\"FONT-SIZE: 12pt; FONT-WEIGHT: normal\">Select your product:<\/span><\/span><br \/><\/p>","taglessText":"Select your product:","type":7,"responses":[{"responseID":15,"responseText":"","text":"ThinkPhone by motorola","type":1,"parentQuestionID":15,"childQuestionID":16,"imageID":"80354589\/1675821800","showCaption":true}]},{"questionID":60,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto g stylus\u00a05G (2023)<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on June, 2023<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on June, 2026\u00a0<\/span><\/p>\n<hr \/>\n<p><span style=\"FONT-WEIGHT: normal\">Launched On: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 14<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">*This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/82200854\/1695850498\" width=\"173\" height=\"65\" \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"moto g stylus\u00a05G (2023)\nCurrently receiving regular security updates.\nDevice launched on June, 2023\nSecurity updates will stop on June, 2026\u00a0\n\nLaunched On: Android 13\nNext OS: Android 14\n*This device will receive at least bi-monthly SMRs updates\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11492","type":1,"responses":[{"responseID":112,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":60,"childGuideID":6853}]},{"questionID":55,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto g 5G (2023)<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on May, 2023<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on May, 2026\u00a0<\/span><\/p>\n<hr \/>\n<p><span style=\"FONT-WEIGHT: normal\">Launched On: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 14<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">*This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"moto g 5G (2023)\nCurrently receiving regular security updates.\nDevice launched on May, 2023\nSecurity updates will stop on May, 2026\u00a0\n\nLaunched On: Android 13\nNext OS: Android 14\n*This device will receive at least bi-monthly SMRs updates\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11494","type":1,"responses":[{"responseID":100,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":55,"childGuideID":6853}]},{"questionID":51,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto g stylus\u00a0(2023)<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on April, 2023<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on April, 2026\u00a0<\/span><\/p>\n<hr \/>\n<p><span style=\"FONT-WEIGHT: normal\">Launched On: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 14<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">*This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"moto g stylus\u00a0(2023)\nCurrently receiving regular security updates.\nDevice launched on April, 2023\nSecurity updates will stop on April, 2026\u00a0\n\nLaunched On: Android 13\nNext OS: Android 14\n*This device will receive at least bi-monthly SMRs updates\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11493","type":1,"responses":[{"responseID":92,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":51,"childGuideID":6853}]},{"questionID":40,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto g power 5G (2023)<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on April, 2023<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on April, 2026\u00a0<\/span><\/p>\n<hr \/>\n<p><span style=\"FONT-WEIGHT: normal\">Launched On: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 14<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">*This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"moto g power 5G (2023)\nCurrently receiving regular security updates.\nDevice launched on April, 2023\nSecurity updates will stop on April, 2026\u00a0\n\nLaunched On: Android 13\nNext OS: Android 14\n*This device will receive at least bi-monthly SMRs updates\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11490","type":1,"responses":[{"responseID":71,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":40,"childGuideID":6853}]},{"questionID":18,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto g play\u00a02023<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on January, 2023<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on December, 2025\u00a0<\/span><\/p>\n<hr \/>\n<p><span style=\"FONT-WEIGHT: normal\">Launched On: Android 12<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p>\u00a0<\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"moto g play\u00a02023\nCurrently receiving regular security updates.\nDevice launched on January, 2023\nSecurity updates will stop on December, 2025\u00a0\n\nLaunched On: Android 12\nNext OS: Android 13\nThis device will receive at least bi-monthly SMRs updates\n\u00a0\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11403","type":1,"responses":[{"responseID":18,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":18,"childGuideID":6853}]},{"questionID":43,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto g stylus 5G (2022)<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on April, 2022<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on April, 2025\u00a0<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Launched On: Android 12<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"moto g stylus 5G (2022)\nCurrently receiving regular security updates.\nDevice launched on April, 2022\nSecurity updates will stop on April, 2025\u00a0\nLaunched On: Android 12\nNext OS: Android 13\nThis device will receive at least bi-monthly SMRs updates\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11246","type":1,"responses":[{"responseID":87,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":43,"childGuideID":6853}]},{"questionID":48,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto g 5G (2022)<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on April, 2022<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on April, 2025\u00a0<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Launched On: Android 12<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"moto g 5G (2022)\nCurrently receiving regular security updates.\nDevice launched on April, 2022\nSecurity updates will stop on April, 2025\u00a0\nLaunched On: Android 12\nNext OS: Android 13\nThis device will receive at least bi-monthly SMRs updates\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11241","type":1,"responses":[{"responseID":90,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":48,"childGuideID":6853}]},{"questionID":3,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto g stylus (2022)<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on February, 2022<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on February, 2024<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"moto g stylus (2022)\nCurrently receiving regular security updates.\nDevice launched on February, 2022\nSecurity updates will stop on February, 2024\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11225","type":1,"responses":[{"responseID":32,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":3,"childGuideID":6853}]},{"questionID":14,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto g power (2022)<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on November, 2021<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on November, 2023<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"moto g power (2022)\nCurrently receiving regular security updates.\nDevice launched on November, 2021\nSecurity updates will stop on November, 2023\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11208","type":1,"responses":[{"responseID":41,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":14,"childGuideID":6853}]},{"questionID":24,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto g pure<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on September, 2021<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on September, 2023<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"moto g pure\nCurrently receiving regular security updates.\nDevice launched on September, 2021\nSecurity updates will stop on September, 2023\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11179","type":1,"responses":[{"responseID":48,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":24,"childGuideID":6853}]},{"questionID":44,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto g<span style=\"FONT-SIZE: 10pt; VERTICAL-ALIGN: super\">200<\/span> 5G<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on November, 2021<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on November, 2023<\/span><\/p>\n<hr \/>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Launched On: Android 11<\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 12<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">*This device will receive at least bi-monthly SMRs updates<\/span><\/p>\n<p>\u00a0<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"moto g200 5G\nCurrently receiving regular security updates.\nDevice launched on November, 2021\nSecurity updates will stop on November, 2023\n\nLaunched On: Android 11\nNext OS: Android 12\n*This device will receive at least bi-monthly SMRs updates\n\u00a0\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11210","type":1,"responses":[{"responseID":130,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":44,"childGuideID":6853}]},{"questionID":6,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto g84 5G<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on September, 2023<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on September, 2026<\/span><\/p>\n<hr \/>\n<p><span style=\"FONT-WEIGHT: normal\">Launched On: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 14<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">*This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/span><\/p>","taglessText":"moto g84 5G\nCurrently receiving regular security updates.\nDevice launched on September, 2023\nSecurity updates will stop on September, 2026\n\nLaunched On: Android 13\nNext OS: Android 14\n*This device will receive at least bi-monthly SMRs updates\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11601","type":1,"responses":[{"responseID":27,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":6,"childGuideID":6853}]},{"questionID":73,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto g<span style=\"FONT-SIZE: 10pt; VERTICAL-ALIGN: super\">82<\/span> 5G<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on May, 2022<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on May, 2025\u00a0<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Launched On: Android 12<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"moto g82 5G\nCurrently receiving regular security updates.\nDevice launched on May, 2022\nSecurity updates will stop on May, 2025\u00a0\nLaunched On: Android 12\nNext OS: Android 13\nThis device will receive at least bi-monthly SMRs updates\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11292","type":1,"responses":[{"responseID":138,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":73,"childGuideID":6853}]},{"questionID":17,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto g73 5G<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on January, 2023<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on January, 2026<\/span><\/p>\n<hr \/>\n<p><span style=\"FONT-WEIGHT: normal\">Launched On: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 14<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">*This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/span><\/p>","taglessText":"moto g73 5G\nCurrently receiving regular security updates.\nDevice launched on January, 2023\nSecurity updates will stop on January, 2026\n\nLaunched On: Android 13\nNext OS: Android 14\n*This device will receive at least bi-monthly SMRs updates\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11431","type":1,"responses":[{"responseID":46,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":17,"childGuideID":6853}]},{"questionID":41,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto g<span style=\"FONT-SIZE: 10pt; VERTICAL-ALIGN: super\">72<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on October, 2022<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on October, 2025\u00a0<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Launched On: Android 12<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"moto g72\nCurrently receiving regular security updates.\nDevice launched on October, 2022\nSecurity updates will stop on October, 2025\u00a0\nLaunched On: Android 12\nNext OS: Android 13\nThis device will receive at least bi-monthly SMRs updates\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11372","type":1,"responses":[{"responseID":60,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":41,"childGuideID":6853}]},{"questionID":45,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto g<span style=\"FONT-SIZE: 10pt; VERTICAL-ALIGN: super\">71<\/span> 5G<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on November, 2021<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on November, 2023<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"moto g71 5G\nCurrently receiving regular security updates.\nDevice launched on November, 2021\nSecurity updates will stop on November, 2023\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11207","type":1,"responses":[{"responseID":131,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":45,"childGuideID":6853}]},{"questionID":22,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto g<span style=\"FONT-SIZE: 10pt; VERTICAL-ALIGN: super\">62<\/span> 5G<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on June, 2022<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on June, 2025\u00a0<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Launched On: Android 12<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/79828305\/1670251841\" alt=\"Image\" \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"moto g62 5G\nCurrently receiving regular security updates.\nDevice launched on June, 2022\nSecurity updates will stop on June, 2025\u00a0\nLaunched On: Android 12\nNext OS: Android 13\nThis device will receive at least bi-monthly SMRs updates\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11297","type":1,"responses":[{"responseID":44,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":22,"childGuideID":6853}]},{"questionID":13,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto g54 5G<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on September, 2023<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on September, 2026<\/span><\/p>\n<hr \/>\n<p><span style=\"FONT-WEIGHT: normal\">Launched On: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 14<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">*This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/span><\/p>","taglessText":"moto g54 5G\nCurrently receiving regular security updates.\nDevice launched on September, 2023\nSecurity updates will stop on September, 2026\n\nLaunched On: Android 13\nNext OS: Android 14\n*This device will receive at least bi-monthly SMRs updates\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11600","type":1,"responses":[{"responseID":28,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":13,"childGuideID":6853}]},{"questionID":84,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto g53y 5G<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on June, 2023<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on December, 2026<\/span><\/p>\n<hr \/>\n<p><span style=\"FONT-WEIGHT: normal\">Launched On: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 14<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">*This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/span><\/p>","taglessText":"moto g53y 5G\nCurrently receiving regular security updates.\nDevice launched on June, 2023\nSecurity updates will stop on December, 2026\n\nLaunched On: Android 13\nNext OS: Android 14\n*This device will receive at least bi-monthly SMRs updates\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11599","type":1,"responses":[{"responseID":159,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":84,"childGuideID":6853}]},{"questionID":81,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto g53j 5G<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on June, 2023<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on December, 2026<\/span><\/p>\n<hr \/>\n<p><span style=\"FONT-WEIGHT: normal\">Launched On: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 14<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">*This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/span><\/p>","taglessText":"moto g53j 5G\nCurrently receiving regular security updates.\nDevice launched on June, 2023\nSecurity updates will stop on December, 2026\n\nLaunched On: Android 13\nNext OS: Android 14\n*This device will receive at least bi-monthly SMRs updates\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11585","type":1,"responses":[{"responseID":153,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":81,"childGuideID":6853}]},{"questionID":19,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto g53 5G<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on January, 2023<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on January, 2026<\/span><\/p>\n<hr \/>\n<p><span style=\"FONT-WEIGHT: normal\">Launched On: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 14<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">*This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/span><\/p>","taglessText":"moto g53 5G\nCurrently receiving regular security updates.\nDevice launched on January, 2023\nSecurity updates will stop on January, 2026\n\nLaunched On: Android 13\nNext OS: Android 14\n*This device will receive at least bi-monthly SMRs updates\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11426","type":1,"responses":[{"responseID":47,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":19,"childGuideID":6853}]},{"questionID":75,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto g<span style=\"FONT-SIZE: 10pt; VERTICAL-ALIGN: super\">52j<\/span> 5G<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on June, 2022<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on June, 2025<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"moto g52j 5G\nCurrently receiving regular security updates.\nDevice launched on June, 2022\nSecurity updates will stop on June, 2025\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11299","type":1,"responses":[{"responseID":142,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":75,"childGuideID":6853}]},{"questionID":37,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto g<span style=\"FONT-SIZE: 10pt; VERTICAL-ALIGN: super\">52<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on April, 2022<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on April, 2025<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"moto g52\nCurrently receiving regular security updates.\nDevice launched on April, 2022\nSecurity updates will stop on April, 2025\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11240","type":1,"responses":[{"responseID":75,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":37,"childGuideID":6853}]},{"questionID":69,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto g<span style=\"FONT-SIZE: 10pt; VERTICAL-ALIGN: super\">51<\/span> 5G<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on November, 2021<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on November, 2023<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"moto g51 5G\nCurrently receiving regular security updates.\nDevice launched on November, 2021\nSecurity updates will stop on November, 2023\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11211","type":1,"responses":[{"responseID":132,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":69,"childGuideID":6853}]},{"questionID":23,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto g<span style=\"FONT-SIZE: 10pt; VERTICAL-ALIGN: super\">42<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on June, 2022<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on June, 2025\u00a0<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Launched On: Android 12<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"moto g42\nCurrently receiving regular security updates.\nDevice launched on June, 2022\nSecurity updates will stop on June, 2025\u00a0\nLaunched On: Android 12\nNext OS: Android 13\nThis device will receive at least bi-monthly SMRs updates\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11309","type":1,"responses":[{"responseID":45,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":23,"childGuideID":6853}]},{"questionID":25,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto g<span style=\"FONT-SIZE: 10pt; VERTICAL-ALIGN: super\">41<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on November, 2021<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on November, 2023<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"moto g41\nCurrently receiving regular security updates.\nDevice launched on November, 2021\nSecurity updates will stop on November, 2023\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11198","type":1,"responses":[{"responseID":42,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":25,"childGuideID":6853}]},{"questionID":38,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto g<span style=\"FONT-SIZE: 10pt; VERTICAL-ALIGN: super\">32<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on August, 2022<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on August, 2025<\/span><\/p>\n<hr \/>\n<p><span style=\"FONT-WEIGHT: normal\">Launched On: Android 12<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">*This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/p>","taglessText":"moto g32\nCurrently receiving regular security updates.\nDevice launched on August, 2022\nSecurity updates will stop on August, 2025\n\nLaunched On: Android 12\nNext OS: Android 13\n*This device will receive at least bi-monthly SMRs updates\n","agentText":"11354","type":1,"responses":[{"responseID":73,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":38,"childGuideID":6853}]},{"questionID":35,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto g<span style=\"FONT-SIZE: 10pt; VERTICAL-ALIGN: super\">31<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on November, 2021<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on November, 2023<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"moto g31\nCurrently receiving regular security updates.\nDevice launched on November, 2021\nSecurity updates will stop on November, 2023\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11197","type":1,"responses":[{"responseID":43,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":35,"childGuideID":6853}]},{"questionID":30,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto g23<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on January, 2023<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on January, 2026<\/span><\/p>\n<hr \/>\n<p><span style=\"FONT-WEIGHT: normal\">Launched On: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 14<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">*This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/span><\/p>","taglessText":"moto g23\nCurrently receiving regular security updates.\nDevice launched on January, 2023\nSecurity updates will stop on January, 2026\n\nLaunched On: Android 13\nNext OS: Android 14\n*This device will receive at least bi-monthly SMRs updates\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11430","type":1,"responses":[{"responseID":57,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":30,"childGuideID":6853}]},{"questionID":27,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto g<span style=\"FONT-SIZE: 10pt; VERTICAL-ALIGN: super\">22<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on March, 2022<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on March, 2025<\/span><\/p>\n<p>\u00a0<\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"moto g22\nCurrently receiving regular security updates.\nDevice launched on March, 2022\nSecurity updates will stop on March, 2025\n\u00a0\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11235","type":1,"responses":[{"responseID":51,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":27,"childGuideID":6853}]},{"questionID":2,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto g14<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on August, 2023<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on August, 2026<\/span><\/p>\n<hr \/>\n<p><span style=\"FONT-WEIGHT: normal\">Launched On: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 14<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">*This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/span><\/p>","taglessText":"moto g14\nCurrently receiving regular security updates.\nDevice launched on August, 2023\nSecurity updates will stop on August, 2026\n\nLaunched On: Android 13\nNext OS: Android 14\n*This device will receive at least bi-monthly SMRs updates\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11597","type":1,"responses":[{"responseID":6,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":2,"childGuideID":6853}]},{"questionID":32,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto g13<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on January, 2023<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on January, 2026<\/span><\/p>\n<hr \/>\n<p><span style=\"FONT-WEIGHT: normal\">Launched On: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 14<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">*This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/span><\/p>","taglessText":"moto g13\nCurrently receiving regular security updates.\nDevice launched on January, 2023\nSecurity updates will stop on January, 2026\n\nLaunched On: Android 13\nNext OS: Android 14\n*This device will receive at least bi-monthly SMRs updates\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11429","type":1,"responses":[{"responseID":58,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":32,"childGuideID":6853}]},{"questionID":12,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto g pure (2021)<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on November, 2021<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on November, 2023<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"moto g pure (2021)\nCurrently receiving regular security updates.\nDevice launched on November, 2021\nSecurity updates will stop on November, 2023\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11179","type":1,"responses":[{"responseID":21,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":12,"childGuideID":6853}]},{"questionID":70,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto e<span style=\"FONT-SIZE: 10pt; VERTICAL-ALIGN: super\">40<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on September, 2021<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on September, 2023\u00a0<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"moto e40\nCurrently receiving regular security updates.\nDevice launched on September, 2021\nSecurity updates will stop on September, 2023\u00a0\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11178","type":1,"responses":[{"responseID":133,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":70,"childGuideID":6853}]},{"questionID":34,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto e<span style=\"FONT-SIZE: 10pt; VERTICAL-ALIGN: super\">32s<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on June, 2022<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on June, 2024<\/span><\/p>\n<p>\u00a0<\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"moto e32s\nCurrently receiving regular security updates.\nDevice launched on June, 2022\nSecurity updates will stop on June, 2024\n\u00a0\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11248","type":1,"responses":[{"responseID":61,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":34,"childGuideID":6853}]},{"questionID":74,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto e<span style=\"FONT-SIZE: 10pt; VERTICAL-ALIGN: super\">32<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on May, 2022<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on May, 2024\u00a0<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"moto e32\nCurrently receiving regular security updates.\nDevice launched on May, 2022\nSecurity updates will stop on May, 2024\u00a0\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11249","type":1,"responses":[{"responseID":140,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":74,"childGuideID":6853}]},{"questionID":71,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto e<span style=\"FONT-SIZE: 10pt; VERTICAL-ALIGN: super\">30<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on September, 2021<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on September, 2023\u00a0<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"moto e30\nCurrently receiving regular security updates.\nDevice launched on September, 2021\nSecurity updates will stop on September, 2023\u00a0\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11177","type":1,"responses":[{"responseID":134,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":71,"childGuideID":6853}]},{"questionID":78,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto e<span style=\"FONT-SIZE: 10pt; VERTICAL-ALIGN: super\">22s<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on October, 2022<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on October, 2024\u00a0<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"moto e22s\nCurrently receiving regular security updates.\nDevice launched on October, 2022\nSecurity updates will stop on October, 2024\u00a0\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11369","type":1,"responses":[{"responseID":148,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":78,"childGuideID":6853}]},{"questionID":42,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto e<span style=\"FONT-SIZE: 10pt; VERTICAL-ALIGN: super\">22i<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on October, 2022<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on October, 2024\u00a0<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"moto e22i\nCurrently receiving regular security updates.\nDevice launched on October, 2022\nSecurity updates will stop on October, 2024\u00a0\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11356","type":1,"responses":[{"responseID":145,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":42,"childGuideID":6853}]},{"questionID":77,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto e<span style=\"FONT-SIZE: 10pt; VERTICAL-ALIGN: super\">22<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on October, 2022<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on October, 2024\u00a0<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"moto e22\nCurrently receiving regular security updates.\nDevice launched on October, 2022\nSecurity updates will stop on October, 2024\u00a0\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11357","type":1,"responses":[{"responseID":146,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":77,"childGuideID":6853}]},{"questionID":72,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto e<span style=\"FONT-SIZE: 10pt; VERTICAL-ALIGN: super\">20<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on September, 2021<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on September, 2023\u00a0<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"moto e20\nCurrently receiving regular security updates.\nDevice launched on September, 2021\nSecurity updates will stop on September, 2023\u00a0\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11168","type":1,"responses":[{"responseID":135,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":72,"childGuideID":6853}]},{"questionID":46,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">moto e<span style=\"FONT-SIZE: 10pt; VERTICAL-ALIGN: super\">13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on January, 2023<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on January, 2025<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"moto e13\nCurrently receiving regular security updates.\nDevice launched on January, 2023\nSecurity updates will stop on January, 2025\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11427","type":1,"responses":[{"responseID":68,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":46,"childGuideID":6853}]},{"questionID":49,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">motorola edge+ (2023)<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on May, 2023<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on May, 2027<\/span><\/p>\n<hr \/>\n<p><span style=\"FONT-WEIGHT: normal\">Launched On: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 14<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">*This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/p>","taglessText":"motorola edge+ (2023)\nCurrently receiving regular security updates.\nDevice launched on May, 2023\nSecurity updates will stop on May, 2027\n\nLaunched On: Android 13\nNext OS: Android 14\n*This device will receive at least bi-monthly SMRs updates\n","agentText":"11495","type":1,"responses":[{"responseID":88,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":49,"childGuideID":6853}]},{"questionID":28,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">motorola edge (2023)<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on September, 2023<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on September, 2026<\/span><\/p>\n<hr \/>\n<p><span style=\"FONT-WEIGHT: normal\">Launched On: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 14<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">*This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/p>","taglessText":"motorola edge (2023)\nCurrently receiving regular security updates.\nDevice launched on September, 2023\nSecurity updates will stop on September, 2026\n\nLaunched On: Android 13\nNext OS: Android 14\n*This device will receive at least bi-monthly SMRs updates\n","agentText":"11576","type":1,"responses":[{"responseID":53,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":28,"childGuideID":6853}]},{"questionID":47,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">motorola edge 40 pro<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on April, 2023<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on April, 2027<\/span><\/p>\n<hr \/>\n<p><span style=\"FONT-WEIGHT: normal\">Launched On: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 14<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">*This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/p>","taglessText":"motorola edge 40 pro\nCurrently receiving regular security updates.\nDevice launched on April, 2023\nSecurity updates will stop on April, 2027\n\nLaunched On: Android 13\nNext OS: Android 14\n*This device will receive at least bi-monthly SMRs updates\n","agentText":"11491","type":1,"responses":[{"responseID":85,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":47,"childGuideID":6853}]},{"questionID":26,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">motorola edge 40 neo<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on September, 2023<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on September, 2027<\/span><\/p>\n<hr \/>\n<p><span style=\"FONT-WEIGHT: normal\">Launched On: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 14<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">*This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/span><\/p>","taglessText":"motorola edge 40 neo\nCurrently receiving regular security updates.\nDevice launched on September, 2023\nSecurity updates will stop on September, 2027\n\nLaunched On: Android 13\nNext OS: Android 14\n*This device will receive at least bi-monthly SMRs updates\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11590","type":1,"responses":[{"responseID":33,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":26,"childGuideID":6853}]},{"questionID":52,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">motorola edge 40<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on May, 2023<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on May, 2027<\/span><\/p>\n<hr \/>\n<p><span style=\"FONT-WEIGHT: normal\">Launched On: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 14<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">*This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/p>","taglessText":"motorola edge 40\nCurrently receiving regular security updates.\nDevice launched on May, 2023\nSecurity updates will stop on May, 2027\n\nLaunched On: Android 13\nNext OS: Android 14\n*This device will receive at least bi-monthly SMRs updates\n","agentText":"11533","type":1,"responses":[{"responseID":94,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":52,"childGuideID":6853}]},{"questionID":10,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">motorola edge 30 ultra<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on September, 2022<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on September, 2026<\/span><\/p>\n<hr \/>\n<p><span style=\"FONT-WEIGHT: normal\">Launched On: Android 12<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">*This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/p>","taglessText":"motorola edge 30 ultra\nCurrently receiving regular security updates.\nDevice launched on September, 2022\nSecurity updates will stop on September, 2026\n\nLaunched On: Android 12\nNext OS: Android 13\n*This device will receive at least bi-monthly SMRs updates\n","agentText":"11368","type":1,"responses":[{"responseID":39,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":10,"childGuideID":6853}]},{"questionID":9,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">motorola edge 30 pro<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on February, 2022<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on February, 2025<\/span><\/p>\n<hr \/>\n<p><span style=\"FONT-WEIGHT: normal\">Launched On: Android 12<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">*This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/p>","taglessText":"motorola edge 30 pro\nCurrently receiving regular security updates.\nDevice launched on February, 2022\nSecurity updates will stop on February, 2025\n\nLaunched On: Android 12\nNext OS: Android 13\n*This device will receive at least bi-monthly SMRs updates\n","agentText":"11220","type":1,"responses":[{"responseID":36,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":9,"childGuideID":6853}]},{"questionID":20,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">motorola edge 30 neo<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on September, 2022<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on September, 2025<\/span><\/p>\n<hr \/>\n<p><span style=\"FONT-WEIGHT: normal\">Launched On: Android 12<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">*This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/79828305\/1670251841\" alt=\"Image\" \/><\/span><\/p>","taglessText":"motorola edge 30 neo\nCurrently receiving regular security updates.\nDevice launched on September, 2022\nSecurity updates will stop on September, 2025\n\nLaunched On: Android 12\nNext OS: Android 13\n*This device will receive at least bi-monthly SMRs updates\n","agentText":"11373","type":1,"responses":[{"responseID":40,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":20,"childGuideID":6853}]},{"questionID":21,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">motorola edge 30 fusion<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on September, 2022<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on September, 2025<\/span><\/p>\n<hr \/>\n<p><span style=\"FONT-WEIGHT: normal\">Launched On: Android 12<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">*This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" alt=\"Image\" \/><\/span><\/p>","taglessText":"motorola edge 30 fusion\nCurrently receiving regular security updates.\nDevice launched on September, 2022\nSecurity updates will stop on September, 2025\n\nLaunched On: Android 12\nNext OS: Android 13\n*This device will receive at least bi-monthly SMRs updates\n","agentText":"11358","type":1,"responses":[{"responseID":50,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":21,"childGuideID":6853}]},{"questionID":50,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">motorola edge 30<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on May, 2022<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on May, 2025<\/span><\/p>\n<hr \/>\n<p><span style=\"FONT-WEIGHT: normal\">Launched On: Android 12<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">*This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/p>","taglessText":"motorola edge 30\nCurrently receiving regular security updates.\nDevice launched on May, 2022\nSecurity updates will stop on May, 2025\n\nLaunched On: Android 12\nNext OS: Android 13\n*This device will receive at least bi-monthly SMRs updates\n","agentText":"11247","type":1,"responses":[{"responseID":136,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":50,"childGuideID":6853}]},{"questionID":11,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">motorola edge<span style=\"FONT-SIZE: 10pt; VERTICAL-ALIGN: super\">+<\/span> (2022)<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on February, 2022<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on February, 2025\u00a0<\/span><\/p>\n<hr \/>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Launched On: Android 12<\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">*This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/p>","taglessText":"motorola edge+ (2022)\nCurrently receiving regular security updates.\nDevice launched on February, 2022\nSecurity updates will stop on February, 2025\u00a0\n\nLaunched On: Android 12\nNext OS: Android 13\n*This device will receive at least bi-monthly SMRs updates\n","agentText":"11221","type":1,"responses":[{"responseID":37,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":11,"childGuideID":6853}]},{"questionID":39,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">motorola edge (2022)<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on August, 2022<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on August, 2025\u00a0<\/span><\/p>\n<hr \/>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Launched On: Android 12<\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">*This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/p>","taglessText":"motorola edge (2022)\nCurrently receiving regular security updates.\nDevice launched on August, 2022\nSecurity updates will stop on August, 2025\u00a0\n\nLaunched On: Android 12\nNext OS: Android 13\n*This device will receive at least bi-monthly SMRs updates\n","agentText":"11319","type":1,"responses":[{"responseID":78,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":39,"childGuideID":6853}]},{"questionID":65,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">motorola edge 20 lite<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on August, 2021<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on July, 2023\u00a0<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/79828305\/1670251841\" alt=\"Image\" \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"motorola edge 20 lite\nCurrently receiving regular security updates.\nDevice launched on August, 2021\nSecurity updates will stop on July, 2023\u00a0\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11166","type":1,"responses":[{"responseID":122,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":65,"childGuideID":6853}]},{"questionID":68,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">motorola edge 20 fusion<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on August, 2021<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on August, 2023\u00a0<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/79828305\/1670251841\" alt=\"Image\" \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"motorola edge 20 fusion\nCurrently receiving regular security updates.\nDevice launched on August, 2021\nSecurity updates will stop on August, 2023\u00a0\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11166","type":1,"responses":[{"responseID":127,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":68,"childGuideID":6853}]},{"questionID":66,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">motorola edge 20<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on August, 2021<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on August, 2023\u00a0<\/span><\/p>\n<hr \/>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Launched On: Android 11<\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 12<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">*This device will receive at least bi-monthly SMRs updates<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/79828305\/1670251841\" alt=\"Image\" \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"motorola edge 20\nCurrently receiving regular security updates.\nDevice launched on August, 2021\nSecurity updates will stop on August, 2023\u00a0\n\nLaunched On: Android 11\nNext OS: Android 12\n*This device will receive at least bi-monthly SMRs updates\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11167","type":1,"responses":[{"responseID":123,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":66,"childGuideID":6853}]},{"questionID":76,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">motorola edge (2021)<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on August, 2021<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on August, 2023\u00a0<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/79828305\/1670251841\" alt=\"Image\" \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"motorola edge (2021)\nCurrently receiving regular security updates.\nDevice launched on August, 2021\nSecurity updates will stop on August, 2023\u00a0\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11170","type":1,"responses":[{"responseID":144,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":76,"childGuideID":6853}]},{"questionID":61,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">motorola razr 40 ultra<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on June, 2023<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on June, 2027\u00a0<\/span><\/p>\n<hr \/>\n<p><span style=\"FONT-WEIGHT: normal\">Launched On: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 14<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">*This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"motorola razr 40 ultra\nCurrently receiving regular security updates.\nDevice launched on June, 2023\nSecurity updates will stop on June, 2027\u00a0\n\nLaunched On: Android 13\nNext OS: Android 14\n*This device will receive at least bi-monthly SMRs updates\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11577","type":1,"responses":[{"responseID":113,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":61,"childGuideID":6853}]},{"questionID":29,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">motorola razr 40s<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on November, 2023<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on November, 2027\u00a0<\/span><\/p>\n<hr \/>\n<p><span style=\"FONT-WEIGHT: normal\">Launched On: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 14<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">*This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"motorola razr 40s\nCurrently receiving regular security updates.\nDevice launched on November, 2023\nSecurity updates will stop on November, 2027\u00a0\n\nLaunched On: Android 13\nNext OS: Android 14\n*This device will receive at least bi-monthly SMRs updates\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11651","type":1,"responses":[{"responseID":65,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":29,"childGuideID":6853}]},{"questionID":82,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">motorola razr 40<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on July, 2023<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on July, 2027\u00a0<\/span><\/p>\n<hr \/>\n<p><span style=\"FONT-WEIGHT: normal\">Launched On: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 14<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">*This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"motorola razr 40\nCurrently receiving regular security updates.\nDevice launched on July, 2023\nSecurity updates will stop on July, 2027\u00a0\n\nLaunched On: Android 13\nNext OS: Android 14\n*This device will receive at least bi-monthly SMRs updates\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11591","type":1,"responses":[{"responseID":156,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":82,"childGuideID":6853}]},{"questionID":80,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">motorola razr+ (2023)<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on June, 2023<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on June, 2027\u00a0<\/span><\/p>\n<hr \/>\n<p><span style=\"FONT-WEIGHT: normal\">Launched On: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 14<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">*This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"motorola razr+ (2023)\nCurrently receiving regular security updates.\nDevice launched on June, 2023\nSecurity updates will stop on June, 2027\u00a0\n\nLaunched On: Android 13\nNext OS: Android 14\n*This device will receive at least bi-monthly SMRs updates\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11489","type":1,"responses":[{"responseID":151,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":80,"childGuideID":6853}]},{"questionID":83,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">motorola razr (2023)<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on September, 2023<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on September, 2027\u00a0<\/span><\/p>\n<hr \/>\n<p><span style=\"FONT-WEIGHT: normal\">Launched On: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 14<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">*This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/p>","taglessText":"motorola razr (2023)\nCurrently receiving regular security updates.\nDevice launched on September, 2023\nSecurity updates will stop on September, 2027\u00a0\n\nLaunched On: Android 13\nNext OS: Android 14\n*This device will receive at least bi-monthly SMRs updates\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11592","type":1,"responses":[{"responseID":157,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":83,"childGuideID":6853}]},{"questionID":79,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">motorola razr (2022)<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving regular security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on October, 2022<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on October, 2025<\/span><\/p>\n<hr \/>\n<p><span style=\"FONT-WEIGHT: normal\">Launched On: Android 12<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\">*This device will receive at least bi-monthly SMRs updates<br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/span><\/p>","taglessText":"motorola razr (2022)\nCurrently receiving regular security updates.\nDevice launched on October, 2022\nSecurity updates will stop on October, 2025\n\nLaunched On: Android 12\nNext OS: Android 13\n*This device will receive at least bi-monthly SMRs updates\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11371","type":1,"responses":[{"responseID":150,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":79,"childGuideID":6853}]},{"questionID":16,"text":"<p style=\"FONT-SIZE: 14pt; FONT-WEIGHT: bold\">ThinkPhone by motorola<\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\">Currently receiving monthly security updates.<\/span><\/span><\/span><\/span><\/span><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Device launched on January, 2023<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Security updates will stop on January, 2027<\/span><\/p>\n<hr \/>\n<p><span style=\"FONT-WEIGHT: normal\">Launched On: Android 13<\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\">Next OS: Android 14<\/span><span style=\"FONT-WEIGHT: normal; FONT-STYLE: normal\"><br \/><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: normal\"><img alt=\"android enterprise recommended\" src=\"https:\/\/motorola-global-eng.custhelp.com\/ci\/fattach\/get\/72404017\/1604950378\" width=\"173\" height=\"65\" \/><\/span><\/span><\/p>\n<p><span style=\"FONT-WEIGHT: normal\"><span style=\"FONT-WEIGHT: bold\">Please note<\/span>: Channels and regions may have different launch dates and support cycle may vary.<\/span><\/p>","taglessText":"ThinkPhone by motorola\nCurrently receiving monthly security updates.\nDevice launched on January, 2023\nSecurity updates will stop on January, 2027\n\nLaunched On: Android 13\nNext OS: Android 14\n\nPlease note: Channels and regions may have different launch dates and support cycle may vary.","agentText":"11418","type":1,"responses":[{"responseID":16,"responseText":"","text":"Security patch details for all Motorola products","type":2,"parentQuestionID":16,"childGuideID":6853}]}],"guideSessionID":"loji9sqq"},"types":{"QUESTION_RESPONSE":1,"GUIDE_RESPONSE":2,"ANSWER_RESPONSE":4,"TEXT_RESPONSE":8,"URL_POST":2,"URL_GET":1,"BUTTON_QUESTION":1,"MENU_QUESTION":2,"LIST_QUESTION":3,"LINK_QUESTION":5,"IMAGE_QUESTION":7,"TEXT_QUESTION":6,"RADIO_QUESTION":4},"session":"loji9sqq","f_tok":"ZlV_aWs2S2k2cXlRbHVtQnd0aHk4WHNad21fZWlINFo3V08yZHk5RzJRWVUwSkZZVGNxODI4RF9FbjZ6ZTJqa3ZKbTNsWUFmYlNlUzAzV1BGNmw3QkplajhUM3JJYVNVVTRjZGg0ZWZvMlNqUm9LQ0FneWpIRVU4c3RJRk9taH56MnNGS2NtTUQ1akJ1SmdRQnp3YjdkVGlEUHJSSk5WelRy","channel":1,"isSpider":1}},'eyJleHRlbmRzIjpbInN0YW5kYXJkXC9rbm93bGVkZ2ViYXNlXC9HdWlkZWRBc3Npc3RhbnQiXSwibm9uRGVmYXVsdEF0dHJWYWx1ZXMiOnsic3RhdGljX2d1aWRlX2lkIjoiNzExMiIsInNpbmdsZV9xdWVzdGlvbl9kaXNwbGF5IjoidHJ1ZSIsImxhYmVsX3F1ZXN0aW9uX2JhY2siOiJHbyBCYWNrIiwicGFnZV9uYW1lIjoic2VjdXJpdHlfZ3VpZGUiLCJsYWJlbF90ZXh0X3Jlc3VsdCI6IiJ9fQ==','fUNkl7Dp67_BGKppVkyQL_EqkJ6xiNCdrLpeuylcxxWUuiZuemtyOCUYLQP0TYVdCIXRydjorJbPUf25R9roFpAMJ65ZPa8nR07l01I9F1VxvYcX9zS5rz~SgGzDEcAhph3Q1ks1Idy~Q!',1704380485,'GuidedAssistantSecurity_4','custom/knowledgebase/GuidedAssistantSecurity','Custom.Widgets.knowledgebase.GuidedAssistantSecurity','4','ZlVZSkU0VmFHZFY3UXVyfkpxcTV5VWgydkhVaGlhZnQ0QWQyYlZGfmw4eG45TGlKcmxTVWRjeHNoWTNlVFZqRVNfNVN4WWZjMHJxd0N5U2tpeGZ1ZFFCa1lhTjdwTUF6amxWaFZ6c3lfaGZsRGxFV1Vtb1JXOHNpN1NzdWRzRFVpV0JaaU9tZXlfUWo2cmI5QVJZbXZ5Z1ZnbnN3cnZ5RG1_');
W[c]({"i":{"c":"AnswerFeedback","n":"AnswerFeedback","w":5},"a":{"getFeedbackToken":"\/ci\/ajax\/widget\/custom\/feedback\/AnswerFeedback\/getFeedbackToken","submitConfirmIt":"\/ci\/ajax\/widget\/custom\/feedback\/AnswerFeedback\/submitConfirmIt","country":"US","feedbackwordlimit":1500,"submit_rating_ajax":"\/ci\/ajaxRequest\/submitAnswerRating","submit_feedback_ajax":"\/ci\/ajaxRequest\/submitAnswerFeedback","label_title":"Was this page helpful?","label_accessible_option_description":"Rate answer %d of %d","label_dialog_title":"Thanks for your feedback","label_dialog_description":"Your rating has been submitted, please tell us how we can make this answer more useful.","options_count":2,"options_descending":false,"label_yes_button":"Yes","label_no_button":"No","feedback_page_url":"","dialog_threshold":1,"label_feedback_submitted":"Your feedback has been submitted.","label_feedback_thanks":"Thanks for your feedback.","label_email_address":"Email","label_comment_box":"Your Feedback","label_send_button":"Submit","label_cancel_button":"Cancel","use_rank_labels":false},"j":{"f_tok":"ZlVaamd3MkRVS194anFsYVhHR2VGSjlrMFV1cHRxa2FQbzdnS3BtSUVnR1kwcmRRSmw0N2pyTjl1bEsyd3BMbzg5SURDMTY4ZVZXQU5vSmZGRGZaQWtSWE1zMkxwR2gzd1R4MnYya1hrbk9ac1lfUWxCbWU0VXI3Y2NpdXdGOTZqSG9rZFR_UWxSeVVNekhCX2pBV2NVdGJRaVd1cFdUTDhO","isProfile":false,"email":"","buttonView":true,"answerID":null,"ip":"73.16.152.10","customer_country":{"ip":"73.16.152.10","iso_code":"US","country_name":"United States"}}},'eyJleHRlbmRzIjpbInN0YW5kYXJkXC9mZWVkYmFja1wvQW5zd2VyRmVlZGJhY2siXSwibm9uRGVmYXVsdEF0dHJWYWx1ZXMiOnsibGFiZWxfdGl0bGUiOiJXYXMgdGhpcyBwYWdlIGhlbHBmdWw/In0sImNsaWNrc3RyZWFtIjp7ImdldEZlZWRiYWNrVG9rZW4iOiJjdXN0b21fYWN0aW9uIiwic3VibWl0Q29uZmlybUl0IjoiY3VzdG9tX2FjdGlvbiJ9fQ==','fU7wFz7d1SzMEbJRcwsePxVmgc817Z5zyQpeivyYvVnFNcehYoVuh9ddR3svQN_WwK3PS4PMhgfm1uvIkrHF_tvgp0EetpFJRXdq~xXzKEuyGm1~hyF9Uv1bjtOUDogC0KyQZdHI_LwgM!',1704380485,'AnswerFeedback_5','custom/feedback/AnswerFeedback','Custom.Widgets.feedback.AnswerFeedback','5','ZlVsZzhkY2NQWXA1OGFkOGVKXzNUWHl1amhfcloxRFhQZG8zM2ppeVY1UDhSYVNkeDNUY2dFRmw5MHpUWGZKc1JZeTJJZ1dTNnZrWXIxbXRSZjBsT2NjSzFBfmpPVFZUZmZlSlBGMWtBS0liTENrQkxDbjJiaF9jREEwdmdFQ0taUnFTTGVGaW93N0FCWXBaSm45NDNpN1dXdzRPVTBreFZl');
W[c]({"i":{"c":"footer","n":"footer","w":6},"a":[],"j":{"ipdetectenabletip":"No","msg":""}},'W10=','fUQ7mRDaT0AHW6WXNjqGdgt_tD3cI6Mz1UOV_LpT3m3V7MaoHiNWDqJETAqfMbeG2L5l8nKwm4fR0f04Sl5vzYT32am27nDw4E1_CsISOZVbYRW85Kyyv~Mv4mmyBuv5SdcMJibDvACjo!',1704380485,'footer_6','custom/Template/footer','Custom.Widgets.Template.footer','6','ZlVlam5XYWtGd3VtUUR4VXZaQ1c1MU9kWno4SDg3YzMzNXFJSFQ2YUVyenBHUVUzdVlaSDdPTDY0cFdQYWlFUnFuc3g1NnhodFFGcWlCdm5sfnQ3OThRWmFnVGVmaktRN1pveG1xc3g4OHhpOFhGTF9aeUtObVpHSmlweElhWTBJallRU3MyVGJSc2h3TDVlSExMXzNISGtSWEplV3J6R08z');
W[c]({"i":{"c":"loader","n":"loader","w":7},"a":[],"j":[]},'W10=','fU5hXTZEC_oDUdYBtsgYhaPEIl~c96KEdCBrmRl3YLABL4tu8wf1JM8Fefg4fJXU4wl~ap6b2YCm8TY99XYfLS8CjWBY9TZktVbiYnBoefQMjhFyX68cA5SLQWkoTrIr1FQDKqkvtUs8A!',1704380485,'loader_7','custom/Template/loader','Custom.Widgets.Template.loader','7','ZlVOYjBEdXdTR0lTb3g1YkYyRlhUTzZFN1Y3a185QmdiX0FBZEt3MGN4TVJIS1FFYlZrRTB5OFpIaDh6ZmRFUVBFX2h5cmxQa3VYcE8zSEVDSmpsRFNvc3NRRGVrYnh2Q0h1eDFiS25vdnY3bHpNQjgySWlBbUlvc21tQTRMWWhvSGlpMVBIaVlpb0ZnVEpsb25peG5USjVQcEJaal93TkNx');
})});
/* ]]> */
</script>
<script type="text/javascript">
var _rnq=_rnq||[];_rnq.push({"s":"loji9sqq","uh":"c2c459c1","uc":"en-us.support.motorola.com\/app\/software-security-update","b":"ca23836","i":"motorola_global:motorola_global_portal","f":"rnw","p":"Customer Portal","v":"22.11.0.1-b54-sp4","th":"www.rnengage.com"});
(function(e){var b,d,a=document.createElement("iframe"),c=document.getElementsByTagName("script");a.src="javascript:false";a.title="Action Capture";a.role="presentation";(a.frameElement||a).style.cssText="position:absolute;width:0;height:0;border:0";c=c[c.length-1];c.parentNode.insertBefore(a,c);try{b=a.contentWindow.document}catch(f){d=document.domain,a.src="javascript:var d=document.open();d.domain='"+d+"';void(0);",b=a.contentWindow.document}b.open()._l=function(){for(var a;e.length;)a=this.createElement("script"),
d&&(this.domain=d),a.src=e.pop(),this.body.appendChild(a)};b.write('<head><title>Action Capture</title></head><body onload="document._l();">');b.close()})(["https://www.rnengage.com/api/e/ca23836/e.js","//www.rnengage.com/api/1/javascript/acs.js"]);
</script></body>
<script src="/euf/assets/motorola_v3/js/bootstrap.min.js"></script>
<script src="/euf/assets/mcp/lib/jquery.validate.min.js"></script>
<script src="/euf/assets/serviceandrepair/repair/js/additional-methods.js"></script>
<script src="/euf/assets/motorola_v3/js/bootstrap-model.js"></script>
<script>window.interdeal={"sitekey":"c262cc4f3661556a97dfd2df2e98b946","Position":"Left","Menulang":"EN","domains":{"js":"https://cdn.equalweb.com/","acc":"https://access.equalweb.com/"},"btnStyle":{"vPosition":["20%",null],"scale":["0.4","0.4"],"color":{"main":"#ffffff","second":"#000000"},"icon":{"type":1,"shape":"semicircle","outline":false}}};(function(doc, head, body){var coreCall=doc.createElement('script');coreCall.src=interdeal.domains.js+'core/4.5.12/accessibility.js';coreCall.defer=true;coreCall.integrity='sha512-QHRb6G6oDd5olis2Cry60Jf8LsyOtVE0nD9n2LcY20fodiZahlu99srQ3UNKvosE/tZrQ2Fs4CeAPX+MCZpg7w==';coreCall.crossOrigin= 'anonymous';coreCall.setAttribute('data-cfasync', true );body? body.appendChild(coreCall) : head.appendChild(coreCall);})(document, document.head, document.body);</script></html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment