CINXE.COM
Mortality and Other Rate Tables
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head><title> Mortality and Other Rate Tables </title><meta name="description" content="The underlying database for the MORT application is a set of XML files that follow ACORD’s XTbML standards. The Association for Cooperative Operations Research and Development (ACORD) is a non-profit organization dedicated to the electronic exchange of insurance data. The "XTbML Background" screen has information related to the formation of the underlying structure utilized by MORT and summarizes the SOA’s work with ACORD. The SOA and ACORD partnered in 2002 to develop their set of data standards. XML files were chosen as the desired storage format because they provide flexibility and portability for future maintenance of this delivery platform. See the ‘XTbML History’ link to learn more about XTbML." /><link href="Styles/Site.css" rel="stylesheet" type="text/css" /> <link href="Scripts/custom-theme/jquery-ui-1.8.10.custom.css" rel="stylesheet" type="text/css" /> <link type="text/css" rel="stylesheet" href="Styles/ui.jqgrid.css" /> <script src="Scripts/jquery-1.4.2.min.js" type="text/javascript"></script> <script src="Scripts/i18n/grid.locale-en.js" type="text/javascript"></script> <script src="Scripts/jquery.jqGrid.min.js" type="text/javascript"></script> <script src="Scripts/jquery.text-overflow.min.js" type="text/javascript"></script> <script src="Scripts/jquery-ui-1.8.11.custom.min.js" type="text/javascript"></script> <script src="Scripts/jquery.cookies.2.2.0.min.js" type="text/javascript"></script> <script type="text/javascript"> var JSON; if (!JSON) { JSON = {}; } (function () { "use strict"; function f(n) { return n < 10 ? '0' + n : n; } if (typeof Date.prototype.toJSON !== 'function') { Date.prototype.toJSON = function (key) { return isFinite(this.valueOf()) ? this.getUTCFullYear() + '-' + f(this.getUTCMonth() + 1) + '-' + f(this.getUTCDate()) + 'T' + f(this.getUTCHours()) + ':' + f(this.getUTCMinutes()) + ':' + f(this.getUTCSeconds()) + 'Z' : null; }; String.prototype.toJSON = Number.prototype.toJSON = Boolean.prototype.toJSON = function (key) { return this.valueOf(); }; } var cx = /[\u0000\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g, escapable = /[\\\"\x00-\x1f\x7f-\x9f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g, gap, indent, meta = { '\b': '\\b', '\t': '\\t', '\n': '\\n', '\f': '\\f', '\r': '\\r', '"': '\\"', '\\': '\\\\' }, rep; function quote(string) { escapable.lastIndex = 0; return escapable.test(string) ? '"' + string.replace(escapable, function (a) { var c = meta[a]; return typeof c === 'string' ? c : '\\u' + ('0000' + a.charCodeAt(0).toString(16)).slice(-4); }) + '"' : '"' + string + '"'; } function str(key, holder) { var i, k, v, length, mind = gap, partial, value = holder[key]; if (value && typeof value === 'object' && typeof value.toJSON === 'function') { value = value.toJSON(key); } if (typeof rep === 'function') { value = rep.call(holder, key, value); } switch (typeof value) { case 'string': return quote(value); case 'number': return isFinite(value) ? String(value) : 'null'; case 'boolean': case 'null': return String(value); case 'object': if (!value) { return 'null'; } gap += indent; partial = []; if (Object.prototype.toString.apply(value) === '[object Array]') { length = value.length; for (i = 0; i < length; i += 1) { partial[i] = str(i, value) || 'null'; } v = partial.length === 0 ? '[]' : gap ? '[\n' + gap + partial.join(',\n' + gap) + '\n' + mind + ']' : '[' + partial.join(',') + ']'; gap = mind; return v; } if (rep && typeof rep === 'object') { length = rep.length; for (i = 0; i < length; i += 1) { if (typeof rep[i] === 'string') { k = rep[i]; v = str(k, value); if (v) { partial.push(quote(k) + (gap ? ': ' : ':') + v); } } } } else { for (k in value) { if (Object.prototype.hasOwnProperty.call(value, k)) { v = str(k, value); if (v) { partial.push(quote(k) + (gap ? ': ' : ':') + v); } } } } v = partial.length === 0 ? '{}' : gap ? '{\n' + gap + partial.join(',\n' + gap) + '\n' + mind + '}' : '{' + partial.join(',') + '}'; gap = mind; return v; } } if (typeof JSON.stringify !== 'function') { JSON.stringify = function (value, replacer, space) { var i; gap = ''; indent = ''; if (typeof space === 'number') { for (i = 0; i < space; i += 1) { indent += ' '; } } else if (typeof space === 'string') { indent = space; } rep = replacer; if (replacer && typeof replacer !== 'function' && (typeof replacer !== 'object' || typeof replacer.length !== 'number')) { throw new Error('JSON.stringify'); } return str('', { '': value }); }; } if (typeof JSON.parse !== 'function') { JSON.parse = function (text, reviver) { var j; function walk(holder, key) { var k, v, value = holder[key]; if (value && typeof value === 'object') { for (k in value) { if (Object.prototype.hasOwnProperty.call(value, k)) { v = walk(value, k); if (v !== undefined) { value[k] = v; } else { delete value[k]; } } } } return reviver.call(holder, key, value); } text = String(text); cx.lastIndex = 0; if (cx.test(text)) { text = text.replace(cx, function (a) { return '\\u' + ('0000' + a.charCodeAt(0).toString(16)).slice(-4); }); } if (/^[\],:{}\s]*$/ .test(text.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g, '@') .replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g, ']') .replace(/(?:^|:|,)(?:\s*\[)+/g, ''))) { j = eval('(' + text + ')'); return typeof reviver === 'function' ? walk({ '': j }, '') : j; } throw new SyntaxError('JSON.parse'); }; } } ()); </script> <style type="text/css"> .ui-jqgrid tr.jqgrow td { white-space: nowrap; /* width: 100%; IE6 needs any width */ /*overflow: hidden; "overflow" value must be different from "visible" */ -o-text-overflow: ellipsis; /* Opera 9-10 */ text-overflow: ellipsis; /* IE, WebKit (Safari, Chrome), Opera 11 */ } </style> <script type="text/javascript"> jQuery(document).ready(function () { if ($.cookies.get('keywords') != null) { $("#txtKeyWords").val($.cookies.get('keywords')); } if ($.cookies.get('type') != null) { $("#ddltype").val($.cookies.get('type')); } if ($.cookies.get('usage') != null) { $("#ddlUsage").val($.cookies.get('usage')); } if ($.cookies.get('nation') != null) { $("#ddlNation").val($.cookies.get('nation')); } $("#tblcontents").jqGrid({ url: 'WebService.asmx/GetListOfTables', datatype: 'json', mtype: 'POST', ajaxGridOptions: { contentType: 'application/json; charset=utf-8' }, serializeGridData: function (postData) { postData.keyWords = $("#txtKeyWords").val(); postData.type = $("#ddltype").val(); postData.usage = $("#ddlUsage").val(); postData.nation = $("#ddlNation").val(); return JSON.stringify(postData); }, jsonReader: { root: function (obj) { return obj.d.rows; }, page: function (obj) { return obj.d.page; }, total: function (obj) { return obj.d.total; }, records: function (obj) { return obj.d.records; }, repeatitems: false }, onSelectRow: function (id) { var isChecked = false; var checkboxes = $('.cbox'); for (i = 0; i < checkboxes.length; i++) { //alert("id: " + checkboxes[i].id); if (checkboxes[i].checked == true) { isChecked = true } } if (isChecked == true) { //alert("At least one selected"); $("#btnZipSelected").removeAttr("disabled") } else { //alert("none selected"); $("#btnZipSelected").attr("disabled", "disabled") } }, //height: 550, colNames: ['#', 'Table Name/Description', 'Usage', 'Nation', 'Table layout', 'Actions'], colModel: [{ name: 'TableIdentity', width: '20px', sortable: true, align: 'center' }, { name: 'TableName', sortable: true }, { name: 'ContentType', width: '35px', sortable: true }, { name: 'Nation', width: '45px', sortable: true }, { name: 'Type', width: '25px', sortable: true }, { name: 'Links', width: '60px', sortable: false, formatter: linksFormatter}], pager: $('#tblcontentsPager'), rowNum: ($.cookies.get('c_rownum') == null) ? '10' : $.cookies.get('c_rownum'), rowList: [5, 10, 20, 50, 100, 1000], sortname: ($.cookies.get('c_sortname') == null) ? 'TableIdentity' : $.cookies.get('c_sortname'), sortorder: ($.cookies.get('c_sortorder') == null) ? 'asc' : $.cookies.get('c_sortorder'), page: ($.cookies.get('c_page') == null) ? '1' : $.cookies.get('c_page'), viewrecords: true, recordtext: 'Table(s) {0} - {1} of {2}', autowidth: true, height: 'auto', hoverrows: false, multiselect: true, gridComplete: function () { $(".ui-jqgrid tr.jqgrow td").textOverflow('...', true); //export links $(".Export").click(function (e) { e.preventDefault(); var targetUrl = $(this).attr("href"); $("#dialog-confirm").dialog({ buttons: { "Accept": function () { $(this).dialog("close"); newDate = new Date(); newDate.setDate(newDate.getDate() + 180); $.cookies.set('disclaimer', '1', { expiresAt: newDate, path: '/' }); window.location.href = targetUrl; }, "Deny": function () { $(this).dialog("close"); } } }); if ($.cookies.get('disclaimer') == null) { $("#dialog-confirm").dialog("open"); } else { window.location.href = targetUrl; } }); }, loadError: function (xhr, st, str) { alert(st + ": Response: " + xhr.status + " " + xhr.statusText + "\nStack Trace:\n" + xhr.responseText); } }); $("#btnFilter").click(function () { if ($("#txtKeyWords").val() != '') { $.cookies.set('keywords', $("#txtKeyWords").val(), { expiresAt: 0, path: '/' }); } else { $.cookies.del('keywords'); } $("#tblcontents").trigger("reloadGrid"); }); $("#ddltype").change(function () { $.cookies.set('type', $("#ddltype").val(), { expiresAt: 0, path: '/' }); $("#tblcontents").trigger("reloadGrid"); }); $("#ddlUsage").change(function () { $.cookies.set('usage', $("#ddlUsage").val(), { expiresAt: 0, path: '/' }); $("#tblcontents").trigger("reloadGrid"); }); $("#ddlNation").change(function () { $.cookies.set('nation', $("#ddlNation").val(), { expiresAt: 0, path: '/' }); $("#tblcontents").trigger("reloadGrid"); }); $("#btnReset").click(function () { $.cookies.del('keywords'); $.cookies.del('type'); $.cookies.del('usage'); $.cookies.del('nation'); $("select#ddltype,select#ddlUsage,select#ddlNation").val("-1"); $("input#txtKeyWords").val(""); $("#tblcontents").trigger("reloadGrid"); }); $("#cb_tblcontents").click(function (e) { var isChecked = false; var checkboxes = $('.cbox'); for (i = 0; i < checkboxes.length; i++) { //alert("id: " + checkboxes[i].id); if (checkboxes[i].checked == true) { isChecked = true } } if (isChecked == true) { //alert("At least one selected"); $("#btnZipSelected").removeAttr("disabled") } else { //alert("none selected"); $("#btnZipSelected").attr("disabled", "disabled") } }); $("#cb_tblcontents").attr({ title: "Check Page" }); var $btn = $('#btnFilter'); var $form = $btn.parents('.form'); $form.keypress(function (e) { if (e.which == 13 && e.target.type != 'textarea') { if ($btn[0].type == 'submit') $btn[0].click(); else eval($btn[0].href); return false; } }); var dlg = $("#dialog-confirm").dialog({ resizable: false, autoOpen: false, height: 550, width: 900, modal: true }); $("#btnZipSelected").click(function (e) { $("#dialog-confirm").dialog({ buttons: { "Accept": function () { $(this).dialog("close"); newDate = new Date(); newDate.setDate(newDate.getDate() + 180); $.cookies.set('disclaimer', '1', { expiresAt: newDate, path: '/' }); btnZipSelected_click(); }, "Deny": function () { $(this).dialog("close"); } } }); if ($.cookies.get('disclaimer') == null) { $("#dialog-confirm").dialog("open"); } else { btnZipSelected_click(); } }); $("#btnGo,#btnFilter,#btnZipSelected ").click(function () { $("#lblValidation").text(""); }); }); function btnZipSelected_click() { var grid = $("#tblcontents") var selArr = grid.getGridParam("selarrrow"); var selected = ""; for (i = 0; i < selArr.length; i++) { if (selected.length == 0) { selected = grid.getRowData(selArr[i]).TableIdentity; } else { selected = selected + "," + grid.getRowData(selArr[i]).TableIdentity; } } $("#txtSelectedValues").val(selected) $("#btnZip").click(); } function linksFormatter(cellvalue, options, rowObject) { var str = "<a href='ViewTable.aspx?&TableIdentity=" + rowObject.TableIdentity + "' >View</a>"; str = str + " <a class='Export' href='Export.aspx?Type=xls&TableIdentity=" + rowObject.TableIdentity + "'>Excel</a>"; str = str + " <a class='Export' href='Export.aspx?Type=xlsx&TableIdentity=" + rowObject.TableIdentity + "'>Excel 2007</a>"; str = str + " <a class='Export' href='Export.aspx?Type=csv&TableIdentity=" + rowObject.TableIdentity + "'>CSV</a>"; str = str + " <a class='Export' href='Export.aspx?Type=xml&TableIdentity=" + rowObject.TableIdentity + "'>XML</a>"; return str; }; $(window).unload(function () { var sSortName = $('#tblcontents').jqGrid('getGridParam', 'sortname'); var sSortOrder = $('#tblcontents').jqGrid('getGridParam', 'sortorder'); var sPage = $('#tblcontents').jqGrid('getGridParam', 'page'); var sRownum = $('#tblcontents').jqGrid('getGridParam', 'rowNum'); $.cookies.set('c_sortname', sSortName, { expiresAt: 0, path: '/' }); $.cookies.set('c_sortorder', sSortOrder, { expiresAt: 0, path: '/' }); $.cookies.set('c_page', sPage, { expiresAt: 0, path: '/' }); $.cookies.set('c_rownum', sRownum, { expiresAt: 0, path: '/' }); }); </script> <!-- Google Tag Manager --> <!--RTRAN 03-30-2022 Update --> <!-- OneTrust Cookies Consent Notice start for soa.org --> <script src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js" type="text/javascript" charset="UTF-8" data-domain-script="a99ec4f7-14bc-4efa-9f79-b633c187e043" ></script> <script type="text/javascript"> function OptanonWrapper() { } </script> <!-- OneTrust Cookies Consent Notice end for soa.org --> <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-M4WCJBM');</script> <!-- End Google Tag Manager --> <script type='text/javascript'> if (typeof jQuery != 'undefined') { var filetypes = /\.(zip|exe|dmg|pdf|doc.*|xls.*|ppt.*|mp3|txt|rar|wma|mov|avi|wmv|flv|wav)$/i; var baseHref = ''; if (jQuery('base').attr('href') != undefined) baseHref = jQuery('base').attr('href'); var hrefRedirect = ''; jQuery('body').on('click', 'a', function(event) { var el = jQuery(this); var track = true; var href = (typeof(el.attr('href')) != 'undefined' ) ? el.attr('href') : ''; var isThisDomain = href.match(document.domain.split('.').reverse()[1] + '.' + document.domain.split('.').reverse()[0]); if (!href.match(/^javascript:/i)) { var elEv = []; elEv.value=0, elEv.non_i=false; if (href.match(/^mailto\:/i)) { elEv.category = 'email'; elEv.action = 'click'; elEv.label = href.replace(/^mailto\:/i, ''); elEv.loc = href; } else if (href.match(filetypes)) { var extension = (/[.]/.exec(href)) ? /[^.]+$/.exec(href) : undefined; elEv.category = 'download'; elEv.action = 'click-' + extension[0]; elEv.label = href.replace(/ /g,'-'); elEv.loc = baseHref + href; } else if (href.match(/^https?\:/i) && !isThisDomain) { elEv.category = 'external'; elEv.action = 'click'; elEv.label = href.replace(/^https?\:\/\//i, ''); elEv.non_i = true; elEv.loc = href; } else if (href.match(/^tel\:/i)) { elEv.category = 'telephone'; elEv.action = 'click'; elEv.label = href.replace(/^tel\:/i, ''); elEv.loc = href; } else track = false; if (track) { var ret = true; if((elEv.category == 'external' || elEv.category == 'download') && (el.attr('target') == undefined || el.attr('target').toLowerCase() != '_blank') ) { hrefRedirect = elEv.loc; ga('send','event', elEv.category.toLowerCase(),elEv.action.toLowerCase(),elEv.label.toLowerCase(),elEv.value,{ 'nonInteraction': elEv.non_i , 'hitCallback':gaHitCallbackHandler }); ret = false; } else { ga('send','event', elEv.category.toLowerCase(),elEv.action.toLowerCase(),elEv.label.toLowerCase(),elEv.value,{ 'nonInteraction': elEv.non_i }); } return ret; } } }); gaHitCallbackHandler = function() { window.location.href = hrefRedirect; } } </script> </head> <body> <form method="post" action="./" id="ctl01"> <div class="aspNetHidden"> <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" /> <input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" /> <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUKLTg4MjQ5MDA3NA9kFgJmD2QWAgIDD2QWAgIFD2QWAgIBD2QWBAICDw8WAh4EVGV4dGVkZAIED2QWBgIBDxAPFgYeDURhdGFUZXh0RmllbGQFC0NvbnRlbnRUeXBlHg5EYXRhVmFsdWVGaWVsZAULQ29udGVudFR5cGUeC18hRGF0YUJvdW5kZ2QQFRUFPEFsbD4JQURCLCBBRCZEE0FubnVpdGFudCBNb3J0YWxpdHkKQ2xhaW0gQ29zdA9DbGFpbSBJbmNpZGVuY2URQ2xhaW0gVGVybWluYXRpb24JQ1NPIC8gQ0VUE0Rpc2FiaWxpdHkgUmVjb3ZlcnkYRGlzYWJsZWQgTGl2ZXMgTW9ydGFsaXR5FkdlbmVyYXRpb25hbCBNb3J0YWxpdHkKR3JvdXAgTGlmZRdIZWFsdGh5IExpdmVzIE1vcnRhbGl0eRdJbnN1cmVkIExpdmVzIE1vcnRhbGl0eSJJbnN1cmVkIExpdmVzIE1vcnRhbGl0eSAtIFVsdGltYXRlCkxpZmUgVGFibGUUUG9wdWxhdGlvbiBNb3J0YWxpdHkTUHJlbWl1bSBQZXJzaXN0ZW5jeRBQcm9qZWN0aW9uIFNjYWxlClJlbWFycmlhZ2URU2VsZWN0aW9uIEZhY3RvcnMVVGVybWluYXRpb24gVm9sdW50YXJ5FRUCLTEJQURCLCBBRCZEE0FubnVpdGFudCBNb3J0YWxpdHkKQ2xhaW0gQ29zdA9DbGFpbSBJbmNpZGVuY2URQ2xhaW0gVGVybWluYXRpb24JQ1NPIC8gQ0VUE0Rpc2FiaWxpdHkgUmVjb3ZlcnkYRGlzYWJsZWQgTGl2ZXMgTW9ydGFsaXR5FkdlbmVyYXRpb25hbCBNb3J0YWxpdHkKR3JvdXAgTGlmZRdIZWFsdGh5IExpdmVzIE1vcnRhbGl0eRdJbnN1cmVkIExpdmVzIE1vcnRhbGl0eSJJbnN1cmVkIExpdmVzIE1vcnRhbGl0eSAtIFVsdGltYXRlCkxpZmUgVGFibGUUUG9wdWxhdGlvbiBNb3J0YWxpdHkTUHJlbWl1bSBQZXJzaXN0ZW5jeRBQcm9qZWN0aW9uIFNjYWxlClJlbWFycmlhZ2URU2VsZWN0aW9uIEZhY3RvcnMVVGVybWluYXRpb24gVm9sdW50YXJ5FCsDFWdnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2RkAgMPEA8WBh8BBQZOYXRpb24fAgUGTmF0aW9uHwNnZBAVOAU8QWxsPhhVbml0ZWQgU3RhdGVzIG9mIEFtZXJpY2EJQXJnZW50aW5hCUF1c3RyYWxpYQdBdXN0cmlhB0JlbGdpdW0HQm9saXZpYQZCcmF6aWwGQ2FuYWRhBUNoaWxlBUNoaW5hCENvbHVtYmlhCkNvc3RhIFJpY2EEQ3ViYQdEZW5tYXJrB0VjdWFkb3IFRWd5cHQLRWwgU2FsdmFkb3IHRmlubGFuZAZGcmFuY2UHR2VybWFueQZHcmVlY2UJR3VhdGVtYWxhBUhhaXRpCEhvbmR1cmFzCUhvbmcgS29uZwdJY2VsYW5kBUluZGlhCUluZG9uZXNpYQdJcmVsYW5kBklzcmFlbAVJdGFseQVKYXBhbgVLb3JlYQhNYWxheXNpYQZNZXhpY28LTmV0aGVybGFuZHMLTmV3IFplYWxhbmQJTmljYXJhZ3VhBk5vcndheQZQYW5hbWEEUGVydQtQaGlsaXBwaW5lcwZQb2xhbmQIUG9ydHVnYWwJU2luZ2Fwb3JlCFNsb3ZlbmlhDFNvdXRoIEFmcmljYQVTcGFpbgZTd2VkZW4LU3dpdHplcmxhbmQGVGFpd2FuCFRoYWlsYW5kDlVuaXRlZCBLaW5nZG9tB1VydWd1YXkJVmVuZXp1ZWxhFTgCLTEYVW5pdGVkIFN0YXRlcyBvZiBBbWVyaWNhCUFyZ2VudGluYQlBdXN0cmFsaWEHQXVzdHJpYQdCZWxnaXVtB0JvbGl2aWEGQnJhemlsBkNhbmFkYQVDaGlsZQVDaGluYQhDb2x1bWJpYQpDb3N0YSBSaWNhBEN1YmEHRGVubWFyawdFY3VhZG9yBUVneXB0C0VsIFNhbHZhZG9yB0ZpbmxhbmQGRnJhbmNlB0dlcm1hbnkGR3JlZWNlCUd1YXRlbWFsYQVIYWl0aQhIb25kdXJhcwlIb25nIEtvbmcHSWNlbGFuZAVJbmRpYQlJbmRvbmVzaWEHSXJlbGFuZAZJc3JhZWwFSXRhbHkFSmFwYW4FS29yZWEITWFsYXlzaWEGTWV4aWNvC05ldGhlcmxhbmRzC05ldyBaZWFsYW5kCU5pY2FyYWd1YQZOb3J3YXkGUGFuYW1hBFBlcnULUGhpbGlwcGluZXMGUG9sYW5kCFBvcnR1Z2FsCVNpbmdhcG9yZQhTbG92ZW5pYQxTb3V0aCBBZnJpY2EFU3BhaW4GU3dlZGVuC1N3aXR6ZXJsYW5kBlRhaXdhbghUaGFpbGFuZA5Vbml0ZWQgS2luZ2RvbQdVcnVndWF5CVZlbmV6dWVsYRQrAzhnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2RkAgUPEA8WBh8BBQdLZXl3b3JkHwIFB0tleXdvcmQfA2dkEBUJBTxBbGw+CUFnZ3JlZ2F0ZQxBdHRhaW5lZCBBZ2ULQ29udGludWFuY2UIRHVyYXRpb24MR2VuZXJhdGlvbmFsBlNlbGVjdBFTZWxlY3QgJiBVbHRpbWF0ZQhVbHRpbWF0ZRUJAi0xCUFnZ3JlZ2F0ZQxBdHRhaW5lZCBBZ2ULQ29udGludWFuY2UIRHVyYXRpb24MR2VuZXJhdGlvbmFsBlNlbGVjdBFTZWxlY3QgJiBVbHRpbWF0ZQhVbHRpbWF0ZRQrAwlnZ2dnZ2dnZ2dkZGTlBfst3tSBm1GAejglkaNH1GINobScReSvPKwmbW0R1w==" /> </div> <script type="text/javascript"> //<![CDATA[ var theForm = document.forms['ctl01']; if (!theForm) { theForm = document.ctl01; } function __doPostBack(eventTarget, eventArgument) { if (!theForm.onsubmit || (theForm.onsubmit() != false)) { theForm.__EVENTTARGET.value = eventTarget; theForm.__EVENTARGUMENT.value = eventArgument; theForm.submit(); } } //]]> </script> <script src="/WebResource.axd?d=VOTeWWjNTYPZzZnkV-CVajMShC5a6GGKwmoNSSI0skS2CBtCBLYOjYbEZD5GiZHN0Tz5PQXVrfc_I6yn9yMcEddxD-dlahmKi7y68NJko8U1&t=638610691965203766" type="text/javascript"></script> <script src="/ScriptResource.axd?d=CmKpTHI9PHK-RtzwFjh8Mxo_b9Z-IMzluP7TJYhn73RH_EVpvisWoKK5V5iSoTjzXyjhDqWJ_rBTJGaBuak8xAAzggzoy1Su5DcJ7uBeipYdLwA7HkAUFa2SSxB5ivhu34aQSgjSz4TOghRZO5ihFQ2&t=64bd211b" type="text/javascript"></script> <script src="/ScriptResource.axd?d=jp2AS42TE81KadSKWX5_UA-GQyMOGibGYWZIBDXwpN9udyjwTrazT2W8fV2FQw3-HjmLSDQoZa5Q6ZgXxquhHX_2NzeUrPZXcNV8FMx5Sf24vWU4aGCYU3ux24Uo2sDy0&t=f2cd5c5" type="text/javascript"></script> <script src="/ScriptResource.axd?d=lwM_-CeYFOEAaiYPIU4LDmRai4jF2qgl4z211ETznvmY3v7lMj6IVQVDvbrPii6Vo04yM58xuJq2T_Bcfj3KF_y-33NQl-o1oWl7U70MSk3xIjINcQG4NqBVplpjHS78rH5mzUBDc1xELCr7WGdC2w2&t=f2cd5c5" type="text/javascript"></script> <div class="aspNetHidden"> <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="CA0B0334" /> </div> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-M4WCJBM" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> <div class="page"> <div class="header"> <div id="left_jt"> <a href="http://www.SOA.org"> <img border="0" id="logoLeft" name="logoLeft" alt="Actuaries - Risk is Opportunity." src="images/logoLeft.jpg" /></a> </div> <div id="banner"> <a href="../Home.aspx" id="Header1_HeaderHomeLink"> <img alt="Society of Actuaries" src="images/banner.jpg" /></a> </div> <div class="title"> <h1> Mortality and Other Rate Tables </h1> </div> <div class="loginDisplay"> </div> <div class="clear hideSkiplink"> <a href="#NavigationMenu_SkipLink"><img alt="Skip Navigation Links" src="/WebResource.axd?d=HdOYB22iO_0A3BtOI-QChgyEulZ7HjuQIePqtDRX6XsxJgfmzQchDiQg0mvVvAj68PW7msSIv5XcH4TYC_He-jgCVkVGlXEiJKHBwpEi7681&t=638610691965203766" width="0" height="0" style="border-width:0px;" /></a><div class="menu" id="NavigationMenu"> <ul class="level1"> <li><a class="level1" href="Default.aspx">Search</a></li><li><a class="level1" href="ConvertFile.aspx">Convert</a></li><li><a class="level1" href="ViewChangeLog.aspx">Updates</a></li><li><a class="level1" href="About.aspx">Xtbml Background</a></li><li><a class="level1" href="https://www.soa.org/sections/technology/techology-table-manager/">Table Manager</a></li><li><a class="level1" href="AdditionalLinks.aspx" target="_blank">Additional Resources</a></li><li><a class="level1" href="Help.aspx">Help</a></li> </ul> </div><a id="NavigationMenu_SkipLink"></a> </div> </div> <div class="main"> <script type="text/javascript"> //<![CDATA[ Sys.WebForms.PageRequestManager._initialize('ctl00$MainContent$ucSearchPage1$ScriptManager1', 'ctl01', [], [], [], 90, 'ctl00'); //]]> </script> <h2> </h2> <p> <span id="lblValidation" style="text-align: center; color: Red;"></span></p> <div style="padding: 10px;"> <div id="MainContent_ucSearchPage1_panel1" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'MainContent_ucSearchPage1_btnFilter')"> Usage: <select name="ctl00$MainContent$ucSearchPage1$ddlUsage" id="ddlUsage" class="FilterCtrl"> <option value="-1"><All></option> <option value="ADB, AD&D">ADB, AD&D</option> <option value="Annuitant Mortality">Annuitant Mortality</option> <option value="Claim Cost">Claim Cost</option> <option value="Claim Incidence">Claim Incidence</option> <option value="Claim Termination">Claim Termination</option> <option value="CSO / CET">CSO / CET</option> <option value="Disability Recovery">Disability Recovery</option> <option value="Disabled Lives Mortality">Disabled Lives Mortality</option> <option value="Generational Mortality">Generational Mortality</option> <option value="Group Life">Group Life</option> <option value="Healthy Lives Mortality">Healthy Lives Mortality</option> <option value="Insured Lives Mortality">Insured Lives Mortality</option> <option value="Insured Lives Mortality - Ultimate">Insured Lives Mortality - Ultimate</option> <option value="Life Table">Life Table</option> <option value="Population Mortality">Population Mortality</option> <option value="Premium Persistency">Premium Persistency</option> <option value="Projection Scale">Projection Scale</option> <option value="Remarriage">Remarriage</option> <option value="Selection Factors">Selection Factors</option> <option value="Termination Voluntary">Termination Voluntary</option> </select> Nation: <select name="ctl00$MainContent$ucSearchPage1$ddlNation" id="ddlNation" class="FilterCtrl"> <option value="-1"><All></option> <option value="United States of America">United States of America</option> <option value="Argentina">Argentina</option> <option value="Australia">Australia</option> <option value="Austria">Austria</option> <option value="Belgium">Belgium</option> <option value="Bolivia">Bolivia</option> <option value="Brazil">Brazil</option> <option value="Canada">Canada</option> <option value="Chile">Chile</option> <option value="China">China</option> <option value="Columbia">Columbia</option> <option value="Costa Rica">Costa Rica</option> <option value="Cuba">Cuba</option> <option value="Denmark">Denmark</option> <option value="Ecuador">Ecuador</option> <option value="Egypt">Egypt</option> <option value="El Salvador">El Salvador</option> <option value="Finland">Finland</option> <option value="France">France</option> <option value="Germany">Germany</option> <option value="Greece">Greece</option> <option value="Guatemala">Guatemala</option> <option value="Haiti">Haiti</option> <option value="Honduras">Honduras</option> <option value="Hong Kong">Hong Kong</option> <option value="Iceland">Iceland</option> <option value="India">India</option> <option value="Indonesia">Indonesia</option> <option value="Ireland">Ireland</option> <option value="Israel">Israel</option> <option value="Italy">Italy</option> <option value="Japan">Japan</option> <option value="Korea">Korea</option> <option value="Malaysia">Malaysia</option> <option value="Mexico">Mexico</option> <option value="Netherlands">Netherlands</option> <option value="New Zealand">New Zealand</option> <option value="Nicaragua">Nicaragua</option> <option value="Norway">Norway</option> <option value="Panama">Panama</option> <option value="Peru">Peru</option> <option value="Philippines">Philippines</option> <option value="Poland">Poland</option> <option value="Portugal">Portugal</option> <option value="Singapore">Singapore</option> <option value="Slovenia">Slovenia</option> <option value="South Africa">South Africa</option> <option value="Spain">Spain</option> <option value="Sweden">Sweden</option> <option value="Switzerland">Switzerland</option> <option value="Taiwan">Taiwan</option> <option value="Thailand">Thailand</option> <option value="United Kingdom">United Kingdom</option> <option value="Uruguay">Uruguay</option> <option value="Venezuela">Venezuela</option> </select> Table layout: <select name="ctl00$MainContent$ucSearchPage1$ddltype" id="ddltype" class="FilterCtrl"> <option value="-1"><All></option> <option value="Aggregate">Aggregate</option> <option value="Attained Age">Attained Age</option> <option value="Continuance">Continuance</option> <option value="Duration">Duration</option> <option value="Generational">Generational</option> <option value="Select">Select</option> <option value="Select & Ultimate">Select & Ultimate</option> <option value="Ultimate">Ultimate</option> </select> Key Words: <input name="ctl00$MainContent$ucSearchPage1$txtKeyWords" type="text" id="txtKeyWords" class="jt_text" /> <input type="submit" name="ctl00$MainContent$ucSearchPage1$btnFilter" value="Search" id="MainContent_ucSearchPage1_btnFilter" class="Button" /> <!-- input id="btnFilter" name="btnFilter" type="button" value="Search" class="Button"/ --> <input id="btnReset" name="btnReset" type="button" value="Reset" class="Button" /> </div> </div> <div id="MainContent_ucSearchPage1_pnlTableContent"> <table id="tblcontents" cellpadding="0" cellspacing="0"> </table> </div> <div id="tblcontentsPager" class="scroll" style="text-align: right;"> </div> <div style="float: right; padding-top: 10px;"> </div> <div style="padding-top: 10px;"> <input id="btnZipSelected" disabled="disabled" type="button" value="Zip Checked Files" /> <input type="submit" name="ctl00$MainContent$ucSearchPage1$btnZip" value="Zip" id="btnZip" style="display: none;" /> File Type <select name="ctl00$MainContent$ucSearchPage1$ddlZipType" id="MainContent_ucSearchPage1_ddlZipType" class="FilterCtrl" style="width:70px;"> <option selected="selected" value="xls">Excel</option> <option value="xlsx">Excel 2007</option> <option value="csv">CSV</option> <option value="xml">XML</option> </select> </div> <div style="display: none;"> <input name="ctl00$MainContent$ucSearchPage1$txtSelectedValues" type="text" id="txtSelectedValues" /> <input name="ctl00$MainContent$ucSearchPage1$txtExportUrl" type="text" id="txtExportUrl" /> </div> <div id="dialog-confirm" title="Terms of Use" style="display: none;text-align:left;"> <p> The following Terms of Use apply to your use of the tables and all content contained in the tables (the “Data”) as available on the SOA website at www.soa.org or such other site where SOA may post the Data (the “Website”). The Society of Actuaries (“SOA”) may revise these Terms of Use at any time in its sole discretion by posting revised Terms of Use to the SOA website. Your continued use of the Data confirms your acceptance of the Terms of Use posted at the time of your use.</p> SOA provides the Data as a service to its members and others for informational purposes only. <ol> <li>Warranties Disclaimed. The Data is provided “AS IS” and “AS AVAILABLE.” SOA does not provide any express or implied representation or warranty of any kind including without limitation any representation or warranty that (a) the Data is complete, accurate, reliable, or non-infringing, (b) access to the Data will be uninterrupted, timely, secure or error free, (c) the quality of any Data obtained by you will meet your expectations or (d) the Data will remain unchanged or accessible on the Website. ALL WARRANTIES EXPRESSED OR IMPLIED, ARE DISCLAIMED TO THE FULLEST EXTENT PERMITTED BY LAW, INCLUDING, WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND/OR NON-INFRINGEMENT OF INTELLECTUAL PROPERTY.</li> <li>Limitation of Liability. SOA shall not be liable and hereby disclaims any liability for, any claim, loss, or damage, direct or indirect, including without limitation, compensatory, consequential, incidental, indirect, special, exemplary or punitive damages of any kind whatsoever in connection with, as a result of arising out of (a) the use or inability to use the Data, (b) the use, reference to or reliance on the Data, (c) any third party materials, information, or content contained in the Data, (d) any accuracy or inaccuracy of the Data, or (e) any other matter relating to the Data.</li> <li>Remedy. In the event you are dissatisfied with or dispute these Terms of Use or the Data, your sole right and exclusive remedy is to terminate your use of the Data even if that remedy is deemed to fail of its essential purpose.</li> <li>Your Obligations. SOA has the right to review and update the Data, but is not obligated to do so. SOA does not validate the Data. You are responsible for verifying the accuracy of the Data. You understand and agree that you are personally responsible for your use of the Data. You agree to indemnify, defend and hold harmless SOA, its directors, officers, employees, agents and assigns from and against all losses, expenses, damages, costs (including but not limited to direct, incidental, consequential, exemplary, punitive and direct damages; reasonable attorney fees, resulting from or arising out of your use, misuse or inability to use the Data). You are responsible for your compliance with all applicable laws.</li> <li>General. These Terms of Use will be governed by the internal laws of the State of Illinois, without regard to its choice of law provisions. You agree that any action arising out of or relating to the Terms of use may be brought only in a court of competent jurisdiction in Cook County, Illinois and you hereby consent to the jurisdiction, venue and convenience of such courts.</li> </ol> <p> Last Updated: April 7th, 2011</p> </div> </div> <div class="clear"> </div> </div> <div class="footer"> <ul> <li><a href="http://www.SOA.org">SOA.org</a> </li> <li>|</li> <li><a href="TermsOfUse.aspx">Terms Of Use</a> </li> <li>|</li> <li><a href="https://www.soa.org/about/contact/contact-customer-service/" id="Footer1_ContactUsLink">Contact Us</a></li> </ul> </div> <script type='text/javascript'>new Sys.WebForms.Menu({ element: 'NavigationMenu', disappearAfter: 500, orientation: 'horizontal', tabIndex: 0, disabled: false });</script></form> </body> </html>