1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373
|
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: google/ads/googleads/v3/errors/errors.proto
package errors
import (
fmt "fmt"
math "math"
proto "github.com/golang/protobuf/proto"
wrappers "github.com/golang/protobuf/ptypes/wrappers"
common "google.golang.org/genproto/googleapis/ads/googleads/v3/common"
_ "google.golang.org/genproto/googleapis/api/annotations"
)
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
// Describes how a GoogleAds API call failed. It's returned inside
// google.rpc.Status.details when a call fails.
type GoogleAdsFailure struct {
// The list of errors that occurred.
Errors []*GoogleAdsError `protobuf:"bytes,1,rep,name=errors,proto3" json:"errors,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GoogleAdsFailure) Reset() { *m = GoogleAdsFailure{} }
func (m *GoogleAdsFailure) String() string { return proto.CompactTextString(m) }
func (*GoogleAdsFailure) ProtoMessage() {}
func (*GoogleAdsFailure) Descriptor() ([]byte, []int) {
return fileDescriptor_37c8858a8ef846f0, []int{0}
}
func (m *GoogleAdsFailure) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GoogleAdsFailure.Unmarshal(m, b)
}
func (m *GoogleAdsFailure) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GoogleAdsFailure.Marshal(b, m, deterministic)
}
func (m *GoogleAdsFailure) XXX_Merge(src proto.Message) {
xxx_messageInfo_GoogleAdsFailure.Merge(m, src)
}
func (m *GoogleAdsFailure) XXX_Size() int {
return xxx_messageInfo_GoogleAdsFailure.Size(m)
}
func (m *GoogleAdsFailure) XXX_DiscardUnknown() {
xxx_messageInfo_GoogleAdsFailure.DiscardUnknown(m)
}
var xxx_messageInfo_GoogleAdsFailure proto.InternalMessageInfo
func (m *GoogleAdsFailure) GetErrors() []*GoogleAdsError {
if m != nil {
return m.Errors
}
return nil
}
// GoogleAds-specific error.
type GoogleAdsError struct {
// An enum value that indicates which error occurred.
ErrorCode *ErrorCode `protobuf:"bytes,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
// A human-readable description of the error.
Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
// The value that triggered the error.
Trigger *common.Value `protobuf:"bytes,3,opt,name=trigger,proto3" json:"trigger,omitempty"`
// Describes the part of the request proto that caused the error.
Location *ErrorLocation `protobuf:"bytes,4,opt,name=location,proto3" json:"location,omitempty"`
// Additional error details, which are returned by certain error codes. Most
// error codes do not include details.
Details *ErrorDetails `protobuf:"bytes,5,opt,name=details,proto3" json:"details,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GoogleAdsError) Reset() { *m = GoogleAdsError{} }
func (m *GoogleAdsError) String() string { return proto.CompactTextString(m) }
func (*GoogleAdsError) ProtoMessage() {}
func (*GoogleAdsError) Descriptor() ([]byte, []int) {
return fileDescriptor_37c8858a8ef846f0, []int{1}
}
func (m *GoogleAdsError) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GoogleAdsError.Unmarshal(m, b)
}
func (m *GoogleAdsError) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GoogleAdsError.Marshal(b, m, deterministic)
}
func (m *GoogleAdsError) XXX_Merge(src proto.Message) {
xxx_messageInfo_GoogleAdsError.Merge(m, src)
}
func (m *GoogleAdsError) XXX_Size() int {
return xxx_messageInfo_GoogleAdsError.Size(m)
}
func (m *GoogleAdsError) XXX_DiscardUnknown() {
xxx_messageInfo_GoogleAdsError.DiscardUnknown(m)
}
var xxx_messageInfo_GoogleAdsError proto.InternalMessageInfo
func (m *GoogleAdsError) GetErrorCode() *ErrorCode {
if m != nil {
return m.ErrorCode
}
return nil
}
func (m *GoogleAdsError) GetMessage() string {
if m != nil {
return m.Message
}
return ""
}
func (m *GoogleAdsError) GetTrigger() *common.Value {
if m != nil {
return m.Trigger
}
return nil
}
func (m *GoogleAdsError) GetLocation() *ErrorLocation {
if m != nil {
return m.Location
}
return nil
}
func (m *GoogleAdsError) GetDetails() *ErrorDetails {
if m != nil {
return m.Details
}
return nil
}
// The error reason represented by type and enum.
type ErrorCode struct {
// The list of error enums
//
// Types that are valid to be assigned to ErrorCode:
// *ErrorCode_RequestError
// *ErrorCode_BiddingStrategyError
// *ErrorCode_UrlFieldError
// *ErrorCode_ListOperationError
// *ErrorCode_QueryError
// *ErrorCode_MutateError
// *ErrorCode_FieldMaskError
// *ErrorCode_AuthorizationError
// *ErrorCode_InternalError
// *ErrorCode_QuotaError
// *ErrorCode_AdError
// *ErrorCode_AdGroupError
// *ErrorCode_CampaignBudgetError
// *ErrorCode_CampaignError
// *ErrorCode_AuthenticationError
// *ErrorCode_AdGroupCriterionError
// *ErrorCode_AdCustomizerError
// *ErrorCode_AdGroupAdError
// *ErrorCode_AdSharingError
// *ErrorCode_AdxError
// *ErrorCode_AssetError
// *ErrorCode_BiddingError
// *ErrorCode_CampaignCriterionError
// *ErrorCode_CollectionSizeError
// *ErrorCode_CountryCodeError
// *ErrorCode_CriterionError
// *ErrorCode_CustomerError
// *ErrorCode_DateError
// *ErrorCode_DateRangeError
// *ErrorCode_DistinctError
// *ErrorCode_FeedAttributeReferenceError
// *ErrorCode_FunctionError
// *ErrorCode_FunctionParsingError
// *ErrorCode_IdError
// *ErrorCode_ImageError
// *ErrorCode_LanguageCodeError
// *ErrorCode_MediaBundleError
// *ErrorCode_MediaUploadError
// *ErrorCode_MediaFileError
// *ErrorCode_MultiplierError
// *ErrorCode_NewResourceCreationError
// *ErrorCode_NotEmptyError
// *ErrorCode_NullError
// *ErrorCode_OperatorError
// *ErrorCode_RangeError
// *ErrorCode_RecommendationError
// *ErrorCode_RegionCodeError
// *ErrorCode_SettingError
// *ErrorCode_StringFormatError
// *ErrorCode_StringLengthError
// *ErrorCode_OperationAccessDeniedError
// *ErrorCode_ResourceAccessDeniedError
// *ErrorCode_ResourceCountLimitExceededError
// *ErrorCode_YoutubeVideoRegistrationError
// *ErrorCode_AdGroupBidModifierError
// *ErrorCode_ContextError
// *ErrorCode_FieldError
// *ErrorCode_SharedSetError
// *ErrorCode_SharedCriterionError
// *ErrorCode_CampaignSharedSetError
// *ErrorCode_ConversionActionError
// *ErrorCode_ConversionAdjustmentUploadError
// *ErrorCode_ConversionUploadError
// *ErrorCode_HeaderError
// *ErrorCode_DatabaseError
// *ErrorCode_PolicyFindingError
// *ErrorCode_EnumError
// *ErrorCode_KeywordPlanError
// *ErrorCode_KeywordPlanCampaignError
// *ErrorCode_KeywordPlanNegativeKeywordError
// *ErrorCode_KeywordPlanAdGroupError
// *ErrorCode_KeywordPlanKeywordError
// *ErrorCode_KeywordPlanIdeaError
// *ErrorCode_AccountBudgetProposalError
// *ErrorCode_UserListError
// *ErrorCode_ChangeStatusError
// *ErrorCode_FeedError
// *ErrorCode_GeoTargetConstantSuggestionError
// *ErrorCode_CampaignDraftError
// *ErrorCode_FeedItemError
// *ErrorCode_LabelError
// *ErrorCode_BillingSetupError
// *ErrorCode_CustomerClientLinkError
// *ErrorCode_CustomerManagerLinkError
// *ErrorCode_FeedMappingError
// *ErrorCode_CustomerFeedError
// *ErrorCode_AdGroupFeedError
// *ErrorCode_CampaignFeedError
// *ErrorCode_CustomInterestError
// *ErrorCode_CampaignExperimentError
// *ErrorCode_ExtensionFeedItemError
// *ErrorCode_AdParameterError
// *ErrorCode_FeedItemValidationError
// *ErrorCode_ExtensionSettingError
// *ErrorCode_FeedItemTargetError
// *ErrorCode_PolicyViolationError
// *ErrorCode_MutateJobError
// *ErrorCode_PartialFailureError
// *ErrorCode_PolicyValidationParameterError
// *ErrorCode_SizeLimitError
// *ErrorCode_NotWhitelistedError
// *ErrorCode_ManagerLinkError
// *ErrorCode_CurrencyCodeError
// *ErrorCode_AccessInvitationError
// *ErrorCode_ReachPlanError
// *ErrorCode_InvoiceError
// *ErrorCode_PaymentsAccountError
// *ErrorCode_TimeZoneError
ErrorCode isErrorCode_ErrorCode `protobuf_oneof:"error_code"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ErrorCode) Reset() { *m = ErrorCode{} }
func (m *ErrorCode) String() string { return proto.CompactTextString(m) }
func (*ErrorCode) ProtoMessage() {}
func (*ErrorCode) Descriptor() ([]byte, []int) {
return fileDescriptor_37c8858a8ef846f0, []int{2}
}
func (m *ErrorCode) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ErrorCode.Unmarshal(m, b)
}
func (m *ErrorCode) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ErrorCode.Marshal(b, m, deterministic)
}
func (m *ErrorCode) XXX_Merge(src proto.Message) {
xxx_messageInfo_ErrorCode.Merge(m, src)
}
func (m *ErrorCode) XXX_Size() int {
return xxx_messageInfo_ErrorCode.Size(m)
}
func (m *ErrorCode) XXX_DiscardUnknown() {
xxx_messageInfo_ErrorCode.DiscardUnknown(m)
}
var xxx_messageInfo_ErrorCode proto.InternalMessageInfo
type isErrorCode_ErrorCode interface {
isErrorCode_ErrorCode()
}
type ErrorCode_RequestError struct {
RequestError RequestErrorEnum_RequestError `protobuf:"varint,1,opt,name=request_error,json=requestError,proto3,enum=google.ads.googleads.v3.errors.RequestErrorEnum_RequestError,oneof"`
}
type ErrorCode_BiddingStrategyError struct {
BiddingStrategyError BiddingStrategyErrorEnum_BiddingStrategyError `protobuf:"varint,2,opt,name=bidding_strategy_error,json=biddingStrategyError,proto3,enum=google.ads.googleads.v3.errors.BiddingStrategyErrorEnum_BiddingStrategyError,oneof"`
}
type ErrorCode_UrlFieldError struct {
UrlFieldError UrlFieldErrorEnum_UrlFieldError `protobuf:"varint,3,opt,name=url_field_error,json=urlFieldError,proto3,enum=google.ads.googleads.v3.errors.UrlFieldErrorEnum_UrlFieldError,oneof"`
}
type ErrorCode_ListOperationError struct {
ListOperationError ListOperationErrorEnum_ListOperationError `protobuf:"varint,4,opt,name=list_operation_error,json=listOperationError,proto3,enum=google.ads.googleads.v3.errors.ListOperationErrorEnum_ListOperationError,oneof"`
}
type ErrorCode_QueryError struct {
QueryError QueryErrorEnum_QueryError `protobuf:"varint,5,opt,name=query_error,json=queryError,proto3,enum=google.ads.googleads.v3.errors.QueryErrorEnum_QueryError,oneof"`
}
type ErrorCode_MutateError struct {
MutateError MutateErrorEnum_MutateError `protobuf:"varint,7,opt,name=mutate_error,json=mutateError,proto3,enum=google.ads.googleads.v3.errors.MutateErrorEnum_MutateError,oneof"`
}
type ErrorCode_FieldMaskError struct {
FieldMaskError FieldMaskErrorEnum_FieldMaskError `protobuf:"varint,8,opt,name=field_mask_error,json=fieldMaskError,proto3,enum=google.ads.googleads.v3.errors.FieldMaskErrorEnum_FieldMaskError,oneof"`
}
type ErrorCode_AuthorizationError struct {
AuthorizationError AuthorizationErrorEnum_AuthorizationError `protobuf:"varint,9,opt,name=authorization_error,json=authorizationError,proto3,enum=google.ads.googleads.v3.errors.AuthorizationErrorEnum_AuthorizationError,oneof"`
}
type ErrorCode_InternalError struct {
InternalError InternalErrorEnum_InternalError `protobuf:"varint,10,opt,name=internal_error,json=internalError,proto3,enum=google.ads.googleads.v3.errors.InternalErrorEnum_InternalError,oneof"`
}
type ErrorCode_QuotaError struct {
QuotaError QuotaErrorEnum_QuotaError `protobuf:"varint,11,opt,name=quota_error,json=quotaError,proto3,enum=google.ads.googleads.v3.errors.QuotaErrorEnum_QuotaError,oneof"`
}
type ErrorCode_AdError struct {
AdError AdErrorEnum_AdError `protobuf:"varint,12,opt,name=ad_error,json=adError,proto3,enum=google.ads.googleads.v3.errors.AdErrorEnum_AdError,oneof"`
}
type ErrorCode_AdGroupError struct {
AdGroupError AdGroupErrorEnum_AdGroupError `protobuf:"varint,13,opt,name=ad_group_error,json=adGroupError,proto3,enum=google.ads.googleads.v3.errors.AdGroupErrorEnum_AdGroupError,oneof"`
}
type ErrorCode_CampaignBudgetError struct {
CampaignBudgetError CampaignBudgetErrorEnum_CampaignBudgetError `protobuf:"varint,14,opt,name=campaign_budget_error,json=campaignBudgetError,proto3,enum=google.ads.googleads.v3.errors.CampaignBudgetErrorEnum_CampaignBudgetError,oneof"`
}
type ErrorCode_CampaignError struct {
CampaignError CampaignErrorEnum_CampaignError `protobuf:"varint,15,opt,name=campaign_error,json=campaignError,proto3,enum=google.ads.googleads.v3.errors.CampaignErrorEnum_CampaignError,oneof"`
}
type ErrorCode_AuthenticationError struct {
AuthenticationError AuthenticationErrorEnum_AuthenticationError `protobuf:"varint,17,opt,name=authentication_error,json=authenticationError,proto3,enum=google.ads.googleads.v3.errors.AuthenticationErrorEnum_AuthenticationError,oneof"`
}
type ErrorCode_AdGroupCriterionError struct {
AdGroupCriterionError AdGroupCriterionErrorEnum_AdGroupCriterionError `protobuf:"varint,18,opt,name=ad_group_criterion_error,json=adGroupCriterionError,proto3,enum=google.ads.googleads.v3.errors.AdGroupCriterionErrorEnum_AdGroupCriterionError,oneof"`
}
type ErrorCode_AdCustomizerError struct {
AdCustomizerError AdCustomizerErrorEnum_AdCustomizerError `protobuf:"varint,19,opt,name=ad_customizer_error,json=adCustomizerError,proto3,enum=google.ads.googleads.v3.errors.AdCustomizerErrorEnum_AdCustomizerError,oneof"`
}
type ErrorCode_AdGroupAdError struct {
AdGroupAdError AdGroupAdErrorEnum_AdGroupAdError `protobuf:"varint,21,opt,name=ad_group_ad_error,json=adGroupAdError,proto3,enum=google.ads.googleads.v3.errors.AdGroupAdErrorEnum_AdGroupAdError,oneof"`
}
type ErrorCode_AdSharingError struct {
AdSharingError AdSharingErrorEnum_AdSharingError `protobuf:"varint,24,opt,name=ad_sharing_error,json=adSharingError,proto3,enum=google.ads.googleads.v3.errors.AdSharingErrorEnum_AdSharingError,oneof"`
}
type ErrorCode_AdxError struct {
AdxError AdxErrorEnum_AdxError `protobuf:"varint,25,opt,name=adx_error,json=adxError,proto3,enum=google.ads.googleads.v3.errors.AdxErrorEnum_AdxError,oneof"`
}
type ErrorCode_AssetError struct {
AssetError AssetErrorEnum_AssetError `protobuf:"varint,107,opt,name=asset_error,json=assetError,proto3,enum=google.ads.googleads.v3.errors.AssetErrorEnum_AssetError,oneof"`
}
type ErrorCode_BiddingError struct {
BiddingError BiddingErrorEnum_BiddingError `protobuf:"varint,26,opt,name=bidding_error,json=biddingError,proto3,enum=google.ads.googleads.v3.errors.BiddingErrorEnum_BiddingError,oneof"`
}
type ErrorCode_CampaignCriterionError struct {
CampaignCriterionError CampaignCriterionErrorEnum_CampaignCriterionError `protobuf:"varint,29,opt,name=campaign_criterion_error,json=campaignCriterionError,proto3,enum=google.ads.googleads.v3.errors.CampaignCriterionErrorEnum_CampaignCriterionError,oneof"`
}
type ErrorCode_CollectionSizeError struct {
CollectionSizeError CollectionSizeErrorEnum_CollectionSizeError `protobuf:"varint,31,opt,name=collection_size_error,json=collectionSizeError,proto3,enum=google.ads.googleads.v3.errors.CollectionSizeErrorEnum_CollectionSizeError,oneof"`
}
type ErrorCode_CountryCodeError struct {
CountryCodeError CountryCodeErrorEnum_CountryCodeError `protobuf:"varint,109,opt,name=country_code_error,json=countryCodeError,proto3,enum=google.ads.googleads.v3.errors.CountryCodeErrorEnum_CountryCodeError,oneof"`
}
type ErrorCode_CriterionError struct {
CriterionError CriterionErrorEnum_CriterionError `protobuf:"varint,32,opt,name=criterion_error,json=criterionError,proto3,enum=google.ads.googleads.v3.errors.CriterionErrorEnum_CriterionError,oneof"`
}
type ErrorCode_CustomerError struct {
CustomerError CustomerErrorEnum_CustomerError `protobuf:"varint,90,opt,name=customer_error,json=customerError,proto3,enum=google.ads.googleads.v3.errors.CustomerErrorEnum_CustomerError,oneof"`
}
type ErrorCode_DateError struct {
DateError DateErrorEnum_DateError `protobuf:"varint,33,opt,name=date_error,json=dateError,proto3,enum=google.ads.googleads.v3.errors.DateErrorEnum_DateError,oneof"`
}
type ErrorCode_DateRangeError struct {
DateRangeError DateRangeErrorEnum_DateRangeError `protobuf:"varint,34,opt,name=date_range_error,json=dateRangeError,proto3,enum=google.ads.googleads.v3.errors.DateRangeErrorEnum_DateRangeError,oneof"`
}
type ErrorCode_DistinctError struct {
DistinctError DistinctErrorEnum_DistinctError `protobuf:"varint,35,opt,name=distinct_error,json=distinctError,proto3,enum=google.ads.googleads.v3.errors.DistinctErrorEnum_DistinctError,oneof"`
}
type ErrorCode_FeedAttributeReferenceError struct {
FeedAttributeReferenceError FeedAttributeReferenceErrorEnum_FeedAttributeReferenceError `protobuf:"varint,36,opt,name=feed_attribute_reference_error,json=feedAttributeReferenceError,proto3,enum=google.ads.googleads.v3.errors.FeedAttributeReferenceErrorEnum_FeedAttributeReferenceError,oneof"`
}
type ErrorCode_FunctionError struct {
FunctionError FunctionErrorEnum_FunctionError `protobuf:"varint,37,opt,name=function_error,json=functionError,proto3,enum=google.ads.googleads.v3.errors.FunctionErrorEnum_FunctionError,oneof"`
}
type ErrorCode_FunctionParsingError struct {
FunctionParsingError FunctionParsingErrorEnum_FunctionParsingError `protobuf:"varint,38,opt,name=function_parsing_error,json=functionParsingError,proto3,enum=google.ads.googleads.v3.errors.FunctionParsingErrorEnum_FunctionParsingError,oneof"`
}
type ErrorCode_IdError struct {
IdError IdErrorEnum_IdError `protobuf:"varint,39,opt,name=id_error,json=idError,proto3,enum=google.ads.googleads.v3.errors.IdErrorEnum_IdError,oneof"`
}
type ErrorCode_ImageError struct {
ImageError ImageErrorEnum_ImageError `protobuf:"varint,40,opt,name=image_error,json=imageError,proto3,enum=google.ads.googleads.v3.errors.ImageErrorEnum_ImageError,oneof"`
}
type ErrorCode_LanguageCodeError struct {
LanguageCodeError LanguageCodeErrorEnum_LanguageCodeError `protobuf:"varint,110,opt,name=language_code_error,json=languageCodeError,proto3,enum=google.ads.googleads.v3.errors.LanguageCodeErrorEnum_LanguageCodeError,oneof"`
}
type ErrorCode_MediaBundleError struct {
MediaBundleError MediaBundleErrorEnum_MediaBundleError `protobuf:"varint,42,opt,name=media_bundle_error,json=mediaBundleError,proto3,enum=google.ads.googleads.v3.errors.MediaBundleErrorEnum_MediaBundleError,oneof"`
}
type ErrorCode_MediaUploadError struct {
MediaUploadError MediaUploadErrorEnum_MediaUploadError `protobuf:"varint,116,opt,name=media_upload_error,json=mediaUploadError,proto3,enum=google.ads.googleads.v3.errors.MediaUploadErrorEnum_MediaUploadError,oneof"`
}
type ErrorCode_MediaFileError struct {
MediaFileError MediaFileErrorEnum_MediaFileError `protobuf:"varint,86,opt,name=media_file_error,json=mediaFileError,proto3,enum=google.ads.googleads.v3.errors.MediaFileErrorEnum_MediaFileError,oneof"`
}
type ErrorCode_MultiplierError struct {
MultiplierError MultiplierErrorEnum_MultiplierError `protobuf:"varint,44,opt,name=multiplier_error,json=multiplierError,proto3,enum=google.ads.googleads.v3.errors.MultiplierErrorEnum_MultiplierError,oneof"`
}
type ErrorCode_NewResourceCreationError struct {
NewResourceCreationError NewResourceCreationErrorEnum_NewResourceCreationError `protobuf:"varint,45,opt,name=new_resource_creation_error,json=newResourceCreationError,proto3,enum=google.ads.googleads.v3.errors.NewResourceCreationErrorEnum_NewResourceCreationError,oneof"`
}
type ErrorCode_NotEmptyError struct {
NotEmptyError NotEmptyErrorEnum_NotEmptyError `protobuf:"varint,46,opt,name=not_empty_error,json=notEmptyError,proto3,enum=google.ads.googleads.v3.errors.NotEmptyErrorEnum_NotEmptyError,oneof"`
}
type ErrorCode_NullError struct {
NullError NullErrorEnum_NullError `protobuf:"varint,47,opt,name=null_error,json=nullError,proto3,enum=google.ads.googleads.v3.errors.NullErrorEnum_NullError,oneof"`
}
type ErrorCode_OperatorError struct {
OperatorError OperatorErrorEnum_OperatorError `protobuf:"varint,48,opt,name=operator_error,json=operatorError,proto3,enum=google.ads.googleads.v3.errors.OperatorErrorEnum_OperatorError,oneof"`
}
type ErrorCode_RangeError struct {
RangeError RangeErrorEnum_RangeError `protobuf:"varint,49,opt,name=range_error,json=rangeError,proto3,enum=google.ads.googleads.v3.errors.RangeErrorEnum_RangeError,oneof"`
}
type ErrorCode_RecommendationError struct {
RecommendationError RecommendationErrorEnum_RecommendationError `protobuf:"varint,58,opt,name=recommendation_error,json=recommendationError,proto3,enum=google.ads.googleads.v3.errors.RecommendationErrorEnum_RecommendationError,oneof"`
}
type ErrorCode_RegionCodeError struct {
RegionCodeError RegionCodeErrorEnum_RegionCodeError `protobuf:"varint,51,opt,name=region_code_error,json=regionCodeError,proto3,enum=google.ads.googleads.v3.errors.RegionCodeErrorEnum_RegionCodeError,oneof"`
}
type ErrorCode_SettingError struct {
SettingError SettingErrorEnum_SettingError `protobuf:"varint,52,opt,name=setting_error,json=settingError,proto3,enum=google.ads.googleads.v3.errors.SettingErrorEnum_SettingError,oneof"`
}
type ErrorCode_StringFormatError struct {
StringFormatError StringFormatErrorEnum_StringFormatError `protobuf:"varint,53,opt,name=string_format_error,json=stringFormatError,proto3,enum=google.ads.googleads.v3.errors.StringFormatErrorEnum_StringFormatError,oneof"`
}
type ErrorCode_StringLengthError struct {
StringLengthError StringLengthErrorEnum_StringLengthError `protobuf:"varint,54,opt,name=string_length_error,json=stringLengthError,proto3,enum=google.ads.googleads.v3.errors.StringLengthErrorEnum_StringLengthError,oneof"`
}
type ErrorCode_OperationAccessDeniedError struct {
OperationAccessDeniedError OperationAccessDeniedErrorEnum_OperationAccessDeniedError `protobuf:"varint,55,opt,name=operation_access_denied_error,json=operationAccessDeniedError,proto3,enum=google.ads.googleads.v3.errors.OperationAccessDeniedErrorEnum_OperationAccessDeniedError,oneof"`
}
type ErrorCode_ResourceAccessDeniedError struct {
ResourceAccessDeniedError ResourceAccessDeniedErrorEnum_ResourceAccessDeniedError `protobuf:"varint,56,opt,name=resource_access_denied_error,json=resourceAccessDeniedError,proto3,enum=google.ads.googleads.v3.errors.ResourceAccessDeniedErrorEnum_ResourceAccessDeniedError,oneof"`
}
type ErrorCode_ResourceCountLimitExceededError struct {
ResourceCountLimitExceededError ResourceCountLimitExceededErrorEnum_ResourceCountLimitExceededError `protobuf:"varint,57,opt,name=resource_count_limit_exceeded_error,json=resourceCountLimitExceededError,proto3,enum=google.ads.googleads.v3.errors.ResourceCountLimitExceededErrorEnum_ResourceCountLimitExceededError,oneof"`
}
type ErrorCode_YoutubeVideoRegistrationError struct {
YoutubeVideoRegistrationError YoutubeVideoRegistrationErrorEnum_YoutubeVideoRegistrationError `protobuf:"varint,117,opt,name=youtube_video_registration_error,json=youtubeVideoRegistrationError,proto3,enum=google.ads.googleads.v3.errors.YoutubeVideoRegistrationErrorEnum_YoutubeVideoRegistrationError,oneof"`
}
type ErrorCode_AdGroupBidModifierError struct {
AdGroupBidModifierError AdGroupBidModifierErrorEnum_AdGroupBidModifierError `protobuf:"varint,59,opt,name=ad_group_bid_modifier_error,json=adGroupBidModifierError,proto3,enum=google.ads.googleads.v3.errors.AdGroupBidModifierErrorEnum_AdGroupBidModifierError,oneof"`
}
type ErrorCode_ContextError struct {
ContextError ContextErrorEnum_ContextError `protobuf:"varint,60,opt,name=context_error,json=contextError,proto3,enum=google.ads.googleads.v3.errors.ContextErrorEnum_ContextError,oneof"`
}
type ErrorCode_FieldError struct {
FieldError FieldErrorEnum_FieldError `protobuf:"varint,61,opt,name=field_error,json=fieldError,proto3,enum=google.ads.googleads.v3.errors.FieldErrorEnum_FieldError,oneof"`
}
type ErrorCode_SharedSetError struct {
SharedSetError SharedSetErrorEnum_SharedSetError `protobuf:"varint,62,opt,name=shared_set_error,json=sharedSetError,proto3,enum=google.ads.googleads.v3.errors.SharedSetErrorEnum_SharedSetError,oneof"`
}
type ErrorCode_SharedCriterionError struct {
SharedCriterionError SharedCriterionErrorEnum_SharedCriterionError `protobuf:"varint,63,opt,name=shared_criterion_error,json=sharedCriterionError,proto3,enum=google.ads.googleads.v3.errors.SharedCriterionErrorEnum_SharedCriterionError,oneof"`
}
type ErrorCode_CampaignSharedSetError struct {
CampaignSharedSetError CampaignSharedSetErrorEnum_CampaignSharedSetError `protobuf:"varint,64,opt,name=campaign_shared_set_error,json=campaignSharedSetError,proto3,enum=google.ads.googleads.v3.errors.CampaignSharedSetErrorEnum_CampaignSharedSetError,oneof"`
}
type ErrorCode_ConversionActionError struct {
ConversionActionError ConversionActionErrorEnum_ConversionActionError `protobuf:"varint,65,opt,name=conversion_action_error,json=conversionActionError,proto3,enum=google.ads.googleads.v3.errors.ConversionActionErrorEnum_ConversionActionError,oneof"`
}
type ErrorCode_ConversionAdjustmentUploadError struct {
ConversionAdjustmentUploadError ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError `protobuf:"varint,115,opt,name=conversion_adjustment_upload_error,json=conversionAdjustmentUploadError,proto3,enum=google.ads.googleads.v3.errors.ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError,oneof"`
}
type ErrorCode_ConversionUploadError struct {
ConversionUploadError ConversionUploadErrorEnum_ConversionUploadError `protobuf:"varint,111,opt,name=conversion_upload_error,json=conversionUploadError,proto3,enum=google.ads.googleads.v3.errors.ConversionUploadErrorEnum_ConversionUploadError,oneof"`
}
type ErrorCode_HeaderError struct {
HeaderError HeaderErrorEnum_HeaderError `protobuf:"varint,66,opt,name=header_error,json=headerError,proto3,enum=google.ads.googleads.v3.errors.HeaderErrorEnum_HeaderError,oneof"`
}
type ErrorCode_DatabaseError struct {
DatabaseError DatabaseErrorEnum_DatabaseError `protobuf:"varint,67,opt,name=database_error,json=databaseError,proto3,enum=google.ads.googleads.v3.errors.DatabaseErrorEnum_DatabaseError,oneof"`
}
type ErrorCode_PolicyFindingError struct {
PolicyFindingError PolicyFindingErrorEnum_PolicyFindingError `protobuf:"varint,68,opt,name=policy_finding_error,json=policyFindingError,proto3,enum=google.ads.googleads.v3.errors.PolicyFindingErrorEnum_PolicyFindingError,oneof"`
}
type ErrorCode_EnumError struct {
EnumError EnumErrorEnum_EnumError `protobuf:"varint,70,opt,name=enum_error,json=enumError,proto3,enum=google.ads.googleads.v3.errors.EnumErrorEnum_EnumError,oneof"`
}
type ErrorCode_KeywordPlanError struct {
KeywordPlanError KeywordPlanErrorEnum_KeywordPlanError `protobuf:"varint,71,opt,name=keyword_plan_error,json=keywordPlanError,proto3,enum=google.ads.googleads.v3.errors.KeywordPlanErrorEnum_KeywordPlanError,oneof"`
}
type ErrorCode_KeywordPlanCampaignError struct {
KeywordPlanCampaignError KeywordPlanCampaignErrorEnum_KeywordPlanCampaignError `protobuf:"varint,72,opt,name=keyword_plan_campaign_error,json=keywordPlanCampaignError,proto3,enum=google.ads.googleads.v3.errors.KeywordPlanCampaignErrorEnum_KeywordPlanCampaignError,oneof"`
}
type ErrorCode_KeywordPlanNegativeKeywordError struct {
KeywordPlanNegativeKeywordError KeywordPlanNegativeKeywordErrorEnum_KeywordPlanNegativeKeywordError `protobuf:"varint,73,opt,name=keyword_plan_negative_keyword_error,json=keywordPlanNegativeKeywordError,proto3,enum=google.ads.googleads.v3.errors.KeywordPlanNegativeKeywordErrorEnum_KeywordPlanNegativeKeywordError,oneof"`
}
type ErrorCode_KeywordPlanAdGroupError struct {
KeywordPlanAdGroupError KeywordPlanAdGroupErrorEnum_KeywordPlanAdGroupError `protobuf:"varint,74,opt,name=keyword_plan_ad_group_error,json=keywordPlanAdGroupError,proto3,enum=google.ads.googleads.v3.errors.KeywordPlanAdGroupErrorEnum_KeywordPlanAdGroupError,oneof"`
}
type ErrorCode_KeywordPlanKeywordError struct {
KeywordPlanKeywordError KeywordPlanKeywordErrorEnum_KeywordPlanKeywordError `protobuf:"varint,75,opt,name=keyword_plan_keyword_error,json=keywordPlanKeywordError,proto3,enum=google.ads.googleads.v3.errors.KeywordPlanKeywordErrorEnum_KeywordPlanKeywordError,oneof"`
}
type ErrorCode_KeywordPlanIdeaError struct {
KeywordPlanIdeaError KeywordPlanIdeaErrorEnum_KeywordPlanIdeaError `protobuf:"varint,76,opt,name=keyword_plan_idea_error,json=keywordPlanIdeaError,proto3,enum=google.ads.googleads.v3.errors.KeywordPlanIdeaErrorEnum_KeywordPlanIdeaError,oneof"`
}
type ErrorCode_AccountBudgetProposalError struct {
AccountBudgetProposalError AccountBudgetProposalErrorEnum_AccountBudgetProposalError `protobuf:"varint,77,opt,name=account_budget_proposal_error,json=accountBudgetProposalError,proto3,enum=google.ads.googleads.v3.errors.AccountBudgetProposalErrorEnum_AccountBudgetProposalError,oneof"`
}
type ErrorCode_UserListError struct {
UserListError UserListErrorEnum_UserListError `protobuf:"varint,78,opt,name=user_list_error,json=userListError,proto3,enum=google.ads.googleads.v3.errors.UserListErrorEnum_UserListError,oneof"`
}
type ErrorCode_ChangeStatusError struct {
ChangeStatusError ChangeStatusErrorEnum_ChangeStatusError `protobuf:"varint,79,opt,name=change_status_error,json=changeStatusError,proto3,enum=google.ads.googleads.v3.errors.ChangeStatusErrorEnum_ChangeStatusError,oneof"`
}
type ErrorCode_FeedError struct {
FeedError FeedErrorEnum_FeedError `protobuf:"varint,80,opt,name=feed_error,json=feedError,proto3,enum=google.ads.googleads.v3.errors.FeedErrorEnum_FeedError,oneof"`
}
type ErrorCode_GeoTargetConstantSuggestionError struct {
GeoTargetConstantSuggestionError GeoTargetConstantSuggestionErrorEnum_GeoTargetConstantSuggestionError `protobuf:"varint,81,opt,name=geo_target_constant_suggestion_error,json=geoTargetConstantSuggestionError,proto3,enum=google.ads.googleads.v3.errors.GeoTargetConstantSuggestionErrorEnum_GeoTargetConstantSuggestionError,oneof"`
}
type ErrorCode_CampaignDraftError struct {
CampaignDraftError CampaignDraftErrorEnum_CampaignDraftError `protobuf:"varint,82,opt,name=campaign_draft_error,json=campaignDraftError,proto3,enum=google.ads.googleads.v3.errors.CampaignDraftErrorEnum_CampaignDraftError,oneof"`
}
type ErrorCode_FeedItemError struct {
FeedItemError FeedItemErrorEnum_FeedItemError `protobuf:"varint,83,opt,name=feed_item_error,json=feedItemError,proto3,enum=google.ads.googleads.v3.errors.FeedItemErrorEnum_FeedItemError,oneof"`
}
type ErrorCode_LabelError struct {
LabelError LabelErrorEnum_LabelError `protobuf:"varint,84,opt,name=label_error,json=labelError,proto3,enum=google.ads.googleads.v3.errors.LabelErrorEnum_LabelError,oneof"`
}
type ErrorCode_BillingSetupError struct {
BillingSetupError BillingSetupErrorEnum_BillingSetupError `protobuf:"varint,87,opt,name=billing_setup_error,json=billingSetupError,proto3,enum=google.ads.googleads.v3.errors.BillingSetupErrorEnum_BillingSetupError,oneof"`
}
type ErrorCode_CustomerClientLinkError struct {
CustomerClientLinkError CustomerClientLinkErrorEnum_CustomerClientLinkError `protobuf:"varint,88,opt,name=customer_client_link_error,json=customerClientLinkError,proto3,enum=google.ads.googleads.v3.errors.CustomerClientLinkErrorEnum_CustomerClientLinkError,oneof"`
}
type ErrorCode_CustomerManagerLinkError struct {
CustomerManagerLinkError CustomerManagerLinkErrorEnum_CustomerManagerLinkError `protobuf:"varint,91,opt,name=customer_manager_link_error,json=customerManagerLinkError,proto3,enum=google.ads.googleads.v3.errors.CustomerManagerLinkErrorEnum_CustomerManagerLinkError,oneof"`
}
type ErrorCode_FeedMappingError struct {
FeedMappingError FeedMappingErrorEnum_FeedMappingError `protobuf:"varint,92,opt,name=feed_mapping_error,json=feedMappingError,proto3,enum=google.ads.googleads.v3.errors.FeedMappingErrorEnum_FeedMappingError,oneof"`
}
type ErrorCode_CustomerFeedError struct {
CustomerFeedError CustomerFeedErrorEnum_CustomerFeedError `protobuf:"varint,93,opt,name=customer_feed_error,json=customerFeedError,proto3,enum=google.ads.googleads.v3.errors.CustomerFeedErrorEnum_CustomerFeedError,oneof"`
}
type ErrorCode_AdGroupFeedError struct {
AdGroupFeedError AdGroupFeedErrorEnum_AdGroupFeedError `protobuf:"varint,94,opt,name=ad_group_feed_error,json=adGroupFeedError,proto3,enum=google.ads.googleads.v3.errors.AdGroupFeedErrorEnum_AdGroupFeedError,oneof"`
}
type ErrorCode_CampaignFeedError struct {
CampaignFeedError CampaignFeedErrorEnum_CampaignFeedError `protobuf:"varint,96,opt,name=campaign_feed_error,json=campaignFeedError,proto3,enum=google.ads.googleads.v3.errors.CampaignFeedErrorEnum_CampaignFeedError,oneof"`
}
type ErrorCode_CustomInterestError struct {
CustomInterestError CustomInterestErrorEnum_CustomInterestError `protobuf:"varint,97,opt,name=custom_interest_error,json=customInterestError,proto3,enum=google.ads.googleads.v3.errors.CustomInterestErrorEnum_CustomInterestError,oneof"`
}
type ErrorCode_CampaignExperimentError struct {
CampaignExperimentError CampaignExperimentErrorEnum_CampaignExperimentError `protobuf:"varint,98,opt,name=campaign_experiment_error,json=campaignExperimentError,proto3,enum=google.ads.googleads.v3.errors.CampaignExperimentErrorEnum_CampaignExperimentError,oneof"`
}
type ErrorCode_ExtensionFeedItemError struct {
ExtensionFeedItemError ExtensionFeedItemErrorEnum_ExtensionFeedItemError `protobuf:"varint,100,opt,name=extension_feed_item_error,json=extensionFeedItemError,proto3,enum=google.ads.googleads.v3.errors.ExtensionFeedItemErrorEnum_ExtensionFeedItemError,oneof"`
}
type ErrorCode_AdParameterError struct {
AdParameterError AdParameterErrorEnum_AdParameterError `protobuf:"varint,101,opt,name=ad_parameter_error,json=adParameterError,proto3,enum=google.ads.googleads.v3.errors.AdParameterErrorEnum_AdParameterError,oneof"`
}
type ErrorCode_FeedItemValidationError struct {
FeedItemValidationError FeedItemValidationErrorEnum_FeedItemValidationError `protobuf:"varint,102,opt,name=feed_item_validation_error,json=feedItemValidationError,proto3,enum=google.ads.googleads.v3.errors.FeedItemValidationErrorEnum_FeedItemValidationError,oneof"`
}
type ErrorCode_ExtensionSettingError struct {
ExtensionSettingError ExtensionSettingErrorEnum_ExtensionSettingError `protobuf:"varint,103,opt,name=extension_setting_error,json=extensionSettingError,proto3,enum=google.ads.googleads.v3.errors.ExtensionSettingErrorEnum_ExtensionSettingError,oneof"`
}
type ErrorCode_FeedItemTargetError struct {
FeedItemTargetError FeedItemTargetErrorEnum_FeedItemTargetError `protobuf:"varint,104,opt,name=feed_item_target_error,json=feedItemTargetError,proto3,enum=google.ads.googleads.v3.errors.FeedItemTargetErrorEnum_FeedItemTargetError,oneof"`
}
type ErrorCode_PolicyViolationError struct {
PolicyViolationError PolicyViolationErrorEnum_PolicyViolationError `protobuf:"varint,105,opt,name=policy_violation_error,json=policyViolationError,proto3,enum=google.ads.googleads.v3.errors.PolicyViolationErrorEnum_PolicyViolationError,oneof"`
}
type ErrorCode_MutateJobError struct {
MutateJobError MutateJobErrorEnum_MutateJobError `protobuf:"varint,108,opt,name=mutate_job_error,json=mutateJobError,proto3,enum=google.ads.googleads.v3.errors.MutateJobErrorEnum_MutateJobError,oneof"`
}
type ErrorCode_PartialFailureError struct {
PartialFailureError PartialFailureErrorEnum_PartialFailureError `protobuf:"varint,112,opt,name=partial_failure_error,json=partialFailureError,proto3,enum=google.ads.googleads.v3.errors.PartialFailureErrorEnum_PartialFailureError,oneof"`
}
type ErrorCode_PolicyValidationParameterError struct {
PolicyValidationParameterError PolicyValidationParameterErrorEnum_PolicyValidationParameterError `protobuf:"varint,114,opt,name=policy_validation_parameter_error,json=policyValidationParameterError,proto3,enum=google.ads.googleads.v3.errors.PolicyValidationParameterErrorEnum_PolicyValidationParameterError,oneof"`
}
type ErrorCode_SizeLimitError struct {
SizeLimitError SizeLimitErrorEnum_SizeLimitError `protobuf:"varint,118,opt,name=size_limit_error,json=sizeLimitError,proto3,enum=google.ads.googleads.v3.errors.SizeLimitErrorEnum_SizeLimitError,oneof"`
}
type ErrorCode_NotWhitelistedError struct {
NotWhitelistedError NotWhitelistedErrorEnum_NotWhitelistedError `protobuf:"varint,120,opt,name=not_whitelisted_error,json=notWhitelistedError,proto3,enum=google.ads.googleads.v3.errors.NotWhitelistedErrorEnum_NotWhitelistedError,oneof"`
}
type ErrorCode_ManagerLinkError struct {
ManagerLinkError ManagerLinkErrorEnum_ManagerLinkError `protobuf:"varint,121,opt,name=manager_link_error,json=managerLinkError,proto3,enum=google.ads.googleads.v3.errors.ManagerLinkErrorEnum_ManagerLinkError,oneof"`
}
type ErrorCode_CurrencyCodeError struct {
CurrencyCodeError CurrencyCodeErrorEnum_CurrencyCodeError `protobuf:"varint,122,opt,name=currency_code_error,json=currencyCodeError,proto3,enum=google.ads.googleads.v3.errors.CurrencyCodeErrorEnum_CurrencyCodeError,oneof"`
}
type ErrorCode_AccessInvitationError struct {
AccessInvitationError AccessInvitationErrorEnum_AccessInvitationError `protobuf:"varint,124,opt,name=access_invitation_error,json=accessInvitationError,proto3,enum=google.ads.googleads.v3.errors.AccessInvitationErrorEnum_AccessInvitationError,oneof"`
}
type ErrorCode_ReachPlanError struct {
ReachPlanError ReachPlanErrorEnum_ReachPlanError `protobuf:"varint,125,opt,name=reach_plan_error,json=reachPlanError,proto3,enum=google.ads.googleads.v3.errors.ReachPlanErrorEnum_ReachPlanError,oneof"`
}
type ErrorCode_InvoiceError struct {
InvoiceError InvoiceErrorEnum_InvoiceError `protobuf:"varint,126,opt,name=invoice_error,json=invoiceError,proto3,enum=google.ads.googleads.v3.errors.InvoiceErrorEnum_InvoiceError,oneof"`
}
type ErrorCode_PaymentsAccountError struct {
PaymentsAccountError PaymentsAccountErrorEnum_PaymentsAccountError `protobuf:"varint,127,opt,name=payments_account_error,json=paymentsAccountError,proto3,enum=google.ads.googleads.v3.errors.PaymentsAccountErrorEnum_PaymentsAccountError,oneof"`
}
type ErrorCode_TimeZoneError struct {
TimeZoneError TimeZoneErrorEnum_TimeZoneError `protobuf:"varint,128,opt,name=time_zone_error,json=timeZoneError,proto3,enum=google.ads.googleads.v3.errors.TimeZoneErrorEnum_TimeZoneError,oneof"`
}
func (*ErrorCode_RequestError) isErrorCode_ErrorCode() {}
func (*ErrorCode_BiddingStrategyError) isErrorCode_ErrorCode() {}
func (*ErrorCode_UrlFieldError) isErrorCode_ErrorCode() {}
func (*ErrorCode_ListOperationError) isErrorCode_ErrorCode() {}
func (*ErrorCode_QueryError) isErrorCode_ErrorCode() {}
func (*ErrorCode_MutateError) isErrorCode_ErrorCode() {}
func (*ErrorCode_FieldMaskError) isErrorCode_ErrorCode() {}
func (*ErrorCode_AuthorizationError) isErrorCode_ErrorCode() {}
func (*ErrorCode_InternalError) isErrorCode_ErrorCode() {}
func (*ErrorCode_QuotaError) isErrorCode_ErrorCode() {}
func (*ErrorCode_AdError) isErrorCode_ErrorCode() {}
func (*ErrorCode_AdGroupError) isErrorCode_ErrorCode() {}
func (*ErrorCode_CampaignBudgetError) isErrorCode_ErrorCode() {}
func (*ErrorCode_CampaignError) isErrorCode_ErrorCode() {}
func (*ErrorCode_AuthenticationError) isErrorCode_ErrorCode() {}
func (*ErrorCode_AdGroupCriterionError) isErrorCode_ErrorCode() {}
func (*ErrorCode_AdCustomizerError) isErrorCode_ErrorCode() {}
func (*ErrorCode_AdGroupAdError) isErrorCode_ErrorCode() {}
func (*ErrorCode_AdSharingError) isErrorCode_ErrorCode() {}
func (*ErrorCode_AdxError) isErrorCode_ErrorCode() {}
func (*ErrorCode_AssetError) isErrorCode_ErrorCode() {}
func (*ErrorCode_BiddingError) isErrorCode_ErrorCode() {}
func (*ErrorCode_CampaignCriterionError) isErrorCode_ErrorCode() {}
func (*ErrorCode_CollectionSizeError) isErrorCode_ErrorCode() {}
func (*ErrorCode_CountryCodeError) isErrorCode_ErrorCode() {}
func (*ErrorCode_CriterionError) isErrorCode_ErrorCode() {}
func (*ErrorCode_CustomerError) isErrorCode_ErrorCode() {}
func (*ErrorCode_DateError) isErrorCode_ErrorCode() {}
func (*ErrorCode_DateRangeError) isErrorCode_ErrorCode() {}
func (*ErrorCode_DistinctError) isErrorCode_ErrorCode() {}
func (*ErrorCode_FeedAttributeReferenceError) isErrorCode_ErrorCode() {}
func (*ErrorCode_FunctionError) isErrorCode_ErrorCode() {}
func (*ErrorCode_FunctionParsingError) isErrorCode_ErrorCode() {}
func (*ErrorCode_IdError) isErrorCode_ErrorCode() {}
func (*ErrorCode_ImageError) isErrorCode_ErrorCode() {}
func (*ErrorCode_LanguageCodeError) isErrorCode_ErrorCode() {}
func (*ErrorCode_MediaBundleError) isErrorCode_ErrorCode() {}
func (*ErrorCode_MediaUploadError) isErrorCode_ErrorCode() {}
func (*ErrorCode_MediaFileError) isErrorCode_ErrorCode() {}
func (*ErrorCode_MultiplierError) isErrorCode_ErrorCode() {}
func (*ErrorCode_NewResourceCreationError) isErrorCode_ErrorCode() {}
func (*ErrorCode_NotEmptyError) isErrorCode_ErrorCode() {}
func (*ErrorCode_NullError) isErrorCode_ErrorCode() {}
func (*ErrorCode_OperatorError) isErrorCode_ErrorCode() {}
func (*ErrorCode_RangeError) isErrorCode_ErrorCode() {}
func (*ErrorCode_RecommendationError) isErrorCode_ErrorCode() {}
func (*ErrorCode_RegionCodeError) isErrorCode_ErrorCode() {}
func (*ErrorCode_SettingError) isErrorCode_ErrorCode() {}
func (*ErrorCode_StringFormatError) isErrorCode_ErrorCode() {}
func (*ErrorCode_StringLengthError) isErrorCode_ErrorCode() {}
func (*ErrorCode_OperationAccessDeniedError) isErrorCode_ErrorCode() {}
func (*ErrorCode_ResourceAccessDeniedError) isErrorCode_ErrorCode() {}
func (*ErrorCode_ResourceCountLimitExceededError) isErrorCode_ErrorCode() {}
func (*ErrorCode_YoutubeVideoRegistrationError) isErrorCode_ErrorCode() {}
func (*ErrorCode_AdGroupBidModifierError) isErrorCode_ErrorCode() {}
func (*ErrorCode_ContextError) isErrorCode_ErrorCode() {}
func (*ErrorCode_FieldError) isErrorCode_ErrorCode() {}
func (*ErrorCode_SharedSetError) isErrorCode_ErrorCode() {}
func (*ErrorCode_SharedCriterionError) isErrorCode_ErrorCode() {}
func (*ErrorCode_CampaignSharedSetError) isErrorCode_ErrorCode() {}
func (*ErrorCode_ConversionActionError) isErrorCode_ErrorCode() {}
func (*ErrorCode_ConversionAdjustmentUploadError) isErrorCode_ErrorCode() {}
func (*ErrorCode_ConversionUploadError) isErrorCode_ErrorCode() {}
func (*ErrorCode_HeaderError) isErrorCode_ErrorCode() {}
func (*ErrorCode_DatabaseError) isErrorCode_ErrorCode() {}
func (*ErrorCode_PolicyFindingError) isErrorCode_ErrorCode() {}
func (*ErrorCode_EnumError) isErrorCode_ErrorCode() {}
func (*ErrorCode_KeywordPlanError) isErrorCode_ErrorCode() {}
func (*ErrorCode_KeywordPlanCampaignError) isErrorCode_ErrorCode() {}
func (*ErrorCode_KeywordPlanNegativeKeywordError) isErrorCode_ErrorCode() {}
func (*ErrorCode_KeywordPlanAdGroupError) isErrorCode_ErrorCode() {}
func (*ErrorCode_KeywordPlanKeywordError) isErrorCode_ErrorCode() {}
func (*ErrorCode_KeywordPlanIdeaError) isErrorCode_ErrorCode() {}
func (*ErrorCode_AccountBudgetProposalError) isErrorCode_ErrorCode() {}
func (*ErrorCode_UserListError) isErrorCode_ErrorCode() {}
func (*ErrorCode_ChangeStatusError) isErrorCode_ErrorCode() {}
func (*ErrorCode_FeedError) isErrorCode_ErrorCode() {}
func (*ErrorCode_GeoTargetConstantSuggestionError) isErrorCode_ErrorCode() {}
func (*ErrorCode_CampaignDraftError) isErrorCode_ErrorCode() {}
func (*ErrorCode_FeedItemError) isErrorCode_ErrorCode() {}
func (*ErrorCode_LabelError) isErrorCode_ErrorCode() {}
func (*ErrorCode_BillingSetupError) isErrorCode_ErrorCode() {}
func (*ErrorCode_CustomerClientLinkError) isErrorCode_ErrorCode() {}
func (*ErrorCode_CustomerManagerLinkError) isErrorCode_ErrorCode() {}
func (*ErrorCode_FeedMappingError) isErrorCode_ErrorCode() {}
func (*ErrorCode_CustomerFeedError) isErrorCode_ErrorCode() {}
func (*ErrorCode_AdGroupFeedError) isErrorCode_ErrorCode() {}
func (*ErrorCode_CampaignFeedError) isErrorCode_ErrorCode() {}
func (*ErrorCode_CustomInterestError) isErrorCode_ErrorCode() {}
func (*ErrorCode_CampaignExperimentError) isErrorCode_ErrorCode() {}
func (*ErrorCode_ExtensionFeedItemError) isErrorCode_ErrorCode() {}
func (*ErrorCode_AdParameterError) isErrorCode_ErrorCode() {}
func (*ErrorCode_FeedItemValidationError) isErrorCode_ErrorCode() {}
func (*ErrorCode_ExtensionSettingError) isErrorCode_ErrorCode() {}
func (*ErrorCode_FeedItemTargetError) isErrorCode_ErrorCode() {}
func (*ErrorCode_PolicyViolationError) isErrorCode_ErrorCode() {}
func (*ErrorCode_MutateJobError) isErrorCode_ErrorCode() {}
func (*ErrorCode_PartialFailureError) isErrorCode_ErrorCode() {}
func (*ErrorCode_PolicyValidationParameterError) isErrorCode_ErrorCode() {}
func (*ErrorCode_SizeLimitError) isErrorCode_ErrorCode() {}
func (*ErrorCode_NotWhitelistedError) isErrorCode_ErrorCode() {}
func (*ErrorCode_ManagerLinkError) isErrorCode_ErrorCode() {}
func (*ErrorCode_CurrencyCodeError) isErrorCode_ErrorCode() {}
func (*ErrorCode_AccessInvitationError) isErrorCode_ErrorCode() {}
func (*ErrorCode_ReachPlanError) isErrorCode_ErrorCode() {}
func (*ErrorCode_InvoiceError) isErrorCode_ErrorCode() {}
func (*ErrorCode_PaymentsAccountError) isErrorCode_ErrorCode() {}
func (*ErrorCode_TimeZoneError) isErrorCode_ErrorCode() {}
func (m *ErrorCode) GetErrorCode() isErrorCode_ErrorCode {
if m != nil {
return m.ErrorCode
}
return nil
}
func (m *ErrorCode) GetRequestError() RequestErrorEnum_RequestError {
if x, ok := m.GetErrorCode().(*ErrorCode_RequestError); ok {
return x.RequestError
}
return RequestErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetBiddingStrategyError() BiddingStrategyErrorEnum_BiddingStrategyError {
if x, ok := m.GetErrorCode().(*ErrorCode_BiddingStrategyError); ok {
return x.BiddingStrategyError
}
return BiddingStrategyErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetUrlFieldError() UrlFieldErrorEnum_UrlFieldError {
if x, ok := m.GetErrorCode().(*ErrorCode_UrlFieldError); ok {
return x.UrlFieldError
}
return UrlFieldErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetListOperationError() ListOperationErrorEnum_ListOperationError {
if x, ok := m.GetErrorCode().(*ErrorCode_ListOperationError); ok {
return x.ListOperationError
}
return ListOperationErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetQueryError() QueryErrorEnum_QueryError {
if x, ok := m.GetErrorCode().(*ErrorCode_QueryError); ok {
return x.QueryError
}
return QueryErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetMutateError() MutateErrorEnum_MutateError {
if x, ok := m.GetErrorCode().(*ErrorCode_MutateError); ok {
return x.MutateError
}
return MutateErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetFieldMaskError() FieldMaskErrorEnum_FieldMaskError {
if x, ok := m.GetErrorCode().(*ErrorCode_FieldMaskError); ok {
return x.FieldMaskError
}
return FieldMaskErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetAuthorizationError() AuthorizationErrorEnum_AuthorizationError {
if x, ok := m.GetErrorCode().(*ErrorCode_AuthorizationError); ok {
return x.AuthorizationError
}
return AuthorizationErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetInternalError() InternalErrorEnum_InternalError {
if x, ok := m.GetErrorCode().(*ErrorCode_InternalError); ok {
return x.InternalError
}
return InternalErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetQuotaError() QuotaErrorEnum_QuotaError {
if x, ok := m.GetErrorCode().(*ErrorCode_QuotaError); ok {
return x.QuotaError
}
return QuotaErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetAdError() AdErrorEnum_AdError {
if x, ok := m.GetErrorCode().(*ErrorCode_AdError); ok {
return x.AdError
}
return AdErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetAdGroupError() AdGroupErrorEnum_AdGroupError {
if x, ok := m.GetErrorCode().(*ErrorCode_AdGroupError); ok {
return x.AdGroupError
}
return AdGroupErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetCampaignBudgetError() CampaignBudgetErrorEnum_CampaignBudgetError {
if x, ok := m.GetErrorCode().(*ErrorCode_CampaignBudgetError); ok {
return x.CampaignBudgetError
}
return CampaignBudgetErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetCampaignError() CampaignErrorEnum_CampaignError {
if x, ok := m.GetErrorCode().(*ErrorCode_CampaignError); ok {
return x.CampaignError
}
return CampaignErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetAuthenticationError() AuthenticationErrorEnum_AuthenticationError {
if x, ok := m.GetErrorCode().(*ErrorCode_AuthenticationError); ok {
return x.AuthenticationError
}
return AuthenticationErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetAdGroupCriterionError() AdGroupCriterionErrorEnum_AdGroupCriterionError {
if x, ok := m.GetErrorCode().(*ErrorCode_AdGroupCriterionError); ok {
return x.AdGroupCriterionError
}
return AdGroupCriterionErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetAdCustomizerError() AdCustomizerErrorEnum_AdCustomizerError {
if x, ok := m.GetErrorCode().(*ErrorCode_AdCustomizerError); ok {
return x.AdCustomizerError
}
return AdCustomizerErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetAdGroupAdError() AdGroupAdErrorEnum_AdGroupAdError {
if x, ok := m.GetErrorCode().(*ErrorCode_AdGroupAdError); ok {
return x.AdGroupAdError
}
return AdGroupAdErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetAdSharingError() AdSharingErrorEnum_AdSharingError {
if x, ok := m.GetErrorCode().(*ErrorCode_AdSharingError); ok {
return x.AdSharingError
}
return AdSharingErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetAdxError() AdxErrorEnum_AdxError {
if x, ok := m.GetErrorCode().(*ErrorCode_AdxError); ok {
return x.AdxError
}
return AdxErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetAssetError() AssetErrorEnum_AssetError {
if x, ok := m.GetErrorCode().(*ErrorCode_AssetError); ok {
return x.AssetError
}
return AssetErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetBiddingError() BiddingErrorEnum_BiddingError {
if x, ok := m.GetErrorCode().(*ErrorCode_BiddingError); ok {
return x.BiddingError
}
return BiddingErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetCampaignCriterionError() CampaignCriterionErrorEnum_CampaignCriterionError {
if x, ok := m.GetErrorCode().(*ErrorCode_CampaignCriterionError); ok {
return x.CampaignCriterionError
}
return CampaignCriterionErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetCollectionSizeError() CollectionSizeErrorEnum_CollectionSizeError {
if x, ok := m.GetErrorCode().(*ErrorCode_CollectionSizeError); ok {
return x.CollectionSizeError
}
return CollectionSizeErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetCountryCodeError() CountryCodeErrorEnum_CountryCodeError {
if x, ok := m.GetErrorCode().(*ErrorCode_CountryCodeError); ok {
return x.CountryCodeError
}
return CountryCodeErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetCriterionError() CriterionErrorEnum_CriterionError {
if x, ok := m.GetErrorCode().(*ErrorCode_CriterionError); ok {
return x.CriterionError
}
return CriterionErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetCustomerError() CustomerErrorEnum_CustomerError {
if x, ok := m.GetErrorCode().(*ErrorCode_CustomerError); ok {
return x.CustomerError
}
return CustomerErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetDateError() DateErrorEnum_DateError {
if x, ok := m.GetErrorCode().(*ErrorCode_DateError); ok {
return x.DateError
}
return DateErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetDateRangeError() DateRangeErrorEnum_DateRangeError {
if x, ok := m.GetErrorCode().(*ErrorCode_DateRangeError); ok {
return x.DateRangeError
}
return DateRangeErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetDistinctError() DistinctErrorEnum_DistinctError {
if x, ok := m.GetErrorCode().(*ErrorCode_DistinctError); ok {
return x.DistinctError
}
return DistinctErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetFeedAttributeReferenceError() FeedAttributeReferenceErrorEnum_FeedAttributeReferenceError {
if x, ok := m.GetErrorCode().(*ErrorCode_FeedAttributeReferenceError); ok {
return x.FeedAttributeReferenceError
}
return FeedAttributeReferenceErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetFunctionError() FunctionErrorEnum_FunctionError {
if x, ok := m.GetErrorCode().(*ErrorCode_FunctionError); ok {
return x.FunctionError
}
return FunctionErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetFunctionParsingError() FunctionParsingErrorEnum_FunctionParsingError {
if x, ok := m.GetErrorCode().(*ErrorCode_FunctionParsingError); ok {
return x.FunctionParsingError
}
return FunctionParsingErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetIdError() IdErrorEnum_IdError {
if x, ok := m.GetErrorCode().(*ErrorCode_IdError); ok {
return x.IdError
}
return IdErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetImageError() ImageErrorEnum_ImageError {
if x, ok := m.GetErrorCode().(*ErrorCode_ImageError); ok {
return x.ImageError
}
return ImageErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetLanguageCodeError() LanguageCodeErrorEnum_LanguageCodeError {
if x, ok := m.GetErrorCode().(*ErrorCode_LanguageCodeError); ok {
return x.LanguageCodeError
}
return LanguageCodeErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetMediaBundleError() MediaBundleErrorEnum_MediaBundleError {
if x, ok := m.GetErrorCode().(*ErrorCode_MediaBundleError); ok {
return x.MediaBundleError
}
return MediaBundleErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetMediaUploadError() MediaUploadErrorEnum_MediaUploadError {
if x, ok := m.GetErrorCode().(*ErrorCode_MediaUploadError); ok {
return x.MediaUploadError
}
return MediaUploadErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetMediaFileError() MediaFileErrorEnum_MediaFileError {
if x, ok := m.GetErrorCode().(*ErrorCode_MediaFileError); ok {
return x.MediaFileError
}
return MediaFileErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetMultiplierError() MultiplierErrorEnum_MultiplierError {
if x, ok := m.GetErrorCode().(*ErrorCode_MultiplierError); ok {
return x.MultiplierError
}
return MultiplierErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetNewResourceCreationError() NewResourceCreationErrorEnum_NewResourceCreationError {
if x, ok := m.GetErrorCode().(*ErrorCode_NewResourceCreationError); ok {
return x.NewResourceCreationError
}
return NewResourceCreationErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetNotEmptyError() NotEmptyErrorEnum_NotEmptyError {
if x, ok := m.GetErrorCode().(*ErrorCode_NotEmptyError); ok {
return x.NotEmptyError
}
return NotEmptyErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetNullError() NullErrorEnum_NullError {
if x, ok := m.GetErrorCode().(*ErrorCode_NullError); ok {
return x.NullError
}
return NullErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetOperatorError() OperatorErrorEnum_OperatorError {
if x, ok := m.GetErrorCode().(*ErrorCode_OperatorError); ok {
return x.OperatorError
}
return OperatorErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetRangeError() RangeErrorEnum_RangeError {
if x, ok := m.GetErrorCode().(*ErrorCode_RangeError); ok {
return x.RangeError
}
return RangeErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetRecommendationError() RecommendationErrorEnum_RecommendationError {
if x, ok := m.GetErrorCode().(*ErrorCode_RecommendationError); ok {
return x.RecommendationError
}
return RecommendationErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetRegionCodeError() RegionCodeErrorEnum_RegionCodeError {
if x, ok := m.GetErrorCode().(*ErrorCode_RegionCodeError); ok {
return x.RegionCodeError
}
return RegionCodeErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetSettingError() SettingErrorEnum_SettingError {
if x, ok := m.GetErrorCode().(*ErrorCode_SettingError); ok {
return x.SettingError
}
return SettingErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetStringFormatError() StringFormatErrorEnum_StringFormatError {
if x, ok := m.GetErrorCode().(*ErrorCode_StringFormatError); ok {
return x.StringFormatError
}
return StringFormatErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetStringLengthError() StringLengthErrorEnum_StringLengthError {
if x, ok := m.GetErrorCode().(*ErrorCode_StringLengthError); ok {
return x.StringLengthError
}
return StringLengthErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetOperationAccessDeniedError() OperationAccessDeniedErrorEnum_OperationAccessDeniedError {
if x, ok := m.GetErrorCode().(*ErrorCode_OperationAccessDeniedError); ok {
return x.OperationAccessDeniedError
}
return OperationAccessDeniedErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetResourceAccessDeniedError() ResourceAccessDeniedErrorEnum_ResourceAccessDeniedError {
if x, ok := m.GetErrorCode().(*ErrorCode_ResourceAccessDeniedError); ok {
return x.ResourceAccessDeniedError
}
return ResourceAccessDeniedErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetResourceCountLimitExceededError() ResourceCountLimitExceededErrorEnum_ResourceCountLimitExceededError {
if x, ok := m.GetErrorCode().(*ErrorCode_ResourceCountLimitExceededError); ok {
return x.ResourceCountLimitExceededError
}
return ResourceCountLimitExceededErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetYoutubeVideoRegistrationError() YoutubeVideoRegistrationErrorEnum_YoutubeVideoRegistrationError {
if x, ok := m.GetErrorCode().(*ErrorCode_YoutubeVideoRegistrationError); ok {
return x.YoutubeVideoRegistrationError
}
return YoutubeVideoRegistrationErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetAdGroupBidModifierError() AdGroupBidModifierErrorEnum_AdGroupBidModifierError {
if x, ok := m.GetErrorCode().(*ErrorCode_AdGroupBidModifierError); ok {
return x.AdGroupBidModifierError
}
return AdGroupBidModifierErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetContextError() ContextErrorEnum_ContextError {
if x, ok := m.GetErrorCode().(*ErrorCode_ContextError); ok {
return x.ContextError
}
return ContextErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetFieldError() FieldErrorEnum_FieldError {
if x, ok := m.GetErrorCode().(*ErrorCode_FieldError); ok {
return x.FieldError
}
return FieldErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetSharedSetError() SharedSetErrorEnum_SharedSetError {
if x, ok := m.GetErrorCode().(*ErrorCode_SharedSetError); ok {
return x.SharedSetError
}
return SharedSetErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetSharedCriterionError() SharedCriterionErrorEnum_SharedCriterionError {
if x, ok := m.GetErrorCode().(*ErrorCode_SharedCriterionError); ok {
return x.SharedCriterionError
}
return SharedCriterionErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetCampaignSharedSetError() CampaignSharedSetErrorEnum_CampaignSharedSetError {
if x, ok := m.GetErrorCode().(*ErrorCode_CampaignSharedSetError); ok {
return x.CampaignSharedSetError
}
return CampaignSharedSetErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetConversionActionError() ConversionActionErrorEnum_ConversionActionError {
if x, ok := m.GetErrorCode().(*ErrorCode_ConversionActionError); ok {
return x.ConversionActionError
}
return ConversionActionErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetConversionAdjustmentUploadError() ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError {
if x, ok := m.GetErrorCode().(*ErrorCode_ConversionAdjustmentUploadError); ok {
return x.ConversionAdjustmentUploadError
}
return ConversionAdjustmentUploadErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetConversionUploadError() ConversionUploadErrorEnum_ConversionUploadError {
if x, ok := m.GetErrorCode().(*ErrorCode_ConversionUploadError); ok {
return x.ConversionUploadError
}
return ConversionUploadErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetHeaderError() HeaderErrorEnum_HeaderError {
if x, ok := m.GetErrorCode().(*ErrorCode_HeaderError); ok {
return x.HeaderError
}
return HeaderErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetDatabaseError() DatabaseErrorEnum_DatabaseError {
if x, ok := m.GetErrorCode().(*ErrorCode_DatabaseError); ok {
return x.DatabaseError
}
return DatabaseErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetPolicyFindingError() PolicyFindingErrorEnum_PolicyFindingError {
if x, ok := m.GetErrorCode().(*ErrorCode_PolicyFindingError); ok {
return x.PolicyFindingError
}
return PolicyFindingErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetEnumError() EnumErrorEnum_EnumError {
if x, ok := m.GetErrorCode().(*ErrorCode_EnumError); ok {
return x.EnumError
}
return EnumErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetKeywordPlanError() KeywordPlanErrorEnum_KeywordPlanError {
if x, ok := m.GetErrorCode().(*ErrorCode_KeywordPlanError); ok {
return x.KeywordPlanError
}
return KeywordPlanErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetKeywordPlanCampaignError() KeywordPlanCampaignErrorEnum_KeywordPlanCampaignError {
if x, ok := m.GetErrorCode().(*ErrorCode_KeywordPlanCampaignError); ok {
return x.KeywordPlanCampaignError
}
return KeywordPlanCampaignErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetKeywordPlanNegativeKeywordError() KeywordPlanNegativeKeywordErrorEnum_KeywordPlanNegativeKeywordError {
if x, ok := m.GetErrorCode().(*ErrorCode_KeywordPlanNegativeKeywordError); ok {
return x.KeywordPlanNegativeKeywordError
}
return KeywordPlanNegativeKeywordErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetKeywordPlanAdGroupError() KeywordPlanAdGroupErrorEnum_KeywordPlanAdGroupError {
if x, ok := m.GetErrorCode().(*ErrorCode_KeywordPlanAdGroupError); ok {
return x.KeywordPlanAdGroupError
}
return KeywordPlanAdGroupErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetKeywordPlanKeywordError() KeywordPlanKeywordErrorEnum_KeywordPlanKeywordError {
if x, ok := m.GetErrorCode().(*ErrorCode_KeywordPlanKeywordError); ok {
return x.KeywordPlanKeywordError
}
return KeywordPlanKeywordErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetKeywordPlanIdeaError() KeywordPlanIdeaErrorEnum_KeywordPlanIdeaError {
if x, ok := m.GetErrorCode().(*ErrorCode_KeywordPlanIdeaError); ok {
return x.KeywordPlanIdeaError
}
return KeywordPlanIdeaErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetAccountBudgetProposalError() AccountBudgetProposalErrorEnum_AccountBudgetProposalError {
if x, ok := m.GetErrorCode().(*ErrorCode_AccountBudgetProposalError); ok {
return x.AccountBudgetProposalError
}
return AccountBudgetProposalErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetUserListError() UserListErrorEnum_UserListError {
if x, ok := m.GetErrorCode().(*ErrorCode_UserListError); ok {
return x.UserListError
}
return UserListErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetChangeStatusError() ChangeStatusErrorEnum_ChangeStatusError {
if x, ok := m.GetErrorCode().(*ErrorCode_ChangeStatusError); ok {
return x.ChangeStatusError
}
return ChangeStatusErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetFeedError() FeedErrorEnum_FeedError {
if x, ok := m.GetErrorCode().(*ErrorCode_FeedError); ok {
return x.FeedError
}
return FeedErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetGeoTargetConstantSuggestionError() GeoTargetConstantSuggestionErrorEnum_GeoTargetConstantSuggestionError {
if x, ok := m.GetErrorCode().(*ErrorCode_GeoTargetConstantSuggestionError); ok {
return x.GeoTargetConstantSuggestionError
}
return GeoTargetConstantSuggestionErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetCampaignDraftError() CampaignDraftErrorEnum_CampaignDraftError {
if x, ok := m.GetErrorCode().(*ErrorCode_CampaignDraftError); ok {
return x.CampaignDraftError
}
return CampaignDraftErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetFeedItemError() FeedItemErrorEnum_FeedItemError {
if x, ok := m.GetErrorCode().(*ErrorCode_FeedItemError); ok {
return x.FeedItemError
}
return FeedItemErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetLabelError() LabelErrorEnum_LabelError {
if x, ok := m.GetErrorCode().(*ErrorCode_LabelError); ok {
return x.LabelError
}
return LabelErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetBillingSetupError() BillingSetupErrorEnum_BillingSetupError {
if x, ok := m.GetErrorCode().(*ErrorCode_BillingSetupError); ok {
return x.BillingSetupError
}
return BillingSetupErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetCustomerClientLinkError() CustomerClientLinkErrorEnum_CustomerClientLinkError {
if x, ok := m.GetErrorCode().(*ErrorCode_CustomerClientLinkError); ok {
return x.CustomerClientLinkError
}
return CustomerClientLinkErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetCustomerManagerLinkError() CustomerManagerLinkErrorEnum_CustomerManagerLinkError {
if x, ok := m.GetErrorCode().(*ErrorCode_CustomerManagerLinkError); ok {
return x.CustomerManagerLinkError
}
return CustomerManagerLinkErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetFeedMappingError() FeedMappingErrorEnum_FeedMappingError {
if x, ok := m.GetErrorCode().(*ErrorCode_FeedMappingError); ok {
return x.FeedMappingError
}
return FeedMappingErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetCustomerFeedError() CustomerFeedErrorEnum_CustomerFeedError {
if x, ok := m.GetErrorCode().(*ErrorCode_CustomerFeedError); ok {
return x.CustomerFeedError
}
return CustomerFeedErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetAdGroupFeedError() AdGroupFeedErrorEnum_AdGroupFeedError {
if x, ok := m.GetErrorCode().(*ErrorCode_AdGroupFeedError); ok {
return x.AdGroupFeedError
}
return AdGroupFeedErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetCampaignFeedError() CampaignFeedErrorEnum_CampaignFeedError {
if x, ok := m.GetErrorCode().(*ErrorCode_CampaignFeedError); ok {
return x.CampaignFeedError
}
return CampaignFeedErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetCustomInterestError() CustomInterestErrorEnum_CustomInterestError {
if x, ok := m.GetErrorCode().(*ErrorCode_CustomInterestError); ok {
return x.CustomInterestError
}
return CustomInterestErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetCampaignExperimentError() CampaignExperimentErrorEnum_CampaignExperimentError {
if x, ok := m.GetErrorCode().(*ErrorCode_CampaignExperimentError); ok {
return x.CampaignExperimentError
}
return CampaignExperimentErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetExtensionFeedItemError() ExtensionFeedItemErrorEnum_ExtensionFeedItemError {
if x, ok := m.GetErrorCode().(*ErrorCode_ExtensionFeedItemError); ok {
return x.ExtensionFeedItemError
}
return ExtensionFeedItemErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetAdParameterError() AdParameterErrorEnum_AdParameterError {
if x, ok := m.GetErrorCode().(*ErrorCode_AdParameterError); ok {
return x.AdParameterError
}
return AdParameterErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetFeedItemValidationError() FeedItemValidationErrorEnum_FeedItemValidationError {
if x, ok := m.GetErrorCode().(*ErrorCode_FeedItemValidationError); ok {
return x.FeedItemValidationError
}
return FeedItemValidationErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetExtensionSettingError() ExtensionSettingErrorEnum_ExtensionSettingError {
if x, ok := m.GetErrorCode().(*ErrorCode_ExtensionSettingError); ok {
return x.ExtensionSettingError
}
return ExtensionSettingErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetFeedItemTargetError() FeedItemTargetErrorEnum_FeedItemTargetError {
if x, ok := m.GetErrorCode().(*ErrorCode_FeedItemTargetError); ok {
return x.FeedItemTargetError
}
return FeedItemTargetErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetPolicyViolationError() PolicyViolationErrorEnum_PolicyViolationError {
if x, ok := m.GetErrorCode().(*ErrorCode_PolicyViolationError); ok {
return x.PolicyViolationError
}
return PolicyViolationErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetMutateJobError() MutateJobErrorEnum_MutateJobError {
if x, ok := m.GetErrorCode().(*ErrorCode_MutateJobError); ok {
return x.MutateJobError
}
return MutateJobErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetPartialFailureError() PartialFailureErrorEnum_PartialFailureError {
if x, ok := m.GetErrorCode().(*ErrorCode_PartialFailureError); ok {
return x.PartialFailureError
}
return PartialFailureErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetPolicyValidationParameterError() PolicyValidationParameterErrorEnum_PolicyValidationParameterError {
if x, ok := m.GetErrorCode().(*ErrorCode_PolicyValidationParameterError); ok {
return x.PolicyValidationParameterError
}
return PolicyValidationParameterErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetSizeLimitError() SizeLimitErrorEnum_SizeLimitError {
if x, ok := m.GetErrorCode().(*ErrorCode_SizeLimitError); ok {
return x.SizeLimitError
}
return SizeLimitErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetNotWhitelistedError() NotWhitelistedErrorEnum_NotWhitelistedError {
if x, ok := m.GetErrorCode().(*ErrorCode_NotWhitelistedError); ok {
return x.NotWhitelistedError
}
return NotWhitelistedErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetManagerLinkError() ManagerLinkErrorEnum_ManagerLinkError {
if x, ok := m.GetErrorCode().(*ErrorCode_ManagerLinkError); ok {
return x.ManagerLinkError
}
return ManagerLinkErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetCurrencyCodeError() CurrencyCodeErrorEnum_CurrencyCodeError {
if x, ok := m.GetErrorCode().(*ErrorCode_CurrencyCodeError); ok {
return x.CurrencyCodeError
}
return CurrencyCodeErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetAccessInvitationError() AccessInvitationErrorEnum_AccessInvitationError {
if x, ok := m.GetErrorCode().(*ErrorCode_AccessInvitationError); ok {
return x.AccessInvitationError
}
return AccessInvitationErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetReachPlanError() ReachPlanErrorEnum_ReachPlanError {
if x, ok := m.GetErrorCode().(*ErrorCode_ReachPlanError); ok {
return x.ReachPlanError
}
return ReachPlanErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetInvoiceError() InvoiceErrorEnum_InvoiceError {
if x, ok := m.GetErrorCode().(*ErrorCode_InvoiceError); ok {
return x.InvoiceError
}
return InvoiceErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetPaymentsAccountError() PaymentsAccountErrorEnum_PaymentsAccountError {
if x, ok := m.GetErrorCode().(*ErrorCode_PaymentsAccountError); ok {
return x.PaymentsAccountError
}
return PaymentsAccountErrorEnum_UNSPECIFIED
}
func (m *ErrorCode) GetTimeZoneError() TimeZoneErrorEnum_TimeZoneError {
if x, ok := m.GetErrorCode().(*ErrorCode_TimeZoneError); ok {
return x.TimeZoneError
}
return TimeZoneErrorEnum_UNSPECIFIED
}
// XXX_OneofWrappers is for the internal use of the proto package.
func (*ErrorCode) XXX_OneofWrappers() []interface{} {
return []interface{}{
(*ErrorCode_RequestError)(nil),
(*ErrorCode_BiddingStrategyError)(nil),
(*ErrorCode_UrlFieldError)(nil),
(*ErrorCode_ListOperationError)(nil),
(*ErrorCode_QueryError)(nil),
(*ErrorCode_MutateError)(nil),
(*ErrorCode_FieldMaskError)(nil),
(*ErrorCode_AuthorizationError)(nil),
(*ErrorCode_InternalError)(nil),
(*ErrorCode_QuotaError)(nil),
(*ErrorCode_AdError)(nil),
(*ErrorCode_AdGroupError)(nil),
(*ErrorCode_CampaignBudgetError)(nil),
(*ErrorCode_CampaignError)(nil),
(*ErrorCode_AuthenticationError)(nil),
(*ErrorCode_AdGroupCriterionError)(nil),
(*ErrorCode_AdCustomizerError)(nil),
(*ErrorCode_AdGroupAdError)(nil),
(*ErrorCode_AdSharingError)(nil),
(*ErrorCode_AdxError)(nil),
(*ErrorCode_AssetError)(nil),
(*ErrorCode_BiddingError)(nil),
(*ErrorCode_CampaignCriterionError)(nil),
(*ErrorCode_CollectionSizeError)(nil),
(*ErrorCode_CountryCodeError)(nil),
(*ErrorCode_CriterionError)(nil),
(*ErrorCode_CustomerError)(nil),
(*ErrorCode_DateError)(nil),
(*ErrorCode_DateRangeError)(nil),
(*ErrorCode_DistinctError)(nil),
(*ErrorCode_FeedAttributeReferenceError)(nil),
(*ErrorCode_FunctionError)(nil),
(*ErrorCode_FunctionParsingError)(nil),
(*ErrorCode_IdError)(nil),
(*ErrorCode_ImageError)(nil),
(*ErrorCode_LanguageCodeError)(nil),
(*ErrorCode_MediaBundleError)(nil),
(*ErrorCode_MediaUploadError)(nil),
(*ErrorCode_MediaFileError)(nil),
(*ErrorCode_MultiplierError)(nil),
(*ErrorCode_NewResourceCreationError)(nil),
(*ErrorCode_NotEmptyError)(nil),
(*ErrorCode_NullError)(nil),
(*ErrorCode_OperatorError)(nil),
(*ErrorCode_RangeError)(nil),
(*ErrorCode_RecommendationError)(nil),
(*ErrorCode_RegionCodeError)(nil),
(*ErrorCode_SettingError)(nil),
(*ErrorCode_StringFormatError)(nil),
(*ErrorCode_StringLengthError)(nil),
(*ErrorCode_OperationAccessDeniedError)(nil),
(*ErrorCode_ResourceAccessDeniedError)(nil),
(*ErrorCode_ResourceCountLimitExceededError)(nil),
(*ErrorCode_YoutubeVideoRegistrationError)(nil),
(*ErrorCode_AdGroupBidModifierError)(nil),
(*ErrorCode_ContextError)(nil),
(*ErrorCode_FieldError)(nil),
(*ErrorCode_SharedSetError)(nil),
(*ErrorCode_SharedCriterionError)(nil),
(*ErrorCode_CampaignSharedSetError)(nil),
(*ErrorCode_ConversionActionError)(nil),
(*ErrorCode_ConversionAdjustmentUploadError)(nil),
(*ErrorCode_ConversionUploadError)(nil),
(*ErrorCode_HeaderError)(nil),
(*ErrorCode_DatabaseError)(nil),
(*ErrorCode_PolicyFindingError)(nil),
(*ErrorCode_EnumError)(nil),
(*ErrorCode_KeywordPlanError)(nil),
(*ErrorCode_KeywordPlanCampaignError)(nil),
(*ErrorCode_KeywordPlanNegativeKeywordError)(nil),
(*ErrorCode_KeywordPlanAdGroupError)(nil),
(*ErrorCode_KeywordPlanKeywordError)(nil),
(*ErrorCode_KeywordPlanIdeaError)(nil),
(*ErrorCode_AccountBudgetProposalError)(nil),
(*ErrorCode_UserListError)(nil),
(*ErrorCode_ChangeStatusError)(nil),
(*ErrorCode_FeedError)(nil),
(*ErrorCode_GeoTargetConstantSuggestionError)(nil),
(*ErrorCode_CampaignDraftError)(nil),
(*ErrorCode_FeedItemError)(nil),
(*ErrorCode_LabelError)(nil),
(*ErrorCode_BillingSetupError)(nil),
(*ErrorCode_CustomerClientLinkError)(nil),
(*ErrorCode_CustomerManagerLinkError)(nil),
(*ErrorCode_FeedMappingError)(nil),
(*ErrorCode_CustomerFeedError)(nil),
(*ErrorCode_AdGroupFeedError)(nil),
(*ErrorCode_CampaignFeedError)(nil),
(*ErrorCode_CustomInterestError)(nil),
(*ErrorCode_CampaignExperimentError)(nil),
(*ErrorCode_ExtensionFeedItemError)(nil),
(*ErrorCode_AdParameterError)(nil),
(*ErrorCode_FeedItemValidationError)(nil),
(*ErrorCode_ExtensionSettingError)(nil),
(*ErrorCode_FeedItemTargetError)(nil),
(*ErrorCode_PolicyViolationError)(nil),
(*ErrorCode_MutateJobError)(nil),
(*ErrorCode_PartialFailureError)(nil),
(*ErrorCode_PolicyValidationParameterError)(nil),
(*ErrorCode_SizeLimitError)(nil),
(*ErrorCode_NotWhitelistedError)(nil),
(*ErrorCode_ManagerLinkError)(nil),
(*ErrorCode_CurrencyCodeError)(nil),
(*ErrorCode_AccessInvitationError)(nil),
(*ErrorCode_ReachPlanError)(nil),
(*ErrorCode_InvoiceError)(nil),
(*ErrorCode_PaymentsAccountError)(nil),
(*ErrorCode_TimeZoneError)(nil),
}
}
// Describes the part of the request proto that caused the error.
type ErrorLocation struct {
// A field path that indicates which field was invalid in the request.
FieldPathElements []*ErrorLocation_FieldPathElement `protobuf:"bytes,2,rep,name=field_path_elements,json=fieldPathElements,proto3" json:"field_path_elements,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ErrorLocation) Reset() { *m = ErrorLocation{} }
func (m *ErrorLocation) String() string { return proto.CompactTextString(m) }
func (*ErrorLocation) ProtoMessage() {}
func (*ErrorLocation) Descriptor() ([]byte, []int) {
return fileDescriptor_37c8858a8ef846f0, []int{3}
}
func (m *ErrorLocation) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ErrorLocation.Unmarshal(m, b)
}
func (m *ErrorLocation) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ErrorLocation.Marshal(b, m, deterministic)
}
func (m *ErrorLocation) XXX_Merge(src proto.Message) {
xxx_messageInfo_ErrorLocation.Merge(m, src)
}
func (m *ErrorLocation) XXX_Size() int {
return xxx_messageInfo_ErrorLocation.Size(m)
}
func (m *ErrorLocation) XXX_DiscardUnknown() {
xxx_messageInfo_ErrorLocation.DiscardUnknown(m)
}
var xxx_messageInfo_ErrorLocation proto.InternalMessageInfo
func (m *ErrorLocation) GetFieldPathElements() []*ErrorLocation_FieldPathElement {
if m != nil {
return m.FieldPathElements
}
return nil
}
// A part of a field path.
type ErrorLocation_FieldPathElement struct {
// The name of a field or a oneof
FieldName string `protobuf:"bytes,1,opt,name=field_name,json=fieldName,proto3" json:"field_name,omitempty"`
// If field_name is a repeated field, this is the element that failed
Index *wrappers.Int64Value `protobuf:"bytes,2,opt,name=index,proto3" json:"index,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ErrorLocation_FieldPathElement) Reset() { *m = ErrorLocation_FieldPathElement{} }
func (m *ErrorLocation_FieldPathElement) String() string { return proto.CompactTextString(m) }
func (*ErrorLocation_FieldPathElement) ProtoMessage() {}
func (*ErrorLocation_FieldPathElement) Descriptor() ([]byte, []int) {
return fileDescriptor_37c8858a8ef846f0, []int{3, 0}
}
func (m *ErrorLocation_FieldPathElement) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ErrorLocation_FieldPathElement.Unmarshal(m, b)
}
func (m *ErrorLocation_FieldPathElement) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ErrorLocation_FieldPathElement.Marshal(b, m, deterministic)
}
func (m *ErrorLocation_FieldPathElement) XXX_Merge(src proto.Message) {
xxx_messageInfo_ErrorLocation_FieldPathElement.Merge(m, src)
}
func (m *ErrorLocation_FieldPathElement) XXX_Size() int {
return xxx_messageInfo_ErrorLocation_FieldPathElement.Size(m)
}
func (m *ErrorLocation_FieldPathElement) XXX_DiscardUnknown() {
xxx_messageInfo_ErrorLocation_FieldPathElement.DiscardUnknown(m)
}
var xxx_messageInfo_ErrorLocation_FieldPathElement proto.InternalMessageInfo
func (m *ErrorLocation_FieldPathElement) GetFieldName() string {
if m != nil {
return m.FieldName
}
return ""
}
func (m *ErrorLocation_FieldPathElement) GetIndex() *wrappers.Int64Value {
if m != nil {
return m.Index
}
return nil
}
// Additional error details.
type ErrorDetails struct {
// The error code that should have been returned, but wasn't. This is used
// when the error code is InternalError.ERROR_CODE_NOT_PUBLISHED.
UnpublishedErrorCode string `protobuf:"bytes,1,opt,name=unpublished_error_code,json=unpublishedErrorCode,proto3" json:"unpublished_error_code,omitempty"`
// Describes an ad policy violation.
PolicyViolationDetails *PolicyViolationDetails `protobuf:"bytes,2,opt,name=policy_violation_details,json=policyViolationDetails,proto3" json:"policy_violation_details,omitempty"`
// Describes policy violation findings.
PolicyFindingDetails *PolicyFindingDetails `protobuf:"bytes,3,opt,name=policy_finding_details,json=policyFindingDetails,proto3" json:"policy_finding_details,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ErrorDetails) Reset() { *m = ErrorDetails{} }
func (m *ErrorDetails) String() string { return proto.CompactTextString(m) }
func (*ErrorDetails) ProtoMessage() {}
func (*ErrorDetails) Descriptor() ([]byte, []int) {
return fileDescriptor_37c8858a8ef846f0, []int{4}
}
func (m *ErrorDetails) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ErrorDetails.Unmarshal(m, b)
}
func (m *ErrorDetails) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ErrorDetails.Marshal(b, m, deterministic)
}
func (m *ErrorDetails) XXX_Merge(src proto.Message) {
xxx_messageInfo_ErrorDetails.Merge(m, src)
}
func (m *ErrorDetails) XXX_Size() int {
return xxx_messageInfo_ErrorDetails.Size(m)
}
func (m *ErrorDetails) XXX_DiscardUnknown() {
xxx_messageInfo_ErrorDetails.DiscardUnknown(m)
}
var xxx_messageInfo_ErrorDetails proto.InternalMessageInfo
func (m *ErrorDetails) GetUnpublishedErrorCode() string {
if m != nil {
return m.UnpublishedErrorCode
}
return ""
}
func (m *ErrorDetails) GetPolicyViolationDetails() *PolicyViolationDetails {
if m != nil {
return m.PolicyViolationDetails
}
return nil
}
func (m *ErrorDetails) GetPolicyFindingDetails() *PolicyFindingDetails {
if m != nil {
return m.PolicyFindingDetails
}
return nil
}
// Error returned as part of a mutate response.
// This error indicates single policy violation by some text
// in one of the fields.
type PolicyViolationDetails struct {
// Human readable description of policy violation.
ExternalPolicyDescription string `protobuf:"bytes,2,opt,name=external_policy_description,json=externalPolicyDescription,proto3" json:"external_policy_description,omitempty"`
// Unique identifier for this violation.
// If policy is exemptible, this key may be used to request exemption.
Key *common.PolicyViolationKey `protobuf:"bytes,4,opt,name=key,proto3" json:"key,omitempty"`
// Human readable name of the policy.
ExternalPolicyName string `protobuf:"bytes,5,opt,name=external_policy_name,json=externalPolicyName,proto3" json:"external_policy_name,omitempty"`
// Whether user can file an exemption request for this violation.
IsExemptible bool `protobuf:"varint,6,opt,name=is_exemptible,json=isExemptible,proto3" json:"is_exemptible,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *PolicyViolationDetails) Reset() { *m = PolicyViolationDetails{} }
func (m *PolicyViolationDetails) String() string { return proto.CompactTextString(m) }
func (*PolicyViolationDetails) ProtoMessage() {}
func (*PolicyViolationDetails) Descriptor() ([]byte, []int) {
return fileDescriptor_37c8858a8ef846f0, []int{5}
}
func (m *PolicyViolationDetails) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_PolicyViolationDetails.Unmarshal(m, b)
}
func (m *PolicyViolationDetails) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_PolicyViolationDetails.Marshal(b, m, deterministic)
}
func (m *PolicyViolationDetails) XXX_Merge(src proto.Message) {
xxx_messageInfo_PolicyViolationDetails.Merge(m, src)
}
func (m *PolicyViolationDetails) XXX_Size() int {
return xxx_messageInfo_PolicyViolationDetails.Size(m)
}
func (m *PolicyViolationDetails) XXX_DiscardUnknown() {
xxx_messageInfo_PolicyViolationDetails.DiscardUnknown(m)
}
var xxx_messageInfo_PolicyViolationDetails proto.InternalMessageInfo
func (m *PolicyViolationDetails) GetExternalPolicyDescription() string {
if m != nil {
return m.ExternalPolicyDescription
}
return ""
}
func (m *PolicyViolationDetails) GetKey() *common.PolicyViolationKey {
if m != nil {
return m.Key
}
return nil
}
func (m *PolicyViolationDetails) GetExternalPolicyName() string {
if m != nil {
return m.ExternalPolicyName
}
return ""
}
func (m *PolicyViolationDetails) GetIsExemptible() bool {
if m != nil {
return m.IsExemptible
}
return false
}
// Error returned as part of a mutate response.
// This error indicates one or more policy findings in the fields of a
// resource.
type PolicyFindingDetails struct {
// The list of policy topics for the resource. Contains the PROHIBITED or
// FULLY_LIMITED policy topic entries that prevented the resource from being
// saved (among any other entries the resource may also have).
PolicyTopicEntries []*common.PolicyTopicEntry `protobuf:"bytes,1,rep,name=policy_topic_entries,json=policyTopicEntries,proto3" json:"policy_topic_entries,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *PolicyFindingDetails) Reset() { *m = PolicyFindingDetails{} }
func (m *PolicyFindingDetails) String() string { return proto.CompactTextString(m) }
func (*PolicyFindingDetails) ProtoMessage() {}
func (*PolicyFindingDetails) Descriptor() ([]byte, []int) {
return fileDescriptor_37c8858a8ef846f0, []int{6}
}
func (m *PolicyFindingDetails) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_PolicyFindingDetails.Unmarshal(m, b)
}
func (m *PolicyFindingDetails) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_PolicyFindingDetails.Marshal(b, m, deterministic)
}
func (m *PolicyFindingDetails) XXX_Merge(src proto.Message) {
xxx_messageInfo_PolicyFindingDetails.Merge(m, src)
}
func (m *PolicyFindingDetails) XXX_Size() int {
return xxx_messageInfo_PolicyFindingDetails.Size(m)
}
func (m *PolicyFindingDetails) XXX_DiscardUnknown() {
xxx_messageInfo_PolicyFindingDetails.DiscardUnknown(m)
}
var xxx_messageInfo_PolicyFindingDetails proto.InternalMessageInfo
func (m *PolicyFindingDetails) GetPolicyTopicEntries() []*common.PolicyTopicEntry {
if m != nil {
return m.PolicyTopicEntries
}
return nil
}
func init() {
proto.RegisterType((*GoogleAdsFailure)(nil), "google.ads.googleads.v3.errors.GoogleAdsFailure")
proto.RegisterType((*GoogleAdsError)(nil), "google.ads.googleads.v3.errors.GoogleAdsError")
proto.RegisterType((*ErrorCode)(nil), "google.ads.googleads.v3.errors.ErrorCode")
proto.RegisterType((*ErrorLocation)(nil), "google.ads.googleads.v3.errors.ErrorLocation")
proto.RegisterType((*ErrorLocation_FieldPathElement)(nil), "google.ads.googleads.v3.errors.ErrorLocation.FieldPathElement")
proto.RegisterType((*ErrorDetails)(nil), "google.ads.googleads.v3.errors.ErrorDetails")
proto.RegisterType((*PolicyViolationDetails)(nil), "google.ads.googleads.v3.errors.PolicyViolationDetails")
proto.RegisterType((*PolicyFindingDetails)(nil), "google.ads.googleads.v3.errors.PolicyFindingDetails")
}
func init() {
proto.RegisterFile("google/ads/googleads/v3/errors/errors.proto", fileDescriptor_37c8858a8ef846f0)
}
var fileDescriptor_37c8858a8ef846f0 = []byte{
// 4302 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x5c, 0xcd, 0x73, 0x1c, 0x37,
0x76, 0x9f, 0x91, 0x63, 0x5b, 0x82, 0x24, 0x4a, 0x6a, 0xc9, 0x32, 0x2c, 0xad, 0xbd, 0x5a, 0x7a,
0x37, 0x51, 0x36, 0x6b, 0xd2, 0x26, 0x65, 0xc9, 0xa2, 0x6c, 0xcb, 0xc3, 0x2f, 0x0d, 0xd7, 0x94,
0x4c, 0x37, 0x65, 0x79, 0xd7, 0xab, 0x64, 0x8c, 0xe9, 0xc6, 0x0c, 0x61, 0xf6, 0x97, 0xfb, 0x83,
0x22, 0x59, 0xeb, 0x64, 0x93, 0xaa, 0xa4, 0x2a, 0xa9, 0x4a, 0xaa, 0x92, 0x54, 0xe5, 0x90, 0x43,
0x0e, 0x3e, 0xee, 0x21, 0x87, 0xe4, 0x90, 0x4b, 0xfe, 0x80, 0x54, 0xfe, 0x8f, 0xe4, 0x90, 0x7b,
0xee, 0x29, 0xa0, 0xbf, 0xf0, 0x35, 0x03, 0x74, 0x4e, 0x64, 0xff, 0x80, 0xdf, 0x7b, 0x68, 0x34,
0xf0, 0xf0, 0x80, 0x87, 0x37, 0xe0, 0x0f, 0xa6, 0x71, 0x3c, 0x0d, 0xf0, 0x32, 0xf2, 0xb3, 0xe5,
0xf2, 0x5f, 0xfa, 0xdf, 0xd1, 0xea, 0x32, 0x4e, 0xd3, 0x38, 0xcd, 0xaa, 0x3f, 0x4b, 0x49, 0x1a,
0xe7, 0xb1, 0xf3, 0x56, 0x59, 0x63, 0x09, 0xf9, 0xd9, 0x52, 0x53, 0x79, 0xe9, 0x68, 0x75, 0xa9,
0xac, 0x75, 0x63, 0xa6, 0x30, 0x2f, 0x0e, 0xc3, 0x38, 0x5a, 0x4e, 0xe2, 0x80, 0x78, 0x27, 0xa5,
0xb0, 0x1b, 0x3f, 0x35, 0x54, 0x3e, 0x42, 0x41, 0x81, 0xab, 0xba, 0x1f, 0x1a, 0x5a, 0x89, 0x3c,
0x0f, 0x67, 0xd9, 0x88, 0x44, 0x47, 0x24, 0x47, 0x39, 0x89, 0xa3, 0x11, 0x2b, 0xa8, 0xd8, 0xeb,
0x66, 0x76, 0x5c, 0x44, 0xf9, 0x68, 0x5c, 0xf8, 0x53, 0x9c, 0x8f, 0x92, 0x34, 0x4e, 0xe2, 0x0c,
0x05, 0x82, 0x8c, 0x0f, 0x4c, 0x32, 0xfc, 0x91, 0x57, 0x64, 0x79, 0x1c, 0x92, 0x53, 0x9c, 0x0a,
0xcc, 0x77, 0xcc, 0x4c, 0xbe, 0xfa, 0x5d, 0x73, 0xf5, 0x69, 0x1a, 0x17, 0xc9, 0x48, 0xe2, 0x7d,
0x62, 0xcb, 0x1b, 0x13, 0x7f, 0x14, 0xc6, 0x3e, 0x99, 0x10, 0xa9, 0xa1, 0x1f, 0xd9, 0x4a, 0xf0,
0x52, 0x92, 0xe3, 0x54, 0xee, 0xe5, 0x55, 0x5b, 0x7a, 0xc7, 0x6e, 0x2d, 0x49, 0x13, 0x8c, 0xc5,
0xf7, 0xbd, 0x67, 0x66, 0x26, 0x28, 0x45, 0x21, 0xce, 0xa5, 0xd7, 0x7c, 0xdf, 0x4c, 0xcc, 0x0e,
0x50, 0x4a, 0xa2, 0xa9, 0x40, 0x5b, 0x32, 0xd2, 0x8e, 0x85, 0xfa, 0xef, 0x9a, 0xea, 0x67, 0x19,
0xce, 0x05, 0xc6, 0x7d, 0x13, 0xa3, 0xc8, 0x0f, 0x70, 0x94, 0x13, 0x4f, 0x1d, 0xe1, 0x1f, 0x58,
0x50, 0xe3, 0x94, 0x9c, 0xaa, 0xcc, 0x15, 0x03, 0x73, 0x4c, 0x7c, 0x5f, 0xee, 0x8a, 0x07, 0x96,
0x9c, 0x2c, 0x4f, 0x51, 0x8e, 0xa7, 0x27, 0x9d, 0x9a, 0x3a, 0x26, 0x41, 0xc0, 0xc8, 0x38, 0x97,
0xc6, 0xca, 0x9a, 0x81, 0xe9, 0xa1, 0x30, 0x41, 0x64, 0x1a, 0xd5, 0xf3, 0xb8, 0xcb, 0xd8, 0x6e,
0xb8, 0xfa, 0xb1, 0x7d, 0xdf, 0x96, 0xee, 0xa7, 0x68, 0x92, 0x77, 0x9a, 0x16, 0x0d, 0x95, 0x27,
0x7d, 0x6c, 0x4d, 0x3a, 0x4e, 0x70, 0x4a, 0x42, 0x1c, 0xe5, 0x9d, 0x3a, 0xb9, 0xe1, 0x2b, 0xd3,
0xca, 0x5a, 0x33, 0x9d, 0x23, 0xd8, 0x1f, 0xc9, 0x83, 0xd8, 0xa8, 0xf9, 0x00, 0x45, 0x53, 0x3c,
0xca, 0x72, 0x94, 0x17, 0x59, 0xb7, 0xcf, 0x1b, 0x07, 0x01, 0xf6, 0xd8, 0x00, 0xce, 0xc8, 0x29,
0xee, 0x34, 0x8a, 0xbd, 0x38, 0xca, 0xf1, 0xb1, 0xd8, 0xd2, 0x0f, 0xcd, 0x9c, 0x23, 0x9c, 0x66,
0x54, 0x1f, 0xf2, 0x94, 0x79, 0xf3, 0xa8, 0x03, 0xdb, 0xff, 0xa6, 0xc8, 0x72, 0xf6, 0x8d, 0x8a,
0x24, 0x88, 0x25, 0xbb, 0xdd, 0xa1, 0x19, 0x1a, 0xf6, 0x3d, 0x23, 0xbb, 0x88, 0xf2, 0xf4, 0x64,
0xe4, 0xc5, 0xbe, 0xd8, 0x63, 0x77, 0x4c, 0x44, 0xed, 0x3c, 0x30, 0x7e, 0xdd, 0x22, 0x4d, 0x71,
0xe4, 0x69, 0xf4, 0x19, 0xbf, 0x2e, 0x5b, 0x3c, 0x47, 0x24, 0xca, 0x71, 0x8a, 0x33, 0xf1, 0x4b,
0x3d, 0xb4, 0xe2, 0xe2, 0x74, 0xe4, 0x05, 0x84, 0xf6, 0x72, 0x40, 0xa2, 0xc3, 0x6e, 0x73, 0xb0,
0x16, 0xd0, 0xed, 0x5d, 0x2b, 0x92, 0x32, 0x87, 0x3e, 0xb1, 0x65, 0x86, 0x28, 0x42, 0x53, 0x9c,
0x76, 0x6f, 0xb0, 0x8f, 0x72, 0x34, 0x46, 0x99, 0xd8, 0xc5, 0xcb, 0x66, 0x12, 0xee, 0xb4, 0x12,
0x32, 0x42, 0xca, 0xe6, 0x6b, 0xa7, 0xc6, 0x91, 0x2c, 0x27, 0x91, 0x97, 0x77, 0x6a, 0x1c, 0x8e,
0x8a, 0xb0, 0x93, 0x21, 0xc2, 0xc7, 0x39, 0x8e, 0xd8, 0xb4, 0x60, 0xfd, 0x4f, 0x72, 0x1c, 0x76,
0x9a, 0x57, 0x2d, 0x3f, 0xc3, 0x79, 0x2e, 0x2f, 0x71, 0x1b, 0x06, 0x36, 0xd3, 0x89, 0xf2, 0x3c,
0x25, 0xe3, 0x82, 0x76, 0x12, 0x9e, 0x60, 0x3a, 0xf0, 0xbb, 0x7d, 0x10, 0x65, 0xe0, 0xdc, 0xb1,
0x21, 0x28, 0x6f, 0xfa, 0xc0, 0x9a, 0x95, 0xa3, 0x54, 0x5e, 0x18, 0x1f, 0x5a, 0x93, 0x8f, 0x50,
0x40, 0x7c, 0xd5, 0x81, 0xb8, 0x67, 0x23, 0x20, 0x44, 0x49, 0x22, 0x77, 0xb1, 0xc9, 0x41, 0x9a,
0x10, 0x1c, 0xf8, 0x9d, 0xc6, 0x6b, 0xc9, 0x08, 0x51, 0xd6, 0x6d, 0x32, 0x4d, 0x8a, 0x48, 0xb5,
0xef, 0x0f, 0x6c, 0x49, 0x09, 0x4a, 0x33, 0xf9, 0xd5, 0x76, 0x0c, 0xe4, 0x29, 0x8e, 0xeb, 0x6f,
0xe1, 0xc5, 0x51, 0x96, 0xa3, 0x28, 0x1f, 0x65, 0xc5, 0x74, 0x8a, 0x33, 0xa5, 0x1d, 0xef, 0x19,
0x44, 0x1d, 0x60, 0xe4, 0x77, 0xdc, 0x70, 0x10, 0xbf, 0xd3, 0x77, 0x20, 0x21, 0xea, 0x68, 0x00,
0x98, 0x11, 0x8f, 0xa4, 0x0d, 0xd4, 0x8a, 0x91, 0x74, 0x14, 0x13, 0x69, 0x02, 0x99, 0x0c, 0xe9,
0x21, 0x3e, 0x79, 0x11, 0xa7, 0xfe, 0x28, 0x09, 0x10, 0x5d, 0x66, 0x35, 0xfb, 0x8b, 0x4e, 0x12,
0xb4, 0xae, 0xd8, 0xbd, 0x2e, 0x12, 0xba, 0x18, 0x20, 0x81, 0x48, 0x7c, 0x8c, 0x3a, 0xcd, 0x4b,
0x81, 0x5d, 0x3f, 0xf0, 0x02, 0x86, 0x5d, 0x04, 0x44, 0x78, 0x8a, 0x72, 0x72, 0x84, 0xb5, 0x92,
0x4c, 0x03, 0x24, 0x40, 0x63, 0xdc, 0x6d, 0xb3, 0x1c, 0xa0, 0x68, 0x5a, 0xd0, 0x51, 0xa5, 0xb8,
0x09, 0x26, 0x47, 0x3b, 0x20, 0x59, 0x3e, 0x8a, 0x13, 0x9c, 0x76, 0x37, 0x44, 0x33, 0x17, 0x5b,
0x23, 0x11, 0xfb, 0x04, 0x8d, 0xc6, 0x45, 0xe4, 0x07, 0xdd, 0xd6, 0xcf, 0x92, 0x38, 0x21, 0x12,
0xcd, 0x4e, 0x9f, 0xc6, 0xd9, 0x33, 0xea, 0x2b, 0x82, 0x9c, 0x24, 0x81, 0xbc, 0xaf, 0x7f, 0xcf,
0x48, 0xcb, 0xbb, 0x7a, 0x06, 0x15, 0xe5, 0x9b, 0x78, 0xdc, 0x69, 0xb6, 0x45, 0xf8, 0xc5, 0x28,
0xc5, 0x59, 0x5c, 0xa4, 0x1e, 0x1e, 0x79, 0x29, 0x56, 0x3f, 0xa2, 0x69, 0x05, 0x8c, 0xe2, 0x7c,
0x84, 0xc3, 0x24, 0x3f, 0xe9, 0xe4, 0x5c, 0x52, 0xd6, 0x8b, 0x03, 0x92, 0x63, 0x3a, 0x7c, 0xa4,
0x35, 0xd7, 0xb4, 0x48, 0x47, 0x45, 0x10, 0x74, 0x3a, 0x4d, 0x6a, 0x47, 0x67, 0x75, 0x2a, 0xe5,
0xe3, 0x88, 0x48, 0x4a, 0x57, 0xad, 0x64, 0xc4, 0x69, 0xa7, 0xb7, 0x4c, 0x50, 0x9a, 0x13, 0x14,
0x8c, 0x26, 0x88, 0x04, 0x45, 0x8a, 0x3b, 0x2d, 0x67, 0x09, 0x3a, 0xa1, 0x1b, 0x94, 0x6c, 0x54,
0x9f, 0x85, 0x75, 0x99, 0x94, 0xe5, 0xb1, 0xde, 0x68, 0x42, 0x22, 0xe5, 0xa8, 0x60, 0xdb, 0x8e,
0xca, 0xf9, 0x16, 0xfa, 0x43, 0x9b, 0x07, 0x96, 0x72, 0x48, 0x1c, 0xa8, 0x83, 0xca, 0x64, 0xc0,
0xbe, 0x2d, 0x70, 0x7a, 0xd2, 0x91, 0x11, 0xe7, 0xa8, 0x13, 0x43, 0x75, 0xa3, 0x4d, 0x73, 0x2c,
0xc5, 0xc8, 0x3b, 0x50, 0x97, 0x95, 0xfb, 0x46, 0x9a, 0x17, 0x87, 0x21, 0x8e, 0x34, 0xae, 0xda,
0x5d, 0x23, 0x75, 0x4a, 0x29, 0x8a, 0x51, 0x5e, 0x31, 0xf2, 0xbe, 0x2d, 0xe4, 0x3d, 0xdb, 0xc0,
0xc8, 0xa9, 0xcc, 0xc0, 0xec, 0x49, 0x32, 0xb4, 0x15, 0x51, 0x8e, 0xd8, 0x80, 0x84, 0x24, 0x1f,
0xe1, 0x63, 0x0f, 0x63, 0x5f, 0x92, 0x64, 0x7a, 0x01, 0xdd, 0x0e, 0xc0, 0x34, 0xe2, 0xaa, 0xf3,
0x0f, 0xfd, 0x3e, 0xf9, 0x7d, 0x3b, 0xb2, 0x7c, 0x78, 0x62, 0xa4, 0x91, 0x53, 0x5c, 0xbf, 0x67,
0x87, 0xe5, 0x36, 0xcb, 0xd9, 0x69, 0xe6, 0x24, 0x4e, 0x43, 0xf4, 0xff, 0x62, 0x06, 0x38, 0x9a,
0xe6, 0x07, 0x9d, 0x0c, 0x75, 0x4e, 0x42, 0x3c, 0x3a, 0x8d, 0xa3, 0x6e, 0xa7, 0x0e, 0x45, 0x1a,
0x8c, 0x54, 0xbf, 0xdf, 0xc8, 0xca, 0xd8, 0xb2, 0x2e, 0x8d, 0xc0, 0x2d, 0x03, 0xeb, 0x24, 0x2e,
0xf2, 0x62, 0x8c, 0x47, 0x47, 0xc4, 0xc7, 0xf1, 0x88, 0x8e, 0x7d, 0x76, 0x5e, 0x29, 0x7f, 0xca,
0x2a, 0xe6, 0xb1, 0xcc, 0x9e, 0xc6, 0xc5, 0x64, 0xf9, 0x45, 0x8a, 0x92, 0x04, 0xd7, 0x31, 0x91,
0x1b, 0x3f, 0xa8, 0xd5, 0x24, 0x64, 0x19, 0x45, 0x51, 0x5c, 0xc6, 0x1f, 0xaa, 0xd2, 0xc5, 0xaf,
0xc0, 0xe5, 0x47, 0xac, 0x7c, 0xe0, 0x67, 0xdb, 0xa5, 0x5d, 0x76, 0xb6, 0xc1, 0x2b, 0x65, 0x13,
0x60, 0xff, 0xd6, 0x4b, 0xb7, 0xcf, 0xaf, 0x2c, 0x2d, 0xcd, 0x0f, 0xab, 0x2c, 0x35, 0x12, 0xb6,
0xe8, 0xb3, 0x5b, 0xb1, 0x17, 0xff, 0xe3, 0x0c, 0x58, 0x10, 0x8b, 0x9c, 0x21, 0x00, 0xac, 0x90,
0xcd, 0x61, 0xd8, 0xbf, 0xd5, 0xbf, 0x7d, 0x7e, 0xe5, 0xf7, 0x4d, 0xe2, 0x19, 0x75, 0x23, 0xf6,
0xb1, 0x7b, 0x0e, 0xd7, 0xff, 0x3a, 0x10, 0xbc, 0x1a, 0xe2, 0x2c, 0x43, 0x53, 0x0c, 0xcf, 0xdc,
0xea, 0xdf, 0x3e, 0xe7, 0xd6, 0x8f, 0xce, 0x43, 0xf0, 0x6a, 0x9e, 0x92, 0xe9, 0x14, 0xa7, 0xf0,
0x25, 0xa6, 0xe0, 0x27, 0x33, 0x15, 0x94, 0x91, 0x9c, 0xa5, 0x67, 0x28, 0x28, 0xb0, 0x5b, 0xb3,
0x9c, 0x1d, 0x70, 0x36, 0x88, 0xcb, 0x43, 0x6c, 0xf8, 0x3b, 0x4c, 0xc2, 0x3b, 0x56, 0x4d, 0xdc,
0xad, 0x48, 0x6e, 0x43, 0x77, 0xb6, 0xc1, 0xab, 0x3e, 0xce, 0x11, 0x09, 0x32, 0xf8, 0x32, 0x93,
0xf4, 0x33, 0x2b, 0x49, 0x9b, 0x25, 0xc7, 0xad, 0xc9, 0x8b, 0xff, 0x7e, 0x00, 0xce, 0x35, 0xdd,
0xe0, 0xf8, 0xe0, 0xa2, 0x60, 0xd2, 0x58, 0x47, 0x2e, 0xac, 0x7c, 0x64, 0x92, 0xed, 0x96, 0x24,
0x26, 0x68, 0x2b, 0x2a, 0x42, 0x01, 0x18, 0xf6, 0xdc, 0x0b, 0x29, 0xf7, 0xec, 0xfc, 0x79, 0x1f,
0x5c, 0xd7, 0x9f, 0x94, 0xb3, 0x1e, 0x5f, 0x58, 0x79, 0x6c, 0xd2, 0xb7, 0x5e, 0xb2, 0xf7, 0x2b,
0x72, 0xab, 0x57, 0x57, 0x30, 0xec, 0xb9, 0xd7, 0xc6, 0x1a, 0xdc, 0x21, 0xe0, 0x92, 0x34, 0xed,
0xd8, 0x77, 0x5d, 0x58, 0x79, 0x68, 0xd2, 0xff, 0x45, 0x1a, 0x6c, 0x53, 0x56, 0xab, 0x58, 0x40,
0x86, 0x3d, 0xf7, 0x62, 0xc1, 0x03, 0xce, 0x77, 0xe0, 0x9a, 0xce, 0x81, 0x67, 0xa3, 0x60, 0x61,
0x65, 0xc7, 0xa4, 0x6f, 0x97, 0x64, 0xf9, 0x67, 0x35, 0xb5, 0x55, 0xaa, 0xc2, 0xc3, 0x9e, 0xeb,
0x04, 0x0a, 0xea, 0x3c, 0x07, 0xe7, 0xb9, 0xa5, 0x9e, 0x8d, 0x98, 0x85, 0x95, 0xfb, 0x26, 0xad,
0x9f, 0x53, 0x4a, 0xab, 0xad, 0x7d, 0x1c, 0xf6, 0x5c, 0xf0, 0x6d, 0xf3, 0xe4, 0x7c, 0x0d, 0x2e,
0xf0, 0x9e, 0x34, 0x7c, 0x95, 0x89, 0x7f, 0x60, 0x12, 0xff, 0x98, 0x71, 0x5a, 0xf9, 0xdc, 0xf3,
0xb0, 0xe7, 0x9e, 0x0f, 0xdb, 0x47, 0x27, 0x04, 0x97, 0xe5, 0x23, 0x0e, 0x78, 0x96, 0x69, 0x19,
0x98, 0xb4, 0xb0, 0x8f, 0xf0, 0x18, 0x65, 0x87, 0xad, 0x22, 0x11, 0x1a, 0xf6, 0xdc, 0x85, 0x89,
0x80, 0x38, 0xbf, 0x06, 0x57, 0x35, 0x71, 0x23, 0x78, 0xce, 0xee, 0x63, 0x0d, 0x78, 0x6a, 0xab,
0x55, 0x85, 0xe9, 0xc7, 0x42, 0x0a, 0xea, 0x1c, 0x80, 0x05, 0xf1, 0x1c, 0x01, 0x02, 0xbb, 0x51,
0xb9, 0x53, 0xb1, 0x5a, 0x9d, 0x02, 0x42, 0x47, 0x25, 0xe1, 0x81, 0x72, 0x58, 0x34, 0xfe, 0x1c,
0x3c, 0x6f, 0x3b, 0x2c, 0xe2, 0x1c, 0xf1, 0xc3, 0xa2, 0x7e, 0x2c, 0x87, 0x45, 0xfd, 0xe4, 0xec,
0x81, 0xb3, 0xf5, 0x36, 0x0e, 0x5e, 0x60, 0xa2, 0x57, 0x8d, 0x5d, 0xc7, 0xcd, 0xa8, 0x41, 0x33,
0x97, 0x5e, 0x45, 0xd5, 0x2c, 0xc2, 0x60, 0x41, 0x3c, 0xeb, 0x80, 0x17, 0xed, 0xec, 0xd3, 0xc0,
0x7f, 0x44, 0x49, 0xbc, 0xf0, 0x16, 0xa0, 0xf6, 0x09, 0x71, 0xcf, 0xce, 0x9f, 0xf6, 0xc1, 0x6b,
0xda, 0x90, 0x1a, 0x5c, 0x60, 0xea, 0x3e, 0x35, 0xa9, 0xdb, 0xa8, 0xc8, 0xeb, 0x8c, 0xdb, 0x6a,
0xd5, 0xe0, 0xc3, 0x9e, 0x7b, 0xd5, 0x53, 0x61, 0x3a, 0x08, 0xc4, 0x43, 0x19, 0x78, 0xc9, 0x6e,
0x10, 0xd4, 0x3a, 0x54, 0xad, 0xcd, 0x20, 0xf0, 0x78, 0xc0, 0xf9, 0x4d, 0x1f, 0x5c, 0xd3, 0x05,
0x58, 0xe1, 0x15, 0xbb, 0x97, 0x1d, 0x08, 0x5c, 0x71, 0xbc, 0x4b, 0x38, 0x7d, 0x59, 0xa4, 0xc2,
0xce, 0x5f, 0xf5, 0x01, 0x9c, 0x15, 0x63, 0x87, 0x0e, 0x6b, 0xc6, 0x67, 0x96, 0x9f, 0x78, 0xa3,
0x66, 0x2b, 0xdf, 0x5a, 0x2c, 0x19, 0xf6, 0xdc, 0xd7, 0x90, 0xae, 0xc0, 0x39, 0x01, 0x57, 0x35,
0x57, 0x1a, 0xe0, 0x55, 0xd6, 0x8c, 0x47, 0xe6, 0x66, 0x6c, 0x34, 0x4c, 0xbe, 0x09, 0x12, 0x3a,
0xec, 0xb9, 0x57, 0x90, 0x0c, 0x3a, 0x11, 0xb8, 0xa2, 0x5c, 0x72, 0x80, 0xaf, 0xd9, 0xd9, 0xb9,
0xea, 0x2d, 0xc5, 0x19, 0xc4, 0x43, 0xd4, 0xce, 0x21, 0x01, 0xa1, 0x66, 0x55, 0x8e, 0xf9, 0x43,
0x68, 0xab, 0x6e, 0xbf, 0xa4, 0xf1, 0xea, 0x78, 0xa8, 0x54, 0xc7, 0x23, 0xce, 0x53, 0x70, 0xae,
0xb9, 0x2b, 0x00, 0xdf, 0x60, 0x7a, 0xde, 0x37, 0xeb, 0x39, 0xe6, 0x35, 0x1c, 0xd7, 0xb2, 0xcf,
0xa2, 0xea, 0x7f, 0x6a, 0xc4, 0xb8, 0x1b, 0x05, 0xf0, 0xd0, 0xce, 0x88, 0x0d, 0x28, 0x85, 0x93,
0xdc, 0x3c, 0x52, 0x23, 0x86, 0x9a, 0x27, 0xea, 0x11, 0x09, 0x17, 0x01, 0xe0, 0x0d, 0x3b, 0x8b,
0x53, 0x39, 0x22, 0x8a, 0x67, 0xd2, 0x58, 0x9c, 0x31, 0xf7, 0xec, 0xfc, 0x75, 0x1f, 0xc0, 0x59,
0x81, 0x78, 0xf8, 0x26, 0xd3, 0xf8, 0xb9, 0xed, 0xc4, 0xd7, 0xcc, 0x00, 0x7d, 0xd1, 0xb0, 0xe7,
0x5e, 0xf7, 0xb4, 0x25, 0xa5, 0x05, 0xd4, 0x45, 0x9d, 0xe1, 0x0f, 0x2d, 0x2d, 0x60, 0x43, 0xde,
0x27, 0xa7, 0xdc, 0x1a, 0xaf, 0xc1, 0x99, 0x05, 0x54, 0x61, 0xa7, 0x00, 0x8e, 0x1a, 0xc3, 0x85,
0x21, 0xd3, 0xbf, 0x65, 0xd6, 0xcf, 0x98, 0xd4, 0xa9, 0xe5, 0x95, 0x8b, 0xe0, 0xb0, 0xe7, 0x5e,
0xf6, 0x24, 0xcc, 0x09, 0xc0, 0x25, 0xf9, 0x03, 0xdc, 0xb2, 0x9b, 0x12, 0xba, 0x8e, 0x97, 0x3b,
0x7c, 0xc1, 0x13, 0x3b, 0x9a, 0x9a, 0x79, 0x21, 0x04, 0x0b, 0xbf, 0xb2, 0x34, 0xf3, 0x15, 0x8b,
0xd3, 0xc5, 0x23, 0xcc, 0xcc, 0xf3, 0x80, 0xf3, 0x0b, 0x00, 0xda, 0x30, 0x28, 0xfc, 0x11, 0xd3,
0x72, 0xcf, 0xa4, 0x65, 0x53, 0x70, 0xd0, 0x36, 0x39, 0xf7, 0xec, 0x9c, 0xcf, 0x3b, 0x67, 0x72,
0xbc, 0x14, 0x2e, 0xda, 0x75, 0x19, 0x95, 0xe8, 0x52, 0x9a, 0xa8, 0xa4, 0x85, 0x68, 0x97, 0xf9,
0x02, 0x42, 0xbb, 0x4c, 0x8c, 0xb3, 0xc2, 0xb7, 0xed, 0xba, 0x6c, 0xb3, 0x62, 0x71, 0xba, 0x78,
0x84, 0x76, 0x99, 0xcf, 0x03, 0xce, 0xf7, 0x7d, 0xf0, 0xd6, 0xfc, 0x70, 0x27, 0xfc, 0x31, 0x53,
0xfd, 0x2b, 0xa3, 0x13, 0x8a, 0xb1, 0x3f, 0xa8, 0x85, 0xb8, 0xb5, 0x0c, 0xce, 0x23, 0x9d, 0x5d,
0x3e, 0xec, 0xb9, 0x37, 0x27, 0xb3, 0x8b, 0x69, 0x77, 0x88, 0x61, 0x3c, 0xf8, 0x13, 0xbb, 0xee,
0xd8, 0xae, 0x58, 0x5c, 0x2b, 0x78, 0x84, 0x76, 0xc7, 0x84, 0x07, 0xd8, 0xb6, 0x4d, 0x1f, 0xfc,
0x83, 0xbf, 0x6b, 0xb7, 0x6d, 0xab, 0x15, 0xec, 0x95, 0x64, 0x55, 0x33, 0x5f, 0x40, 0xb7, 0x6d,
0x13, 0x0d, 0x4e, 0xfd, 0xca, 0x3a, 0x90, 0x07, 0x7f, 0xcf, 0xce, 0xaf, 0xdc, 0xe1, 0x56, 0xc5,
0x9d, 0xd6, 0xaf, 0x24, 0x7e, 0xb3, 0x84, 0x70, 0xb1, 0x3e, 0x78, 0xdb, 0x6e, 0x09, 0xd9, 0xa1,
0x14, 0x4e, 0x6e, 0xf3, 0x48, 0x97, 0x10, 0xd2, 0x3c, 0x51, 0x87, 0x42, 0x13, 0xf6, 0x81, 0x91,
0x9d, 0x43, 0xb1, 0x5b, 0x51, 0x45, 0x53, 0xa6, 0xa0, 0xd4, 0xa1, 0x08, 0x64, 0x90, 0xda, 0x50,
0x35, 0x86, 0x03, 0x7f, 0x6a, 0x67, 0x43, 0x1f, 0x53, 0xe6, 0x3a, 0x23, 0x72, 0x9b, 0x34, 0x09,
0xa4, 0x36, 0x34, 0x94, 0xb0, 0x56, 0x2d, 0x1f, 0xca, 0x81, 0x79, 0x07, 0xb5, 0x5f, 0x30, 0xa2,
0xa4, 0x96, 0x03, 0x1b, 0xb5, 0x1c, 0x46, 0x0d, 0x91, 0x1c, 0x78, 0x82, 0xcf, 0xec, 0x0c, 0x11,
0x93, 0xbf, 0x4d, 0x94, 0x37, 0x6d, 0x20, 0x6a, 0x88, 0x42, 0x01, 0x71, 0x12, 0x70, 0x59, 0x8e,
0x3b, 0xc1, 0x9f, 0x31, 0x75, 0x1b, 0xe6, 0xad, 0x6f, 0xcd, 0xe3, 0xb7, 0xbf, 0x02, 0x36, 0xec,
0xb9, 0x97, 0x42, 0x11, 0x72, 0xfe, 0xa1, 0x0f, 0x6e, 0xce, 0x89, 0x24, 0xc1, 0x77, 0x98, 0xf6,
0x2f, 0x4c, 0xda, 0x9f, 0xe0, 0x17, 0x6e, 0x25, 0x61, 0xa3, 0x12, 0xd0, 0x36, 0x63, 0x56, 0xe1,
0xb0, 0xe7, 0xc2, 0x68, 0x46, 0x99, 0x43, 0xc0, 0x25, 0x29, 0x3e, 0x05, 0x97, 0xec, 0xac, 0xd0,
0x93, 0x38, 0xdf, 0xa2, 0x2c, 0xae, 0x01, 0x3c, 0x42, 0xad, 0x50, 0xc4, 0x03, 0x74, 0x1d, 0x6b,
0x03, 0x53, 0x70, 0xd9, 0x6e, 0x1d, 0x7b, 0x52, 0x04, 0xdc, 0xae, 0xb8, 0x79, 0xa2, 0xeb, 0x58,
0x54, 0x3f, 0x50, 0x4b, 0x2a, 0x46, 0x9f, 0xe0, 0xbb, 0x76, 0xef, 0xf0, 0x59, 0xc5, 0x6a, 0x35,
0x08, 0x08, 0x7d, 0x87, 0x98, 0x07, 0xa8, 0xbd, 0xe1, 0x17, 0xcb, 0xf7, 0xec, 0xec, 0x8d, 0xb4,
0x50, 0x0a, 0x8b, 0x24, 0x48, 0xdb, 0x05, 0x92, 0x6e, 0xe8, 0x74, 0xb1, 0x10, 0xb8, 0x66, 0xe7,
0xbb, 0xb9, 0x02, 0x97, 0x3f, 0xd3, 0x53, 0x70, 0xea, 0xbb, 0xa5, 0x2a, 0xec, 0x7c, 0x0b, 0xae,
0x28, 0x21, 0x15, 0xb8, 0x6a, 0x37, 0x37, 0x5c, 0x46, 0x14, 0xcd, 0x9d, 0x84, 0xd1, 0xb9, 0x91,
0x8a, 0x10, 0x75, 0xd4, 0x85, 0x60, 0x06, 0xbc, 0x63, 0xe7, 0xa8, 0xef, 0x97, 0xa4, 0x56, 0x17,
0x0f, 0x50, 0x47, 0x3d, 0xe3, 0x9e, 0xa9, 0x2d, 0xd7, 0xc4, 0x14, 0xe0, 0xfb, 0x76, 0xb6, 0x7c,
0x9f, 0x51, 0xb7, 0x19, 0x93, 0x53, 0x28, 0xa3, 0xd4, 0x96, 0x67, 0x32, 0xc8, 0xa9, 0xe6, 0x83,
0x12, 0xf0, 0x6e, 0x17, 0xd5, 0xbb, 0x8c, 0x29, 0xab, 0xe6, 0xd0, 0x56, 0x35, 0x07, 0x3a, 0xff,
0xd4, 0x07, 0x6f, 0xce, 0x0d, 0xee, 0xc2, 0x7b, 0xac, 0x15, 0xbf, 0xb4, 0x9b, 0x29, 0x24, 0x8e,
0x06, 0x4c, 0xc6, 0x26, 0x13, 0x21, 0x4f, 0x1b, 0x5d, 0xf1, 0xb0, 0xe7, 0xde, 0x88, 0x67, 0x96,
0x3a, 0xff, 0xd8, 0x07, 0x3f, 0x98, 0x17, 0x57, 0x83, 0x1f, 0xb0, 0xf6, 0x7d, 0x69, 0x1e, 0x7b,
0xa5, 0x0c, 0x7d, 0xf3, 0x66, 0x96, 0x0e, 0x7b, 0xee, 0x1b, 0xe9, 0xac, 0x42, 0xe7, 0x5f, 0xfb,
0xe0, 0x6d, 0x8b, 0x88, 0x1d, 0xbc, 0xcf, 0xda, 0xe8, 0xd9, 0xb6, 0x91, 0xed, 0x66, 0x76, 0xa9,
0xa0, 0xad, 0x4a, 0x8e, 0xda, 0xd2, 0x19, 0x75, 0x86, 0x3d, 0xf7, 0x87, 0xe9, 0xfc, 0x2a, 0xce,
0x6f, 0xfb, 0xe0, 0x96, 0x29, 0x50, 0x04, 0x0b, 0xd6, 0xe4, 0x91, 0xa9, 0xc9, 0xbf, 0x2c, 0xe5,
0x3c, 0xa3, 0x62, 0x5c, 0x4e, 0x4a, 0xdb, 0xe0, 0xb9, 0x35, 0x86, 0x3d, 0xf7, 0xcd, 0x93, 0x79,
0x15, 0x9c, 0xbf, 0xef, 0x83, 0x9b, 0x73, 0xd2, 0x3c, 0xe0, 0x03, 0xd6, 0xce, 0x7d, 0xcb, 0x33,
0x94, 0x75, 0xe2, 0x3f, 0xae, 0xf8, 0xca, 0x61, 0x8a, 0x5c, 0x36, 0xec, 0xb9, 0xaf, 0x23, 0x7d,
0x11, 0x35, 0x49, 0xc2, 0xf5, 0x6b, 0xf8, 0xa1, 0x9d, 0x49, 0xda, 0x28, 0x49, 0xfc, 0xc6, 0xb5,
0x05, 0xa8, 0x49, 0xf2, 0xb8, 0x67, 0xba, 0x98, 0xf0, 0x11, 0x8c, 0x8f, 0xec, 0x16, 0x13, 0x29,
0x7c, 0x21, 0xc4, 0x2e, 0xc0, 0xa4, 0x0d, 0x5c, 0x84, 0xe0, 0xb2, 0x1c, 0xb2, 0x85, 0x1f, 0xdb,
0xf9, 0x54, 0xfb, 0x8c, 0xb7, 0xcf, 0x1f, 0xb3, 0x88, 0x10, 0xf5, 0xa9, 0x32, 0x01, 0x61, 0x7b,
0x0c, 0x7d, 0x7c, 0x19, 0x3e, 0xb4, 0xdb, 0x63, 0x94, 0x2a, 0x34, 0x7b, 0x71, 0x5d, 0x01, 0xdd,
0x63, 0x64, 0x1a, 0xdc, 0xf9, 0x9b, 0x3e, 0x78, 0x63, 0xe6, 0x85, 0x7f, 0xf8, 0x49, 0xb7, 0x13,
0x19, 0x4d, 0x47, 0xe8, 0x8b, 0xf8, 0x13, 0x19, 0xb1, 0xc4, 0xf9, 0xcb, 0x3e, 0x78, 0x7d, 0xc6,
0xbd, 0x7c, 0x38, 0xb0, 0x3b, 0x21, 0xdd, 0x68, 0xe8, 0x03, 0x69, 0xe3, 0xa7, 0x2d, 0x19, 0xf6,
0xdc, 0xd7, 0x3c, 0x5d, 0x81, 0xf3, 0x2f, 0x7d, 0xb0, 0x68, 0xbe, 0xe5, 0x0f, 0x33, 0x3b, 0x7b,
0xc6, 0x29, 0x6f, 0x04, 0xc9, 0xee, 0xbf, 0xa1, 0x0e, 0xb5, 0x67, 0xde, 0xfc, 0x2a, 0x72, 0x07,
0x0a, 0x2d, 0x8d, 0xbb, 0x76, 0xe0, 0xec, 0xf6, 0x89, 0xad, 0xe2, 0x3a, 0x90, 0x6f, 0xcb, 0xd7,
0xe0, 0x02, 0x7f, 0x7b, 0x15, 0xae, 0xdb, 0x05, 0xcc, 0x86, 0x8c, 0xd3, 0x6a, 0xe5, 0x9e, 0x87,
0x3d, 0xf7, 0xfc, 0x41, 0xfb, 0xc8, 0x0e, 0x49, 0x84, 0x9b, 0xf2, 0x70, 0xc3, 0xf2, 0x90, 0xa4,
0x62, 0x09, 0x07, 0x32, 0x2d, 0xc2, 0x0e, 0x49, 0x78, 0xc0, 0xf9, 0x0e, 0x5c, 0xd3, 0xdd, 0x82,
0x82, 0x9b, 0x76, 0xc1, 0xb2, 0x3d, 0xc6, 0xdd, 0x2e, 0xa9, 0xad, 0x52, 0x15, 0x1e, 0xf6, 0x5c,
0x27, 0x51, 0x50, 0xba, 0x1d, 0x68, 0x2f, 0xd0, 0xc3, 0x6d, 0xbb, 0xed, 0x00, 0x55, 0xd1, 0xea,
0x6a, 0x9e, 0xe8, 0x76, 0x00, 0xd7, 0x0f, 0x74, 0x13, 0xab, 0xde, 0x70, 0x85, 0x8f, 0xec, 0x36,
0xb1, 0x9f, 0x96, 0xcc, 0xbd, 0x00, 0x71, 0xd3, 0x4c, 0x06, 0xe9, 0x26, 0xf6, 0x50, 0xc2, 0xd8,
0x1e, 0x6f, 0xce, 0xdd, 0x5c, 0x38, 0xb4, 0xdb, 0xe3, 0x71, 0xba, 0xd4, 0x88, 0xd0, 0xac, 0x42,
0xba, 0xc7, 0x3b, 0x9c, 0x51, 0xc6, 0xdc, 0x18, 0x8b, 0xab, 0xb3, 0x70, 0xc7, 0x6e, 0xda, 0x73,
0x6d, 0x78, 0x52, 0x09, 0xaa, 0x20, 0x6d, 0x3b, 0x75, 0x75, 0xe8, 0xb4, 0x3f, 0x9c, 0x5f, 0x85,
0x79, 0x06, 0x73, 0x2e, 0x4b, 0xc3, 0x9f, 0xdb, 0x79, 0x06, 0x5c, 0x4b, 0x94, 0x58, 0xe2, 0x8c,
0x32, 0xea, 0x19, 0x1c, 0xea, 0x8b, 0x9c, 0xbf, 0xeb, 0x83, 0x1b, 0xb3, 0xef, 0x31, 0xc3, 0x4f,
0x3b, 0x37, 0x6a, 0x5e, 0xd7, 0x49, 0x5d, 0xc6, 0x37, 0x4a, 0xe8, 0xaa, 0xbf, 0xe8, 0x83, 0xd7,
0x67, 0x5c, 0xcd, 0x86, 0xbb, 0x76, 0x8b, 0x2f, 0xa7, 0x75, 0xc7, 0xc7, 0x48, 0xdb, 0x9c, 0xa6,
0x80, 0x2e, 0xbe, 0x87, 0x1a, 0x9c, 0x6d, 0x37, 0xe6, 0x66, 0x26, 0xc3, 0xc7, 0x76, 0xdb, 0x8d,
0x41, 0x29, 0xa4, 0x8c, 0xab, 0xee, 0x55, 0x22, 0x38, 0x97, 0x6e, 0x66, 0x31, 0xdd, 0x6e, 0xa0,
0x99, 0xa5, 0xec, 0xe2, 0x88, 0x78, 0xf3, 0x0a, 0x3e, 0xb1, 0xbc, 0x38, 0x92, 0xe1, 0x74, 0x97,
0xf0, 0x37, 0x65, 0x04, 0x84, 0x5d, 0x1c, 0xe1, 0x01, 0xba, 0xeb, 0xd3, 0x24, 0x0e, 0xc2, 0xcf,
0xec, 0x76, 0x7d, 0x1b, 0x8c, 0xba, 0xcf, 0x98, 0xdc, 0x6a, 0x25, 0xa3, 0x74, 0xd7, 0xe7, 0xc9,
0x20, 0x35, 0xad, 0x6d, 0x9e, 0x0e, 0xdc, 0xb3, 0x33, 0xad, 0xdb, 0x98, 0xdf, 0x87, 0x34, 0x4f,
0xd4, 0xb4, 0x4e, 0xea, 0x07, 0xe7, 0xdf, 0xfa, 0xe0, 0xc7, 0x36, 0x99, 0x20, 0xf0, 0x73, 0xa6,
0x14, 0x1b, 0xaf, 0x89, 0xe1, 0xf8, 0x29, 0x13, 0xb5, 0x51, 0x49, 0xda, 0x6f, 0x04, 0xb5, 0x6d,
0x31, 0x55, 0x1a, 0xf6, 0xdc, 0x5b, 0x53, 0x43, 0x1d, 0xba, 0xda, 0xe9, 0x32, 0x5e, 0xa1, 0x6b,
0xb7, 0xda, 0xd5, 0x16, 0x75, 0x93, 0x52, 0x55, 0x6f, 0xb0, 0x85, 0xe9, 0x6a, 0xe7, 0x29, 0x28,
0x1d, 0x78, 0x52, 0x26, 0x14, 0xdc, 0xb7, 0x3c, 0xed, 0xc7, 0xd8, 0xdf, 0xc9, 0x71, 0x28, 0x7e,
0x9b, 0x06, 0x61, 0xa7, 0xfd, 0x3c, 0x40, 0xb7, 0x15, 0x5c, 0x7a, 0x03, 0x7c, 0x6a, 0xb7, 0xad,
0xd8, 0xa5, 0x14, 0xfe, 0x98, 0xba, 0x7e, 0xa4, 0xdb, 0x8a, 0xa0, 0x79, 0xa2, 0xc3, 0x5a, 0x93,
0xee, 0x0c, 0xbf, 0xb4, 0x1b, 0xd6, 0xeb, 0x25, 0x75, 0x9f, 0x32, 0xf9, 0x08, 0xab, 0x84, 0xd2,
0x61, 0x3d, 0x96, 0x41, 0x66, 0x7b, 0x67, 0xe7, 0x4d, 0xc2, 0x5f, 0xd8, 0xd9, 0xde, 0x3a, 0xda,
0xb6, 0xc1, 0x04, 0xec, 0x92, 0xe8, 0x50, 0x8d, 0xc4, 0x49, 0x65, 0xd4, 0xf6, 0x7a, 0xfa, 0x22,
0xb6, 0xea, 0xcf, 0x49, 0x8e, 0x84, 0xbf, 0xb2, 0x5b, 0xf5, 0x6b, 0xcd, 0x8f, 0x4b, 0x09, 0xfa,
0x66, 0xc9, 0x85, 0x74, 0xd5, 0xf7, 0x66, 0x94, 0x51, 0x2f, 0x48, 0xcd, 0x63, 0x83, 0xcf, 0xed,
0xbc, 0x20, 0x3a, 0xc4, 0x1e, 0x97, 0x44, 0x71, 0xdc, 0xf1, 0x20, 0xf5, 0x82, 0x26, 0x12, 0xc6,
0xcc, 0x9e, 0x9a, 0x65, 0x0a, 0xff, 0xd0, 0xd2, 0xec, 0x55, 0x54, 0xd1, 0x18, 0x29, 0x28, 0x33,
0x7b, 0x32, 0xe8, 0x1c, 0xb1, 0xfb, 0x1f, 0xf2, 0x6f, 0x2f, 0xc0, 0x3f, 0xb2, 0x7b, 0xe5, 0x6a,
0x99, 0x17, 0x35, 0xcb, 0x20, 0x7d, 0x65, 0x24, 0x61, 0xec, 0x95, 0xd5, 0xe4, 0x74, 0xf8, 0xb5,
0xe5, 0x2b, 0x57, 0x54, 0xe9, 0x95, 0x65, 0x94, 0xbd, 0xb2, 0x0c, 0x96, 0xe1, 0x7e, 0x5d, 0x1a,
0x32, 0x44, 0x96, 0xe1, 0x7e, 0x46, 0xde, 0xa9, 0xb8, 0x72, 0x97, 0x0b, 0x38, 0x0b, 0xf7, 0xab,
0xb0, 0xf3, 0xb7, 0xfc, 0x8e, 0x5b, 0x4e, 0xee, 0x87, 0x63, 0xcb, 0x59, 0x59, 0x7b, 0xac, 0x0d,
0x5f, 0x73, 0x0d, 0x4a, 0x2c, 0x63, 0xb3, 0x52, 0x5f, 0xc4, 0x4e, 0x01, 0x66, 0x66, 0xdb, 0x42,
0xdf, 0xee, 0x14, 0x60, 0xab, 0x16, 0xa0, 0x9a, 0x60, 0x7d, 0xd1, 0xb0, 0xe7, 0x5e, 0xc7, 0xda,
0x12, 0x3a, 0x1b, 0xd5, 0x5f, 0xf7, 0x80, 0xd8, 0x76, 0x68, 0xee, 0xd5, 0x44, 0x7e, 0x68, 0x8a,
0x60, 0x39, 0x34, 0x45, 0x8c, 0x99, 0xcc, 0xd9, 0xe9, 0xb0, 0x70, 0x62, 0xf7, 0x71, 0xea, 0x57,
0x79, 0xd6, 0xf0, 0xd5, 0xc5, 0x48, 0x2a, 0xa3, 0x1f, 0x67, 0xa2, 0x2f, 0x62, 0x1b, 0xfa, 0x19,
0xa9, 0xcc, 0x70, 0x6a, 0xb7, 0xa1, 0x6f, 0xfa, 0x5f, 0x09, 0x02, 0x68, 0x4b, 0xe8, 0x86, 0x1e,
0xeb, 0x0a, 0x9c, 0x3f, 0xeb, 0x83, 0xeb, 0xfa, 0x64, 0x63, 0x78, 0x60, 0x37, 0x83, 0xea, 0x0e,
0x28, 0xdd, 0x0f, 0xb5, 0x63, 0x38, 0x9c, 0xce, 0xa0, 0x89, 0x0a, 0xb3, 0xb3, 0x33, 0x7d, 0x36,
0x10, 0x24, 0x76, 0xee, 0x7b, 0xb9, 0xeb, 0x7e, 0x56, 0x93, 0xe5, 0xed, 0xb8, 0x58, 0x40, 0xdd,
0xf7, 0x44, 0x83, 0xb3, 0x30, 0xac, 0x94, 0x25, 0x07, 0x03, 0xcb, 0x30, 0x2c, 0xe3, 0xfd, 0x3c,
0x1e, 0xcb, 0xb7, 0x82, 0x6b, 0x88, 0x85, 0x61, 0x05, 0x84, 0x19, 0x2f, 0x6d, 0x02, 0x18, 0x4c,
0xec, 0xba, 0x7e, 0xaf, 0x24, 0x57, 0x49, 0x0a, 0xdc, 0x4b, 0xab, 0x38, 0xed, 0xfa, 0x44, 0x85,
0x9d, 0x7f, 0xee, 0x83, 0x1f, 0x19, 0x13, 0xba, 0x60, 0xca, 0xda, 0x83, 0x2c, 0xbf, 0x42, 0x23,
0x47, 0x33, 0x6b, 0xe7, 0x57, 0x19, 0xf6, 0xdc, 0xb7, 0x92, 0xb9, 0x35, 0xd8, 0xb1, 0xae, 0x94,
0x52, 0x03, 0x8f, 0x2c, 0x8f, 0x75, 0xc9, 0x29, 0x2e, 0xe3, 0x05, 0xed, 0xd1, 0xaa, 0x00, 0xb1,
0x63, 0x5d, 0x01, 0x61, 0xdf, 0x48, 0x9b, 0x8a, 0x08, 0x8f, 0xed, 0xbe, 0xd1, 0x93, 0x38, 0xff,
0xb2, 0xe5, 0x0a, 0xc1, 0x62, 0x19, 0xa7, 0xdf, 0x28, 0x52, 0x61, 0x76, 0x29, 0x41, 0x75, 0xac,
0x4e, 0x2c, 0x2f, 0x25, 0xe8, 0x1c, 0x2a, 0x8d, 0x23, 0x75, 0x39, 0x94, 0x1d, 0x28, 0xe6, 0xc9,
0x28, 0xbf, 0x0d, 0x02, 0x4f, 0x6d, 0x3d, 0x99, 0x92, 0x2a, 0x5d, 0x64, 0x93, 0xd1, 0xd2, 0x93,
0x91, 0x40, 0x66, 0x21, 0x67, 0xfc, 0x3e, 0x18, 0xfc, 0xb5, 0xe5, 0xad, 0x5a, 0x46, 0xdf, 0x69,
0xd8, 0xc2, 0xe6, 0x59, 0x2d, 0x61, 0xb7, 0x6a, 0x75, 0x05, 0x74, 0xc0, 0xc9, 0x69, 0x7d, 0xf0,
0x3b, 0xbb, 0x01, 0xe7, 0x52, 0x9e, 0x78, 0x92, 0x26, 0x42, 0x74, 0xc0, 0xa5, 0x02, 0xe2, 0xf8,
0xe0, 0xa2, 0x90, 0x56, 0x0f, 0xff, 0xd8, 0x2e, 0xf4, 0xb2, 0x53, 0x92, 0xf8, 0x1b, 0xf4, 0x2d,
0x30, 0xec, 0xb9, 0x17, 0x08, 0xf7, 0x5c, 0x5a, 0x5c, 0x6d, 0xfe, 0x28, 0xfc, 0x13, 0x4b, 0x8b,
0x5b, 0xb1, 0xab, 0xa3, 0x08, 0xde, 0xf8, 0xa8, 0x05, 0xcc, 0xe2, 0x6a, 0x70, 0xe7, 0x1b, 0x70,
0x49, 0xca, 0x3a, 0x83, 0xbf, 0xe9, 0xdb, 0xed, 0x0b, 0x9f, 0x92, 0x10, 0x7f, 0x15, 0x47, 0xdc,
0x1b, 0x0b, 0x08, 0xdd, 0x17, 0xe6, 0x3c, 0xb0, 0x7e, 0x81, 0x4f, 0xb4, 0x5a, 0xfc, 0xaf, 0x3e,
0xb8, 0x28, 0xa4, 0x28, 0x39, 0x11, 0xb8, 0x5a, 0x86, 0xa3, 0x12, 0x94, 0x1f, 0x8c, 0x70, 0x80,
0x59, 0x73, 0xe1, 0x19, 0x96, 0xf0, 0xf5, 0x71, 0xa7, 0x74, 0xa7, 0x32, 0x2a, 0xb5, 0x87, 0xf2,
0x83, 0xad, 0x52, 0x8c, 0x7b, 0x65, 0x22, 0x21, 0xd9, 0x0d, 0x1f, 0x5c, 0x96, 0xab, 0x39, 0x6f,
0x82, 0x32, 0x84, 0x35, 0x8a, 0x50, 0x58, 0x26, 0x83, 0x9d, 0x73, 0xcf, 0x31, 0xe4, 0x09, 0x0a,
0xb1, 0xf3, 0x1e, 0x78, 0x99, 0x44, 0x3e, 0x3e, 0x66, 0xd9, 0x46, 0xe7, 0x57, 0x6e, 0xd6, 0x8d,
0xaa, 0x13, 0xdd, 0x96, 0x76, 0xa2, 0xfc, 0xee, 0x9d, 0x32, 0x77, 0xab, 0xac, 0xb9, 0xf8, 0xfd,
0x19, 0x70, 0x81, 0x4f, 0xa0, 0x72, 0xee, 0x80, 0xeb, 0x45, 0x94, 0x14, 0xe3, 0x80, 0x64, 0x07,
0xb5, 0x31, 0x6b, 0x73, 0xcf, 0xce, 0xb9, 0xd7, 0xb8, 0xd2, 0x36, 0xbf, 0x2a, 0x01, 0x50, 0x59,
0xa1, 0xeb, 0x34, 0xae, 0xb2, 0x31, 0x77, 0x3b, 0xae, 0xd1, 0x75, 0x42, 0xd7, 0xf5, 0x44, 0x8b,
0x3b, 0xdf, 0x34, 0x3e, 0x41, 0x7d, 0x3c, 0x5f, 0xeb, 0x2b, 0x53, 0xd8, 0xee, 0x74, 0x3a, 0xa0,
0xaf, 0xb5, 0x5d, 0x4b, 0x34, 0xe8, 0xe2, 0xff, 0xf6, 0xc1, 0x75, 0x7d, 0xf3, 0x9c, 0x8f, 0xc1,
0x4d, 0xea, 0x39, 0xb1, 0x9c, 0x96, 0xaa, 0x3d, 0x3e, 0xce, 0xbc, 0x94, 0x24, 0x2c, 0x19, 0xae,
0x4c, 0xb4, 0x7b, 0xa3, 0xae, 0x52, 0x0a, 0xd9, 0x6c, 0x2b, 0x38, 0x9b, 0xe0, 0xa5, 0x43, 0x7c,
0x52, 0x25, 0xcd, 0xad, 0x98, 0xd2, 0xee, 0xa4, 0x46, 0x7c, 0x8a, 0x4f, 0x5c, 0x4a, 0x77, 0xde,
0x05, 0xd7, 0xe4, 0x56, 0xb0, 0x11, 0xf2, 0x32, 0x53, 0xef, 0x88, 0xea, 0xd9, 0x50, 0x79, 0x1b,
0x5c, 0x24, 0xd9, 0x08, 0x1f, 0xe3, 0x30, 0xc9, 0xc9, 0x38, 0xc0, 0xf0, 0x95, 0x5b, 0xfd, 0xdb,
0x67, 0xdd, 0x0b, 0x24, 0xdb, 0x6a, 0xb0, 0xc5, 0x53, 0x70, 0x4d, 0xd7, 0x4b, 0xce, 0xb8, 0x09,
0x8d, 0xe4, 0x71, 0x42, 0xbc, 0x11, 0x8e, 0xf2, 0x94, 0xe0, 0x3a, 0xf9, 0xf1, 0x5d, 0xbb, 0xb7,
0x78, 0x4a, 0xa9, 0x5b, 0x51, 0x9e, 0x9e, 0xd4, 0xf1, 0x8f, 0x06, 0x21, 0x38, 0x5b, 0xff, 0x6f,
0x16, 0x8b, 0x0b, 0x0d, 0x5f, 0x71, 0xfd, 0x3c, 0x1b, 0x83, 0xd9, 0x1e, 0x1d, 0xe1, 0x7b, 0xfd,
0xaf, 0x36, 0xab, 0xea, 0xd3, 0x38, 0x40, 0xd1, 0x74, 0x29, 0x4e, 0xa7, 0xcb, 0x53, 0x1c, 0xb1,
0xf1, 0x5f, 0x67, 0x8c, 0x26, 0x24, 0x9b, 0x95, 0x40, 0xfa, 0xa0, 0xfc, 0xf3, 0xfd, 0x99, 0x97,
0x1e, 0x0d, 0x06, 0xbf, 0x3d, 0xf3, 0x56, 0x99, 0x8a, 0xb9, 0x34, 0xf0, 0xb9, 0x84, 0xcd, 0xa5,
0x67, 0xab, 0xe5, 0x64, 0xce, 0xfe, 0xb3, 0xae, 0xf0, 0x7c, 0xe0, 0x67, 0xcf, 0x9b, 0x0a, 0xcf,
0x9f, 0xad, 0x3e, 0x2f, 0x2b, 0xfc, 0xcf, 0x99, 0xc5, 0x12, 0x5d, 0x5b, 0x1b, 0xf8, 0xd9, 0xda,
0x5a, 0x53, 0x65, 0x6d, 0xed, 0xd9, 0xea, 0xda, 0x5a, 0x59, 0x69, 0xfc, 0x0a, 0x6b, 0xdd, 0xea,
0xff, 0x05, 0x00, 0x00, 0xff, 0xff, 0xdd, 0x1d, 0x00, 0x9a, 0xb7, 0x53, 0x00, 0x00,
}
|