diff --git a/CHANGELOG.md b/CHANGELOG.md index fe8f93e9..b6496179 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## [2.2.0](https://github.com/openmail/system1-cmp/compare/2.1.7...2.1.8) (2021-05-17) + +### Feat + +- [x] Upgrade vendor list and script to download vendor list +- [x] Add relative position modal solution +- [x] Add `updateConfig` API to switch between relative and static position +- [x] Pass theme colors through to anchors + ## [2.1.7](https://github.com/openmail/system1-cmp/compare/2.1.6...2.1.7) (2021-03-05) ### Feat diff --git a/README.md b/README.md index 712e9863..a0eac338 100644 --- a/README.md +++ b/README.md @@ -109,6 +109,7 @@ Read more about [\_\_tcfapi built-in API](https://github.com/InteractiveAdvertis - [offConsentAllChanged](#offConsentAllChanged) - [showConsentTool](#showConsentTool) - [changeLanguage](#changeLanguage) +- [changeConfig](#changeConfig) ### init @@ -185,6 +186,20 @@ Calling `__tcfapi('changeLanguage', 2, () => {}, language)` will use cached vers __tcfapi('changeLanguage', 2, (store) => {}, 'pt'); // changes to Portuguese ``` +### changeConfig + +Calling `__tcfapi('changeConfig', 2, () => {}, {isSlimMode: true, theme: {isInlineMode: false}})` will update config values and rerender CMP UI + +```js +/** + * @param 'changeConfig' // required string command + * @param apiVersion // required number 2 + * @param callback // required function, called when changeLanguage completes, called with `store` and result + * @param config // required object, merges with existing config object providing during `init()` + */ +__tcfapi('changeConfig', 2, (store) => {}, {theme: {isInlineMode: false}}); // changes config to use inline-mode +``` + ## Configuration / Config Set configuration for your CMP during the `init` phase. @@ -224,6 +239,7 @@ __tcfapi('init', 2, () => {}, { | `shouldUseStacks` | optional boolean | `true` | true uses stacks on Layer1, TODO stacks need purposes/custom-features toggle to be compliant | | `isSlimMode` | optional boolean | `false` | If `true`, initial banner is low profile, full width banner v2.1.4+ | | `shouldShowCloseX` | optional boolean | `false` | If `true`, a × icon will appear in the upper right on layers to accept-all and close v2.1.4+ | +| `insertionNode` | optional string | `` | UI will be appended to this element using `querySelector`. Default behavior appends to body v2.2.0+ | ### theme @@ -233,6 +249,7 @@ Themeing is a bit limited right now. Pass in a `config.theme` object during init | ----------------------- | ---------------- | -------- | -------------------------------------------------------------------------------------------------------- | | `maxHeightModal` | optional string | `45vh` | CSS style for max height of the CMP UI. Example: `45vh`, `50%`, `350px` | | `maxWidthModal` | optional string | `1024px` | CSS style for max width of the CMP UI. Example: `1024px`, `calc(90% - 100px)` | +| `maxHeightInline` | optional string | `200px` | CSS style to force max-height of CMP UI while in `isBannerInline` mode only. | | `shouldAutoResizeModal` | optional boolean | true | Auto detects Layer1 height to minimize UI. UI resizes to `maxHeightModal` upon interaction | | `primaryColor` | optional string | null | Example: `#0099ff` | | `textLinkColor` | optional string | null | Example: `#0099ff` | @@ -240,6 +257,7 @@ Themeing is a bit limited right now. Pass in a `config.theme` object during init | `featuresColor` | optional string | null | Example: `#d0d3d7` | | `backgroundColor` | optional string | null | Example: `#d0d3d7` Sets the background color of the banners. v2.1.4+ | | `isFullWidth` | optional boolean | false | Removes rounded corners and makes banners full width - matching style layout slimMode v2.1.4+ | +| `isBannerInline` | optional boolean | false | Renders CMP inline instead of overlaying layout. Subsequent CMP views open in modal v2.2.0+ | | `shouldShowDropShadow` | optional boolean | true | When set to `true`, displays the drop shadoq on banners v2.1.4+ | ## Initialize With Euconsent String from URL Param diff --git a/package.json b/package.json index 9a79924a..878575c7 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,12 @@ { "name": "system1-cmp", - "version": "2.1.7", - "cmpVersion": 5, + "version": "2.2.0", + "cmpVersion": 6, "description": "System1 Consent Management Platform for TCF 1.1 GDPR Compliance", "scripts": { "clean": "rimraf ./dist", "dev": "yarn dev:s1", - "dev:s1": "cross-env NODE_ENV=development webpack-dev-server --inline --hot --progress --config config/s1.webpack.config.babel.js", + "dev:s1": "cross-env PORT=3030 NODE_ENV=development webpack-dev-server --inline --hot --progress --config config/s1.webpack.config.babel.js", "dev:original": "cross-env NODE_ENV=development webpack-dev-server --inline --hot --progress --config config/webpack.config.babel.js", "start": "serve dist -c 1", "prestart": "npm run build", diff --git a/scripts/run.js b/scripts/run.js index 223b3335..ded872f9 100644 --- a/scripts/run.js +++ b/scripts/run.js @@ -8,7 +8,7 @@ const fs = require('fs'); const https = require('https'); const { LANGUAGES } = require('../src/s1/constants.js'); -const VENDOR_LIST_URL = 'https://vendorlist.consensu.org/v2/vendor-list.json'; +const VENDOR_LIST_URL = 'https://vendor-list.consensu.org/v2/vendor-list.json'; const externalFiles = [ { @@ -50,7 +50,7 @@ const processFiles = () => { LANGUAGES.filter(({ shouldDisablePurposesFetch = false }) => !shouldDisablePurposesFetch).forEach( ({ display, code }) => { downloadFile( - `https://vendorlist.consensu.org/v2/purposes-${code}.json`, + `https://vendor-list.consensu.org/v2/purposes-${code}.json`, `src/s1/config/2.0/purposes/purposes-${code}.json` ) .then(() => { diff --git a/src/s1/components/banner/banner.less b/src/s1/components/banner/banner.less index 1a194cd3..2b915ca7 100644 --- a/src/s1/components/banner/banner.less +++ b/src/s1/components/banner/banner.less @@ -17,26 +17,17 @@ color: @color-textLight; background: #fff; font-size: 16px; - transition: transform 350ms ease-in-out, opacity 350ms linear; + transition: transform 350ms ease-in-out, opacity 350ms linear; margin: auto; + overflow: hidden; &.bannerShadow { box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.12), 0 -2px 2px rgba(0, 0, 0, 0.12), 0 -4px 4px rgba(0, 0, 0, 0.12), 0 -8px 8px rgba(0, 0, 0, 0.12), 0 -16px 16px rgba(0, 0, 0, 0.12); } - &.bannerRounded { - border-top-left-radius: 25px; - border-top-right-radius: 25px; - border-bottom-left-radius: 10px; - border-bottom-right-radius: 10px; - width: calc(100% - 50px); - max-width: 1024px; - } - @media @smartphone { padding: 15px 10px; - width: calc(100% - 20px); } &.hidden { @@ -46,11 +37,6 @@ transition-delay: 250ms; } - &.bannerInline { - position: relative; - box-shadow: none; - } - &.bannerModal { top: 0; display: flex; @@ -104,6 +90,10 @@ margin-bottom: 0; padding: 0 30px 30px; + .message { + padding-bottom: 0; + } + @media @smartphone { padding: 12px 20px 0; @@ -139,6 +129,51 @@ } } + &.bannerInline { + position: relative; + // max-height: 680px; + + &.hidden { + pointer-events: none; + transform: translateY(0px); + opacity: 0; + transition-delay: 250ms; + padding-top: 0; + max-height: 0px; + transition: transform 350ms ease-in-out, opacity 350ms linear, max-height 350ms ease-in-out, padding 350ms ease-in-out; + overflow: hidden; + } + + .content { + margin-bottom: 0px; + + .message { + padding-bottom: 60px; + } + } + + &.bannerSlim { + .content { + .message { + padding-bottom: 0; + } + } + } + } + + &.bannerRounded { + border-top-left-radius: 25px; + border-top-right-radius: 25px; + border-bottom-left-radius: 10px; + border-bottom-right-radius: 10px; + width: calc(100% - 50px); + max-width: 1024px; + + @media @smartphone { + width: calc(100% - 20px); + } + } + .content { max-height: 60vh; padding-left: 30px; @@ -150,6 +185,14 @@ -webkit-overflow-scrolling: touch; transition: max-height 350ms ease-in-out; + &.animated { + overflow: auto; + animation: hide-scroll 500ms backwards; + @keyframes hide-scroll { + from, to { overflow: hidden; } + } + } + @media @smartphone { padding-top: 0px; padding-left: 5px; diff --git a/src/s1/components/banner/bannerSlim.jsx b/src/s1/components/banner/bannerSlim.jsx index 17a2217e..4c134c2c 100644 --- a/src/s1/components/banner/bannerSlim.jsx +++ b/src/s1/components/banner/bannerSlim.jsx @@ -111,7 +111,7 @@ export default class BannerSlim extends Component { handleResize = debounce(() => { const { store } = this.props; - const { maxHeightModal, shouldAutoResizeModal } = store; + const { maxHeightModal, shouldAutoResizeModal} = store; let newMaxHeightModal = maxHeightModal; @@ -136,16 +136,20 @@ export default class BannerSlim extends Component { const { hasScrolled } = state; const { isShowing, store } = props; const { - config: { theme, shouldShowCloseX, }, + config: { theme, shouldShowCloseX}, translations, - maxHeightModal, + maxHeightModal, + minHeightModal } = store; const { isBannerModal, isBannerInline, + isFullWidth, maxWidthModal, + maxHeightInline, // maxHeightModal, // handled in store + // minHeightModal, // handled in store primaryColor, primaryTextColor, backgroundColor, @@ -158,7 +162,10 @@ export default class BannerSlim extends Component { if (!isShowing) { bannerClasses.push(style.hidden); } - if( shouldShowDropShadow ) { + if (!isFullWidth) { + bannerClasses.push(style.bannerRounded); + } + if (shouldShowDropShadow) { bannerClasses.push(style.bannerShadow); } if (isBannerModal) { @@ -167,6 +174,8 @@ export default class BannerSlim extends Component { bannerClasses.push(style.bannerInline); } + const maxHeightStr = (isBannerInline && maxHeightInline ? `min(${maxHeightInline}, ${isNaN(maxHeightModal) ? maxHeightModal : maxHeightModal + 'px'})` : maxHeightModal); + return (
(this.scrollRef = el)} style={{ - maxHeight: maxHeightModal, + maxHeight: maxHeightStr, + minHeight: minHeightModal }} > { shouldShowCloseX &&
×
} @@ -193,7 +205,7 @@ export default class BannerSlim extends Component {
- + We and our partners use cookies and other technologies to store and/or access information on or from your device (with or without your permission, depending on the type of data) while you use this site, in order to personalize ads and content, analyze or measure site usage, and develop audience insights. You can learn more and change or manage your consent setting preferences via the "manage preferences" link or visiting our "privacy policy".
diff --git a/src/s1/components/banner/bannerStacks.jsx b/src/s1/components/banner/bannerStacks.jsx index 8b56dc83..d4f55996 100644 --- a/src/s1/components/banner/bannerStacks.jsx +++ b/src/s1/components/banner/bannerStacks.jsx @@ -112,11 +112,11 @@ export default class BannerStacks extends Component { handleResize = debounce(() => { const { store } = this.props; - const { maxHeightModal, shouldAutoResizeModal } = store; + const { maxHeightModal, shouldAutoResizeModal, isSlimMode } = store; let newMaxHeightModal = maxHeightModal; - if (shouldAutoResizeModal && this.aboveFoldRef && this.aboveFoldRef.clientHeight) { + if (!isSlimMode && shouldAutoResizeModal && this.aboveFoldRef && this.aboveFoldRef.clientHeight) { newMaxHeightModal = this.aboveFoldRef.clientHeight + 100; } @@ -137,7 +137,7 @@ export default class BannerStacks extends Component { const { hasScrolled } = state; const { isShowing, store } = props; const { - config: { theme, shouldShowCloseX, }, + config: { theme, shouldShowCloseX}, translations, displayLayer1, isSaveShowing, @@ -148,9 +148,11 @@ export default class BannerStacks extends Component { isBannerModal, isBannerInline, maxWidthModal, + minHeightModal, isFullWidth, shouldShowDropShadow, // maxHeightModal, // handled in store + maxHeightInline, primaryColor, primaryTextColor, backgroundColor, @@ -162,18 +164,20 @@ export default class BannerStacks extends Component { if (!isShowing) { bannerClasses.push(style.hidden); } - if( !isFullWidth ) { + if (!isFullWidth) { bannerClasses.push(style.bannerRounded); } - if( shouldShowDropShadow ) { + if (shouldShowDropShadow) { bannerClasses.push(style.bannerShadow); } if (isBannerModal) { bannerClasses.push(style.bannerModal); } else if (isBannerInline) { - bannerClasses.push(style.bannerInline); + bannerClasses.push(style.bannerInline); } + // const maxHeightStr = (isBannerInline && maxHeightInline ? `min(${maxHeightInline}, ${isNaN(maxHeightModal) ? maxHeightModal : maxHeightModal + 'px'})` : maxHeightModal); + return (
(this.scrollRef = el)} style={{ maxHeight: maxHeightModal, + ...(minHeightModal ? { minHeight: minHeightModal } : {}), }} > { shouldShowCloseX &&
×
} @@ -200,7 +206,7 @@ export default class BannerStacks extends Component {
- + When you visit our site, pre-selected companies may access and use certain information on your device and about this site to serve relevant ads or personalized content. diff --git a/src/s1/components/banner/bannerVendors.jsx b/src/s1/components/banner/bannerVendors.jsx index a665c3b4..8b991877 100644 --- a/src/s1/components/banner/bannerVendors.jsx +++ b/src/s1/components/banner/bannerVendors.jsx @@ -85,19 +85,30 @@ export default class BannerVendors extends Component { config: { theme, shouldShowCloseX, }, isSaveShowing, translations, - maxHeightModal, + maxHeightModal, + minHeightModal } = store; - const { isBannerModal, isBannerInline, primaryColor, primaryTextColor, backgroundColor, textLightColor, isFullWidth, shouldShowDropShadow, } = theme; + const { + isBannerModal, + isBannerInline, + primaryColor, + primaryTextColor, + backgroundColor, + textLightColor, + isFullWidth, + shouldShowDropShadow, + maxHeightInline + } = theme; const bannerClasses = [style.banner]; if (!isShowing) { bannerClasses.push(style.hidden); } - if( !isFullWidth ) { + if (!isFullWidth) { bannerClasses.push(style.bannerRounded); - } - if( shouldShowDropShadow ) { + } + if (shouldShowDropShadow) { bannerClasses.push(style.bannerShadow); } if (isBannerModal) { @@ -116,9 +127,10 @@ export default class BannerVendors extends Component { }} >
{ shouldShowCloseX &&
×
} diff --git a/src/s1/components/banner/purposeList.jsx b/src/s1/components/banner/purposeList.jsx index 62b8bc41..e84e6794 100644 --- a/src/s1/components/banner/purposeList.jsx +++ b/src/s1/components/banner/purposeList.jsx @@ -245,7 +245,7 @@ export default class PurposeList extends Component { const displayPurposesDom = this.renderRow(props, state, { headline: (

- + We and{' '} our partners: @@ -273,6 +273,7 @@ export default class PurposeList extends Component { localizeKey="stacksPurposesTitle" translations={translations} onClick={this.handleVendorsClick} + theme={theme} > Purposes @@ -296,6 +297,7 @@ export default class PurposeList extends Component { localizeKey="stacksSpecialFeaturesTitle" translations={translations} onClick={this.handleVendorsClick} + theme={theme} > Special Features @@ -314,7 +316,7 @@ export default class PurposeList extends Component { displayStackDom = this.renderStack(props, state, { headline: (

- + We and{' '} our partners @@ -339,7 +341,7 @@ export default class PurposeList extends Component { const displaySpecialFeaturesDom = this.renderRow(props, state, { headline: (

- + For some of the purposes above we and{' '} our partners @@ -359,7 +361,7 @@ export default class PurposeList extends Component { const displaySpecialPurposesDom = this.renderRow(props, state, { headline: (

- + We need your consent for all the purposes above but we have a legitimate interest for these purposes:

@@ -373,7 +375,7 @@ export default class PurposeList extends Component { const displayFeaturesDom = this.renderRow(props, state, { headline: (

- + For some of the purposes above we and{' '} our partners @@ -391,7 +393,7 @@ export default class PurposeList extends Component { const displayLegitInterestPurposesDom = this.renderRow(props, state, { headline: (

- + Some of{' '} our partners diff --git a/src/s1/components/banner/vendorList.jsx b/src/s1/components/banner/vendorList.jsx index 96decb13..10b53bcd 100644 --- a/src/s1/components/banner/vendorList.jsx +++ b/src/s1/components/banner/vendorList.jsx @@ -134,6 +134,7 @@ export default class VendorList extends Component { class={style.privacyPolicy} href={policyUrl} target="_blank" + style={{color: theme.textLinkColor}} title={`Privacy Policy for ${name}`} > diff --git a/src/s1/components/label/label.jsx b/src/s1/components/label/label.jsx index acee5b86..7e8423c7 100644 --- a/src/s1/components/label/label.jsx +++ b/src/s1/components/label/label.jsx @@ -9,7 +9,7 @@ export default class Label extends Component { }; hookClickHandler() { - const { onClick } = this.props; + const { onClick, theme } = this.props; if (onClick && this.ref.current) { const a = this.ref.current.querySelector('a'); if (!a || a === this.hooked) { @@ -22,6 +22,9 @@ export default class Label extends Component { this.hooked = a; this.hooked.addEventListener('click', onClick); + if (theme) { + this.hooked.style.color = theme.textLinkColor; + } } } diff --git a/src/s1/config/2.0/purposes/purposes-bg.json b/src/s1/config/2.0/purposes/purposes-bg.json index ac414c3e..e3906916 100644 --- a/src/s1/config/2.0/purposes/purposes-bg.json +++ b/src/s1/config/2.0/purposes/purposes-bg.json @@ -1 +1 @@ -{"vendorListVersion":79,"lastUpdated":"2021-02-25T16:36:14Z","purposes":{"1":{"id":1,"name":"\u0421\u044a\u0445\u0440\u0430\u043d\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0438/\u0438\u043b\u0438 \u0434\u043e\u0441\u0442\u044a\u043f \u0434\u043e \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e","description":"\u0411\u0438\u0441\u043a\u0432\u0438\u0442\u043a\u0438, \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u0438 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0438\u043b\u0438 \u0434\u0440\u0443\u0433\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0441\u044a\u0445\u0440\u0430\u043d\u0435\u043d\u0438 \u0438\u043b\u0438 \u0434\u043e\u0441\u0442\u044a\u043f\u043d\u0438 \u043d\u0430 \u0412\u0430\u0448\u0435\u0442\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e \u0437\u0430 \u0446\u0435\u043b\u0438\u0442\u0435, \u0437\u0430 \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0412\u0438 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0435\u043d\u0438.","descriptionLegal":"\u0414\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u0441\u044a\u0445\u0440\u0430\u043d\u044f\u0432\u0430\u0442 \u0438 \u0434\u0430 \u0438\u043c\u0430\u0442 \u0434\u043e\u0441\u0442\u044a\u043f \u0434\u043e \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e, \u043a\u0430\u0442\u043e \u201e\u0431\u0438\u0441\u043a\u0432\u0438\u0442\u043a\u0438\u201c \u0438 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u0438 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0435\u043d\u0438 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f.\n"},"2":{"id":2,"name":"\u0418\u0437\u0431\u043e\u0440 \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u0438 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0412\u0438 \u0431\u044a\u0434\u0430\u0442 \u043f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e, \u043a\u043e\u0435\u0442\u043e \u0440\u0430\u0437\u0433\u043b\u0435\u0436\u0434\u0430\u0442\u0435, \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u0442\u043e, \u043a\u043e\u0435\u0442\u043e \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435, \u043f\u0440\u0438\u0431\u043b\u0438\u0437\u0438\u0442\u0435\u043b\u043d\u043e\u0442\u043e \u0412\u0438 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0438\u043b\u0438 \u0412\u0430\u0448\u0438\u044f \u0442\u0438\u043f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e.","descriptionLegal":"\u0417\u0430 \u0434\u0430 \u043d\u0430\u043f\u0440\u0430\u0432\u044f\u0442 \u0438\u0437\u0431\u043e\u0440 \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0432 \u0440\u0435\u0430\u043b\u043d\u043e \u0432\u0440\u0435\u043c\u0435 \u0437\u0430 \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442\u0430, \u0432 \u043a\u043e\u0439\u0442\u043e \u0449\u0435 \u0441\u0435 \u043f\u043e\u043a\u0430\u0437\u0432\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0430\u0442\u0430, \u0437\u0430 \u0434\u0430 \u0441\u0435 \u043f\u043e\u043a\u0430\u0437\u0432\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0430\u0442\u0430, \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u0435\u043b\u043d\u043e \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e\u0442\u043e, \u043a\u0430\u0442\u043e \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440: \u0442\u0438\u043f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e \u0438 \u0432\u044a\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438, \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u0430\u0433\u0435\u043d\u0442, URL \u0430\u0434\u0440\u0435\u0441, IP \u0430\u0434\u0440\u0435\u0441 \n* \u0414\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u043d\u0435\u0442\u043e\u0447\u043d\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0441\u043a\u043e \u043f\u043e\u0437\u0438\u0446\u0438\u043e\u043d\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f\n* \u0414\u0430 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u0438\u0440\u0430\u0442 \u0447\u0435\u0441\u0442\u043e\u0442\u0430\u0442\u0430 \u043d\u0430 \u043f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0438\u0442\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f \u0440\u0435\u043a\u043b\u0430\u043c\u0438\n* \u0414\u0430 \u0441\u043b\u0435\u0434\u0432\u0430\u0442 \u043f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u043d\u043e\u0441\u0442\u0442\u0430, \u0432 \u043a\u043e\u044f\u0442\u043e \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0441\u0435 \u043f\u043e\u043a\u0430\u0437\u0432\u0430\u0442 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f\n* \u0414\u0430 \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0442\u044f\u0432\u0430\u0442 \u043f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0430 \u0432 \u043d\u0435\u043f\u043e\u0434\u0445\u043e\u0434\u044f\u0449 \u0440\u0435\u0434\u0430\u043a\u0446\u0438\u043e\u043d\u0435\u043d \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442 (\u043d\u0435\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u0435\u043d \u0437\u0430 \u0431\u0440\u0430\u043d\u0434\u0430)\n\u0414\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043d\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u0441\u044a\u0437\u0434\u0430\u0432\u0430\u0442 \u043f\u0440\u043e\u0444\u0438\u043b \u0437\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u043a\u0430\u0442\u043e \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430 \u0442\u0430\u0437\u0438 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u0438\u0437\u0431\u043e\u0440\u0430 \u043d\u0430 \u0431\u044a\u0434\u0435\u0449\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u0431\u0435\u0437 \u0434\u0430 \u0435 \u043d\u0430\u043b\u0438\u0446\u0435 \u043e\u0442\u0434\u0435\u043b\u043d\u043e \u043f\u0440\u0430\u0432\u043d\u043e \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0435 \u0437\u0430 \u0441\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b \u0437\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438.\n\u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435: \u041d\u0435\u0442\u043e\u0447\u043d\u043e \u043e\u0437\u043d\u0430\u0447\u0430\u0432\u0430, \u0447\u0435 \u0435 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u043e \u0441\u0430\u043c\u043e \u043f\u0440\u0438\u0431\u043b\u0438\u0437\u0438\u0442\u0435\u043b\u043d\u043e \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435, \u0432\u043a\u043b\u044e\u0447\u0432\u0430\u0449\u043e \u043d\u0430\u0439-\u043c\u0430\u043b\u043a\u043e \u0440\u0430\u0434\u0438\u0443\u0441 \u043e\u0442 500 \u043c\u0435\u0442\u0440\u0430.\n"},"3":{"id":3,"name":"\u0421\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b \u0437\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438","description":"\u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u0438 \u043f\u0440\u043e\u0444\u0438\u043b \u0437\u0430 \u0412\u0430\u0441 \u0438 \u0412\u0430\u0448\u0438\u0442\u0435 \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u0438, \u0437\u0430 \u0434\u0430 \u0412\u0438 \u043f\u043e\u043a\u0430\u0437\u0432\u0430\u043c\u0435 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u043f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438 \u0437\u0430 \u0412\u0430\u0441.","descriptionLegal":"\u0417\u0430 \u0441\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b \u0437\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u0441\u044a\u0431\u0438\u0440\u0430\u0442 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b, \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u0435\u043b\u043d\u043e \u0434\u0435\u0439\u043d\u043e\u0441\u0442 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f, \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u0438, \u0434\u0435\u043c\u043e\u0433\u0440\u0430\u0444\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0438\u043b\u0438 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435, \u0434\u0430 \u0441\u044a\u0437\u0434\u0430\u0432\u0430\u0442 \u0438\u043b\u0438 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0442 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043f\u0440\u043e\u0444\u0438\u043b \u0437\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435 \u043f\u0440\u0438 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0430.\n* \u041a\u043e\u043c\u0431\u0438\u043d\u0438\u0440\u0430\u0439\u0442\u0435 \u0442\u0430\u0437\u0438 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0441 \u0434\u0440\u0443\u0433\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f, \u0441\u044a\u0431\u0440\u0430\u043d\u0430 \u043f\u0440\u0435\u0434\u0438 \u0442\u043e\u0432\u0430, \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u0435\u043b\u043d\u043e \u043e\u0442 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u0438 \u0443\u0435\u0431\u0441\u0430\u0439\u0442\u043e\u0432\u0435 \u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u0437\u0430 \u0434\u0430 \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u0442\u0435 \u0438\u043b\u0438 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0442\u0435 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043f\u0440\u043e\u0444\u0438\u043b \u0437\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435 \u0432 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430\u0442\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0430.\n"},"4":{"id":4,"name":"\u0418\u0437\u0431\u043e\u0440 \u043d\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438","description":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438\u0442\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0412\u0438 \u0431\u044a\u0434\u0430\u0442 \u043f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b \u0437\u0430 \u0412\u0430\u0441.","descriptionLegal":"\u0417\u0430 \u0434\u0430 \u0438\u0437\u0431\u0435\u0440\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u0438\u0437\u0431\u0438\u0440\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043f\u0440\u043e\u0444\u0438\u043b \u0438\u043b\u0438 \u0434\u0440\u0443\u0433\u0438 \u0438\u0441\u0442\u043e\u0440\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f, \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u0435\u043b\u043d\u043e \u043f\u0440\u0435\u0434\u0438\u0448\u043d\u0438 \u0434\u0435\u0439\u043d\u043e\u0441\u0442\u0438, \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u0438, \u043f\u043e\u0441\u0435\u0449\u0435\u043d\u0438\u044f \u0432 \u0441\u0430\u0439\u0442\u043e\u0432\u0435 \u0438\u043b\u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0438\u043b\u0438 \u0434\u0435\u043c\u043e\u0433\u0440\u0430\u0444\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438.\n"},"5":{"id":5,"name":"\u0421\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b \u0441 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435","description":"\u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u0438 \u043f\u0440\u043e\u0444\u0438\u043b \u0437\u0430 \u0412\u0430\u0441 \u0438 \u0412\u0430\u0448\u0438\u0442\u0435 \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u0438, \u0437\u0430 \u0434\u0430 \u0412\u0438 \u043f\u043e\u043a\u0430\u0436\u0435\u043c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u043a\u043e\u0435\u0442\u043e \u0435 \u043f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u043e \u0437\u0430 \u0412\u0430\u0441.","descriptionLegal":"\u0417\u0430 \u0441\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b \u0441 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u0441\u044a\u0431\u0438\u0440\u0430\u0442 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b, \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u0435\u043b\u043d\u043e \u0434\u0435\u0439\u043d\u043e\u0441\u0442 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f, \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u0438, \u043f\u043e\u0441\u0435\u0449\u0435\u043d\u0438\u044f \u0432 \u0441\u0430\u0439\u0442\u043e\u0432\u0435 \u0438\u043b\u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u0434\u0435\u043c\u043e\u0433\u0440\u0430\u0444\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0438\u043b\u0438 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435, \u0437\u0430 \u0441\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435 \u0438\u043b\u0438 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043f\u0440\u043e\u0444\u0438\u043b \u0437\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435.\n* \u041a\u043e\u043c\u0431\u0438\u043d\u0438\u0440\u0430\u0439\u0442\u0435 \u0442\u0430\u0437\u0438 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0441 \u0434\u0440\u0443\u0433\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f, \u0441\u044a\u0431\u0440\u0430\u043d\u0430 \u043f\u0440\u0435\u0434\u0438 \u0442\u043e\u0432\u0430, \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u0435\u043b\u043d\u043e \u043e\u0442 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u0438 \u0443\u0435\u0431\u0441\u0430\u0439\u0442\u043e\u0432\u0435 \u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u0437\u0430 \u0434\u0430 \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u0442\u0435 \u0438\u043b\u0438 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0442\u0435 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043f\u0440\u043e\u0444\u0438\u043b \u0437\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435 \u043f\u0440\u0438 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435.\n"},"6":{"id":6,"name":"\u0418\u0437\u0431\u043e\u0440 \u043d\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435","description":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0412\u0438 \u0431\u044a\u0434\u0435 \u043f\u043e\u043a\u0430\u0437\u0430\u043d\u043e \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b \u0437\u0430 \u0412\u0430\u0441.","descriptionLegal":"\u0417\u0430 \u0438\u0437\u0431\u043e\u0440 \u043d\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u0438\u0437\u0431\u0435\u0440\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043f\u0440\u043e\u0444\u0438\u043b \u0438\u043b\u0438 \u0434\u0440\u0443\u0433\u0438 \u0438\u0441\u0442\u043e\u0440\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f, \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u0435\u043b\u043d\u043e \u043f\u0440\u0435\u0434\u0438\u0448\u043d\u0438 \u0434\u0435\u0439\u043d\u043e\u0441\u0442\u0438, \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u0438, \u043f\u043e\u0441\u0435\u0449\u0435\u043d\u0438\u044f \u0432 \u0441\u0430\u0439\u0442\u043e\u0432\u0435 \u0438\u043b\u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0438\u043b\u0438 \u0434\u0435\u043c\u043e\u0433\u0440\u0430\u0444\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438.\n"},"7":{"id":7,"name":"\u0418\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0435\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438","description":"\u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0442\u0430 \u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u043a\u043e\u0438\u0442\u043e \u0432\u0438\u0436\u0434\u0430\u0442\u0435 \u0438\u043b\u0438 \u0441 \u043a\u043e\u0438\u0442\u043e \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0430\u0442\u0435.","descriptionLegal":"\u0417\u0430 \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0435\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u0438\u0437\u043c\u0435\u0440\u044f\u0442 \u0434\u0430\u043b\u0438 \u0438 \u043a\u0430\u043a \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0441\u0430 \u0431\u0438\u043b\u0438 \u0434\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u0438 \u0438 \u0441\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0430\u043b\u0438 \u0441 \u0434\u0430\u0434\u0435\u043d \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\n* \u0414\u0430 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u044f\u0442 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u0435\u043b\u043d\u043e \u0442\u044f\u0445\u043d\u0430\u0442\u0430 \u0435\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442 \u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\n* \u0414\u0430 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u044f\u0442 \u043e\u0442\u0447\u0435\u0442\u0438 \u0437\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0430\u043b\u0438 \u0441 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439\u043a\u0438 \u0434\u0430\u043d\u043d\u0438, \u043d\u0430\u0431\u043b\u044e\u0434\u0430\u0432\u0430\u043d\u0438 \u0432 \u0445\u043e\u0434\u0430 \u043d\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435\u0442\u043e \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f \u0441 \u0442\u0430\u0437\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0430\n* \u0414\u0430 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u044f\u0442 \u043e\u0442\u0447\u0435\u0442\u0438 \u043d\u0430 \u0438\u0437\u0434\u0430\u0442\u0435\u043b\u0438\u0442\u0435 \u0437\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u043f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0438 \u043d\u0430 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043e\u0441\u0442\u0442\u0430 \u0438\u043c\n* \u0414\u0430 \u0438\u0437\u043c\u0435\u0440\u044f\u0442 \u0434\u0430\u043b\u0438 \u0434\u0430\u0434\u0435\u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0430 \u0435 \u0434\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u0430 \u0432 \u043f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0430 \u0440\u0435\u0434\u0430\u043a\u0446\u0438\u043e\u043d\u043d\u0430 \u0441\u0440\u0435\u0434\u0430 (\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e \u0437\u0430 \u0431\u0440\u0430\u043d\u0434\u0430)\n* \u0414\u0430 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0442 \u0437\u0430 \u043a\u0430\u043a\u044a\u0432 \u043f\u0440\u043e\u0446\u0435\u043d\u0442 \u043e\u0442 \u0440\u0435\u043a\u043b\u0430\u043c\u0430\u0442\u0430 \u0435 \u0438\u043c\u0430\u043b\u043e \u0432\u044a\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442 \u0434\u0430 \u0431\u044a\u0434\u0435 \u0432\u0438\u0434\u044f\u043d, \u043a\u0430\u043a\u0442\u043e \u0438 \u043f\u0440\u043e\u0434\u044a\u043b\u0436\u0438\u0442\u0435\u043b\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0442\u0430\u0437\u0438 \u0432\u044a\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442 \n\u0414\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043d\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u043f\u0440\u0438\u043b\u0430\u0433\u0430\u0442 \u0434\u0430\u043d\u043d\u0438 \u0441\u044a\u0441 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430, \u0438\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0430 \u043e\u0442 \u043f\u0430\u043d\u0435\u043b \u0438\u043b\u0438 \u043f\u043e \u043f\u043e\u0434\u043e\u0431\u0435\u043d \u043d\u0430\u0447\u0438\u043d, \u0441\u043f\u0440\u044f\u043c\u043e \u0434\u0430\u043d\u043d\u0438\u0442\u0435 \u0437\u0430 \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0431\u0435\u0437 \u043e\u0442\u0434\u0435\u043b\u043d\u043e \u043f\u0440\u0430\u0432\u043d\u043e \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0435 \u0437\u0430 \u043f\u0440\u0438\u043b\u0430\u0433\u0430\u043d\u0435 \u043d\u0430 \u043f\u0430\u0437\u0430\u0440\u043d\u0438 \u043f\u0440\u043e\u0443\u0447\u0432\u0430\u043d\u0438\u044f \u0437\u0430 \u0433\u0435\u043d\u0435\u0440\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430.\n"},"8":{"id":8,"name":"\u0418\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e","description":"\u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0442\u0430 \u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e, \u043a\u043e\u0435\u0442\u043e \u0432\u0438\u0436\u0434\u0430\u0442\u0435 \u0438\u043b\u0438 \u0441 \u043a\u043e\u0435\u0442\u043e \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0430\u0442\u0435.","descriptionLegal":"\u0417\u0430 \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e, \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u0442 \u0438 \u0441\u044a\u043e\u0431\u0449\u0430\u0432\u0430\u0442 \u043a\u0430\u043a \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u0435 \u0431\u0438\u043b\u043e \u0434\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u043e \u0438 \u0435 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0430\u043b\u043e \u0441 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438\u0442\u0435.\n* \u0414\u0430 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u044f\u0442 \u043e\u0442\u0447\u0435\u0442\u0438, \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439\u043a\u0438 \u043f\u0440\u044f\u043a\u043e \u0438\u0437\u043c\u0435\u0440\u0438\u043c\u0430 \u0438\u043b\u0438 \u0438\u0437\u0432\u0435\u0441\u0442\u043d\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0430\u043b\u0438 \u0441\u044a\u0441 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e\n\u0414\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043d\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u0442 \u0434\u0430\u043b\u0438 \u0438 \u043f\u043e \u043a\u0430\u043a\u044a\u0432 \u043d\u0430\u0447\u0438\u043d \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 (\u0432\u043a\u043b\u044e\u0447\u0438\u0442\u0435\u043b\u043d\u043e \u043c\u0435\u0441\u0442\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438) \u0441\u0430 \u0431\u0438\u043b\u0438 \u0434\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u0438 \u0438 \u0441\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0430\u043b\u0438 \u0441 \u0434\u0430\u0434\u0435\u043d \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b.\n* \u0414\u0430 \u043f\u0440\u0438\u043b\u0430\u0433\u0430\u0442 \u0434\u0430\u043d\u043d\u0438 \u0441\u044a\u0441 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430, \u0438\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0430 \u043e\u0442 \u043f\u0430\u043d\u0435\u043b \u0438\u043b\u0438 \u043f\u043e \u0441\u0445\u043e\u0434\u0435\u043d \u043d\u0430\u0447\u0438\u043d, \u0441\u043f\u0440\u044f\u043c\u043e \u0434\u0430\u043d\u043d\u0438\u0442\u0435 \u0437\u0430 \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0431\u0435\u0437 \u043f\u0440\u0430\u0432\u043d\u043e \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0435 \u0437\u0430 \u043f\u0440\u0438\u043b\u0430\u0433\u0430\u043d\u0435 \u043d\u0430 \u043f\u0430\u0437\u0430\u0440\u043d\u0438 \u043f\u0440\u043e\u0443\u0447\u0432\u0430\u043d\u0438\u044f \u0437\u0430 \u0433\u0435\u043d\u0435\u0440\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430.\n"},"9":{"id":9,"name":"\u041f\u0440\u0438\u043b\u0430\u0433\u0430\u043d\u0435 \u043d\u0430 \u043f\u0430\u0437\u0430\u0440\u043d\u0438 \u043f\u0440\u043e\u0443\u0447\u0432\u0430\u043d\u0438\u044f \u0437\u0430 \u0433\u0435\u043d\u0435\u0440\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430","description":"\u041f\u0430\u0437\u0430\u0440\u043d\u043e \u043f\u0440\u043e\u0443\u0447\u0432\u0430\u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430, \u0437\u0430 \u0434\u0430 \u0441\u0435 \u043d\u0430\u0443\u0447\u0438 \u043f\u043e\u0432\u0435\u0447\u0435 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430, \u043a\u043e\u044f\u0442\u043e \u043f\u043e\u0441\u0435\u0449\u0430\u0432\u0430 \u0441\u0430\u0439\u0442\u043e\u0432\u0435/\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0438 \u043f\u0440\u0435\u0433\u043b\u0435\u0436\u0434\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438.","descriptionLegal":"\u0417\u0430 \u043f\u0440\u0438\u043b\u0430\u0433\u0430\u043d\u0435 \u043d\u0430 \u043f\u0430\u0437\u0430\u0440\u043d\u0438 \u043f\u0440\u043e\u0443\u0447\u0432\u0430\u043d\u0438\u044f \u0437\u0430 \u0433\u0435\u043d\u0435\u0440\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430, \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u044f\u0442 \u043e\u0431\u043e\u0431\u0449\u0435\u043d\u0438 \u043e\u0442\u0447\u0435\u0442\u0438 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u043e\u0434\u0430\u0442\u0435\u043b\u0438 \u0438\u043b\u0438 \u0442\u0435\u0445\u043d\u0438 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u0438 \u043e\u0442\u043d\u043e\u0441\u043d\u043e \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u0434\u043e \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0434\u043e\u0441\u0442\u0438\u0433\u043d\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438\u043c, \u0447\u0440\u0435\u0437 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430, \u0438\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0430 \u043e\u0442 \u043f\u0430\u043d\u0435\u043b \u0438 \u043f\u043e \u043f\u043e\u0434\u043e\u0431\u0435\u043d \u043d\u0430\u0447\u0438\u043d.\n* \u0414\u0430 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u044f\u0442 \u043e\u0431\u043e\u0431\u0449\u0435\u043d\u0438 \u043e\u0442\u0447\u0435\u0442\u0438 \u043d\u0430 \u0438\u0437\u0434\u0430\u0442\u0435\u043b\u0438\u0442\u0435 \u043e\u0442\u043d\u043e\u0441\u043d\u043e \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u0434\u043e \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u0438 \u0438\u043b\u0438 \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0430\u043b\u0438 \u0441\u044a\u0441 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 \u0438/\u0438\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u043d\u0430 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043e\u0441\u0442\u0442\u0430 \u0438\u043c, \u0447\u0440\u0435\u0437 \u043f\u0440\u0438\u043b\u0430\u0433\u0430\u043d\u0435 \u043d\u0430 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430, \u0438\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0430 \u043e\u0442 \u043f\u0430\u043d\u0435\u043b \u0438 \u043f\u043e \u043f\u043e\u0434\u043e\u0431\u0435\u043d \u043d\u0430\u0447\u0438\u043d. \n* \u0414\u0430 \u0441\u0432\u044a\u0440\u0437\u0432\u0430\u0442 \u043e\u0444\u043b\u0430\u0439\u043d \u0434\u0430\u043d\u043d\u0438 \u0441 \u043e\u043d\u043b\u0430\u0439\u043d \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b \u0437\u0430 \u0446\u0435\u043b\u0438\u0442\u0435 \u043d\u0430 \u043f\u0430\u0437\u0430\u0440\u043d\u043e \u043f\u0440\u043e\u0443\u0447\u0432\u0430\u043d\u0435, \u0437\u0430 \u0434\u0430 \u0433\u0435\u043d\u0435\u0440\u0438\u0440\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430, \u0430\u043a\u043e \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u0441\u0430 \u0434\u0435\u043a\u043b\u0430\u0440\u0438\u0440\u0430\u043b\u0438 \u0434\u0430 \u0441\u044a\u0447\u0435\u0442\u0430\u0432\u0430\u0442 \u0438 \u043a\u043e\u043c\u0431\u0438\u043d\u0438\u0440\u0430\u0442 \u043e\u0444\u043b\u0430\u0439\u043d \u0438\u0437\u0442\u043e\u0447\u043d\u0438\u0446\u0438 \u043d\u0430 \u0434\u0430\u043d\u043d\u0438 (\u0424\u0443\u043d\u043a\u0446\u0438\u044f 1)\n\u0414\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043d\u0435 \u043c\u043e\u0433\u0430\u0442: \n* \u0414\u0430 \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u0442 \u0435\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0442\u0430 \u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u0438 \u043d\u0430 \u0434\u0430\u0434\u0435\u043d \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b \u0438\u043b\u0438, \u0441 \u043a\u043e\u0438\u0442\u043e \u0442\u043e\u0437\u0438 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b \u0435 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0430\u043b, \u0431\u0435\u0437 \u043e\u0442\u0434\u0435\u043b\u043d\u043e \u043f\u0440\u0430\u0432\u043d\u043e \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0435 \u0437\u0430 \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0435\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435.\n* \u0414\u0430 \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u0442 \u043a\u043e\u0435 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 \u0435 \u0434\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u043e \u043d\u0430 \u043a\u043e\u043d\u043a\u0440\u0435\u0442\u0435\u043d \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b \u0438 \u043a\u0430\u043a \u0442\u043e\u0437\u0438 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b \u0435 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0430\u043b \u0441 \u043d\u0435\u0433\u043e, \u0431\u0435\u0437 \u043e\u0442\u0434\u0435\u043b\u043d\u043e \u043f\u0440\u0430\u0432\u043d\u043e \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0435 \u0437\u0430 \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e.\n"},"10":{"id":10,"name":"\u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u043d\u0435 \u0438 \u043f\u043e\u0434\u043e\u0431\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438","description":"\u0412\u0430\u0448\u0438\u0442\u0435 \u0434\u0430\u043d\u043d\u0438 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0437\u0430 \u043f\u043e\u0434\u043e\u0431\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430\u0449\u0438 \u0441\u0438\u0441\u0442\u0435\u043c\u0438 \u0438 \u0441\u043e\u0444\u0442\u0443\u0435\u0440, \u043a\u0430\u043a\u0442\u043e \u0438 \u0437\u0430 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u043d\u043e\u0432\u0438 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438.","descriptionLegal":"\u0417\u0430 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u043d\u043e\u0432\u0438 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438 \u0438 \u043f\u043e\u0434\u043e\u0431\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438, \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f, \u0437\u0430 \u0434\u0430 \u043f\u043e\u0434\u043e\u0431\u0440\u044f\u0442 \u0441\u044a\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430\u0449\u0438\u0442\u0435 \u0441\u0438 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438 \u0441 \u043d\u043e\u0432\u0438 \u0444\u0443\u043d\u043a\u0446\u0438\u0438 \u0438 \u0434\u0430 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u044f\u0442 \u043d\u043e\u0432\u0438 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438\n* \u0414\u0430 \u0441\u044a\u0437\u0434\u0430\u0432\u0430\u0442 \u043d\u043e\u0432\u0438 \u043c\u043e\u0434\u0435\u043b\u0438 \u0438 \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u0438 \u0447\u0440\u0435\u0437 \u043c\u0430\u0448\u0438\u043d\u043d\u043e \u043e\u0431\u0443\u0447\u0435\u043d\u0438\u0435\n\u0414\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043d\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u0438\u0437\u0432\u044a\u0440\u0448\u0432\u0430\u0442 \u0434\u0440\u0443\u0433\u0430 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044f \u0437\u0430 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u0434\u0430\u043d\u043d\u0438, \u043f\u043e\u0437\u0432\u043e\u043b\u0435\u043d\u0430 \u043e\u0442 \u0434\u0440\u0443\u0433\u0430 \u0446\u0435\u043b, \u0432 \u0440\u0430\u043c\u043a\u0438\u0442\u0435 \u043d\u0430 \u0442\u0430\u0437\u0438 \u0446\u0435\u043b\n"}},"specialPurposes":{"1":{"id":1,"name":"\u0413\u0430\u0440\u0430\u043d\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u0438\u0433\u0443\u0440\u043d\u043e\u0441\u0442\u0442\u0430, \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0442\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u043c\u0430\u043c\u0438 \u0438 \u043e\u0442\u0441\u0442\u0440\u0430\u043d\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0433\u0440\u0435\u0448\u043a\u0438","description":"\u0412\u0430\u0448\u0438\u0442\u0435 \u0434\u0430\u043d\u043d\u0438 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0437\u0430 \u043d\u0430\u0431\u043b\u044e\u0434\u0435\u043d\u0438\u0435 \u0438 \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0442\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u043c\u0430\u043c\u043d\u0438 \u0434\u0435\u0439\u043d\u043e\u0441\u0442\u0438, \u043a\u0430\u043a\u0442\u043e \u0438 \u0437\u0430 \u043e\u0441\u0438\u0433\u0443\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u0430\u0432\u0438\u043b\u043d\u043e\u0442\u043e \u0438 \u043d\u0430\u0434\u0435\u0436\u0434\u043d\u043e \u0444\u0443\u043d\u043a\u0446\u0438\u043e\u043d\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0438\u0442\u0435 \u0438 \u043f\u0440\u043e\u0446\u0435\u0441\u0438\u0442\u0435.","descriptionLegal":"\u0417\u0430 \u0433\u0430\u0440\u0430\u043d\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u0438\u0433\u0443\u0440\u043d\u043e\u0441\u0442\u0442\u0430, \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0442\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u043c\u0430\u043c\u0438 \u0438 \u043e\u0442\u0441\u0442\u0440\u0430\u043d\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0433\u0440\u0435\u0448\u043a\u0438, \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u043e\u0441\u0438\u0433\u0443\u0440\u044f\u0432\u0430\u0442 \u043d\u0430\u0434\u0435\u0436\u0434\u043d\u043e \u043f\u0440\u0435\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u0434\u0430\u043d\u043d\u0438\u0442\u0435 \n* \u0414\u0430 \u043e\u0442\u043a\u0440\u0438\u0432\u0430\u0442 \u0438 \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0442\u044f\u0432\u0430\u0442 \u0437\u043b\u043e\u043d\u0430\u043c\u0435\u0440\u0435\u043d\u0438, \u0438\u0437\u043c\u0430\u043c\u043d\u0438, \u043d\u0435\u0432\u0430\u043b\u0438\u0434\u043d\u0438 \u0438\u043b\u0438 \u043d\u0435\u0437\u0430\u043a\u043e\u043d\u043d\u0438 \u0434\u0435\u0439\u043d\u043e\u0441\u0442\u0438\n* \u0414\u0430 \u043e\u0441\u0438\u0433\u0443\u0440\u044f\u0432\u0430\u0442 \u043f\u0440\u0430\u0432\u0438\u043b\u043d\u0430 \u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u0430 \u0440\u0430\u0431\u043e\u0442\u0430 \u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0438\u0442\u0435 \u0438 \u043f\u0440\u043e\u0446\u0435\u0441\u0438\u0442\u0435, \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u0435\u043b\u043d\u043e \u043d\u0430\u0431\u043b\u044e\u0434\u0435\u043d\u0438\u0435 \u0438 \u043f\u043e\u0434\u043e\u0431\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0435\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0438\u0442\u0435 \u0438 \u043f\u0440\u043e\u0446\u0435\u0441\u0438\u0442\u0435, \u0430\u043d\u0433\u0430\u0436\u0438\u0440\u0430\u043d\u0438 \u0441 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438 \u0446\u0435\u043b\u0438\n\u0414\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043d\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u0438\u0437\u0432\u044a\u0440\u0448\u0432\u0430\u0442 \u0432\u0441\u044f\u043a\u0430 \u0434\u0440\u0443\u0433\u0430 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044f \u0437\u0430 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u0434\u0430\u043d\u043d\u0438, \u043f\u043e\u0437\u0432\u043e\u043b\u0435\u043d\u0430 \u043e\u0442 \u0434\u0440\u0443\u0433\u0430 \u0446\u0435\u043b, \u0432 \u0440\u0430\u043c\u043a\u0438\u0442\u0435 \u043d\u0430 \u0442\u0430\u0437\u0438 \u0446\u0435\u043b.\n\u0417\u0430\u0431\u0435\u043b\u0435\u0436\u043a\u0430: \u0414\u0430\u043d\u043d\u0438\u0442\u0435, \u0441\u044a\u0431\u0438\u0440\u0430\u043d\u0438 \u0438 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0438 \u0437\u0430 \u0433\u0430\u0440\u0430\u043d\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u0438\u0433\u0443\u0440\u043d\u043e\u0441\u0442\u0442\u0430, \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0442\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u043c\u0430\u043c\u0438 \u0438 \u043e\u0442\u0441\u0442\u0440\u0430\u043d\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0433\u0440\u0435\u0448\u043a\u0438, \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0432\u043a\u043b\u044e\u0447\u0432\u0430\u0442 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u043d\u0438 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e\u0442\u043e \u0437\u0430 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f, \u0442\u043e\u0447\u043d\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0441\u043a\u043e \u043f\u043e\u0437\u0438\u0446\u0438\u043e\u043d\u0438\u0440\u0430\u043d\u0435, \u043a\u0430\u043a\u0442\u043e \u0438 \u0434\u0430\u043d\u043d\u0438, \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438 \u0447\u0440\u0435\u0437 \u0430\u043a\u0442\u0438\u0432\u043d\u043e \u0441\u043a\u0430\u043d\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438\u0442\u0435 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e\u0442\u043e \u0437\u0430 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f, \u0431\u0435\u0437 \u043e\u0442\u0434\u0435\u043b\u043d\u043e \u0440\u0430\u0437\u043a\u0440\u0438\u0432\u0430\u043d\u0435 \u0438/\u0438\u043b\u0438 \u0444\u0443\u043d\u043a\u0446\u0438\u044f \u0437\u0430 \u0432\u043a\u043b\u044e\u0447\u0432\u0430\u043d\u0435.\n"},"2":{"id":2,"name":"\u0422\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u043e \u0434\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438\u043b\u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435","description":"\u0412\u0430\u0448\u0435\u0442\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e \u043c\u043e\u0436\u0435 \u0434\u0430 \u043f\u043e\u043b\u0443\u0447\u0430\u0432\u0430 \u0438 \u0438\u0437\u043f\u0440\u0430\u0449\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f, \u043a\u043e\u044f\u0442\u043e \u0412\u0438 \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u0432\u0430 \u0434\u0430 \u0432\u0438\u0436\u0434\u0430\u0442\u0435 \u0438 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0430\u0442\u0435 \u0441 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435.","descriptionLegal":"\u0417\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0438 \u043e\u0442\u0433\u043e\u0432\u0430\u0440\u044f\u043d\u0435 \u043d\u0430 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438 \u0437\u0430\u044f\u0432\u043a\u0438, \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 IP \u0430\u0434\u0440\u0435\u0441\u0430 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f \u0437\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0430 \u043f\u043e \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\n* \u0414\u0430 \u043e\u0442\u0433\u043e\u0432\u0430\u0440\u044f\u0442 \u043d\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f \u0441 \u0440\u0435\u043a\u043b\u0430\u043c\u0430 \u0447\u0440\u0435\u0437 \u0438\u0437\u043f\u0440\u0430\u0449\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f \u0434\u043e \u0446\u0435\u043b\u0435\u0432\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430\n* \u0414\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 IP \u0430\u0434\u0440\u0435\u0441\u0430 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f \u0437\u0430 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 \u043f\u043e \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\n* \u0414\u0430 \u043e\u0442\u0433\u043e\u0432\u0430\u0440\u044f\u0442 \u043d\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435\u0442\u043e \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f \u0441\u044a\u0441 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u0447\u0440\u0435\u0437 \u0438\u0437\u043f\u0440\u0430\u0449\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f \u0434\u043e \u0446\u0435\u043b\u0435\u0432\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430\n* \u0414\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u0442\u0438\u043f\u0430 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e\u0442\u043e \u0438 \u0432\u044a\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438\u0442\u0435 \u0437\u0430 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438\u043b\u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440 \u0437\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u043f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u044f \u0440\u0430\u0437\u043c\u0435\u0440 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 \u0438\u043b\u0438 \u0432\u0438\u0434\u0435\u043e\u0444\u0430\u0439\u043b \u0432\u044a\u0432 \u0444\u043e\u0440\u043c\u0430\u0442, \u043f\u043e\u0434\u0434\u044a\u0440\u0436\u0430\u043d \u043e\u0442 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e\u0442\u043e\n\u0414\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043d\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u0438\u0437\u0432\u044a\u0440\u0448\u0432\u0430\u0442 \u0434\u0440\u0443\u0433\u0430 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044f \u0437\u0430 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u0434\u0430\u043d\u043d\u0438, \u043f\u043e\u0437\u0432\u043e\u043b\u0435\u043d\u0430 \u043e\u0442 \u0434\u0440\u0443\u0433\u0430 \u0446\u0435\u043b, \u0432 \u0440\u0430\u043c\u043a\u0438\u0442\u0435 \u043d\u0430 \u0442\u0430\u0437\u0438 \u0446\u0435\u043b\n"}},"features":{"1":{"id":1,"name":"\u0421\u044a\u0447\u0435\u0442\u0430\u0432\u0430\u043d\u0435 \u0438 \u043a\u043e\u043c\u0431\u0438\u043d\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u0442\u043e\u0447\u043d\u0438\u0446\u0438 \u043d\u0430 \u0434\u0430\u043d\u043d\u0438 \u043e\u0444\u043b\u0430\u0439\u043d","description":"\u0414\u0430\u043d\u043d\u0438 \u043e\u0442 \u0438\u0437\u0442\u043e\u0447\u043d\u0438\u0446\u0438 \u043d\u0430 \u0434\u0430\u043d\u043d\u0438 \u043e\u0444\u043b\u0430\u0439\u043d \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u043a\u043e\u043c\u0431\u0438\u043d\u0438\u0440\u0430\u0442 \u0441 \u0412\u0430\u0448\u0430\u0442\u0430 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442 \u043e\u043d\u043b\u0430\u0439\u043d \u0432 \u043f\u043e\u0434\u043a\u0440\u0435\u043f\u0430 \u043d\u0430 \u0435\u0434\u043d\u0430 \u0438\u043b\u0438 \u043f\u043e\u0432\u0435\u0447\u0435 \u0446\u0435\u043b\u0438.","descriptionLegal":"\u0414\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442: \n* \u0414\u0430 \u043a\u043e\u043c\u0431\u0438\u043d\u0438\u0440\u0430\u0442 \u0434\u0430\u043d\u043d\u0438, \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438 \u043e\u0444\u043b\u0430\u0439\u043d, \u0441 \u0434\u0430\u043d\u043d\u0438, \u0441\u044a\u0431\u0440\u0430\u043d\u0438 \u043e\u043d\u043b\u0430\u0439\u043d, \u0432 \u043f\u043e\u0434\u043a\u0440\u0435\u043f\u0430 \u043d\u0430 \u0435\u0434\u043d\u0430 \u0438\u043b\u0438 \u043f\u043e\u0432\u0435\u0447\u0435 \u0446\u0435\u043b\u0438 \u0438\u043b\u0438 \u0437\u0430 \u0441\u043f\u0435\u0446\u0438\u0430\u043b\u043d\u0438 \u0446\u0435\u043b\u0438.\n"},"2":{"id":2,"name":"\u0421\u0432\u044a\u0440\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430","description":"\u0420\u0430\u0437\u043b\u0438\u0447\u043d\u0438\u0442\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438 \u043a\u0430\u0442\u043e \u043f\u0440\u0438\u043d\u0430\u0434\u043b\u0435\u0436\u0430\u0449\u0438 \u043d\u0430 \u0412\u0430\u0441 \u0438\u043b\u0438 \u043d\u0430 \u0412\u0430\u0448\u0435\u0442\u043e \u0434\u043e\u043c\u0430\u043a\u0438\u043d\u0441\u0442\u0432\u043e \u0432 \u043f\u043e\u0434\u043a\u0440\u0435\u043f\u0430 \u043d\u0430 \u0435\u0434\u043d\u0430 \u0438\u043b\u0438 \u043f\u043e\u0432\u0435\u0447\u0435 \u043e\u0442 \u0446\u0435\u043b\u0438\u0442\u0435.","descriptionLegal":"\u0414\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0447\u043d\u043e \u0434\u0430 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0442, \u0447\u0435 \u0434\u0432\u0435 \u0438\u043b\u0438 \u043f\u043e\u0432\u0435\u0447\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u043f\u0440\u0438\u043d\u0430\u0434\u043b\u0435\u0436\u0430\u0442 \u043d\u0430 \u0435\u0434\u0438\u043d \u0438 \u0441\u044a\u0449 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b \u0438\u043b\u0438 \u0434\u043e\u043c\u0430\u043a\u0438\u043d\u0441\u0442\u0432\u043e\n* \u0412\u0435\u0440\u043e\u044f\u0442\u043d\u043e\u0441\u0442\u043d\u043e \u0434\u0430 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0442, \u0447\u0435 \u0434\u0432\u0435 \u0438\u043b\u0438 \u043f\u043e\u0432\u0435\u0447\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u043f\u0440\u0438\u043d\u0430\u0434\u043b\u0435\u0436\u0430\u0442 \u043d\u0430 \u0435\u0434\u0438\u043d \u0438 \u0441\u044a\u0449 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b \u0438\u043b\u0438 \u0434\u043e\u043c\u0430\u043a\u0438\u043d\u0441\u0442\u0432\u043e\n* \u0410\u043a\u0442\u0438\u0432\u043d\u043e \u0434\u0430 \u0441\u043a\u0430\u043d\u0438\u0440\u0430\u0442 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e\u0442\u043e \u0437\u0430 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f \u043d\u0430 \u0432\u0435\u0440\u043e\u044f\u0442\u043d\u043e\u0441\u0442\u043d\u0430 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f, \u0430\u043a\u043e \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438\u0442\u0435 \u0441\u0430 \u043f\u043e\u0437\u0432\u043e\u043b\u0438\u043b\u0438 \u043d\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u0434\u0430 \u0441\u043a\u0430\u043d\u0438\u0440\u0430\u0442 \u0430\u043a\u0442\u0438\u0432\u043d\u043e \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e\u0442\u043e \u0437\u0430 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f (\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u043d\u0430 \u0424\u0443\u043d\u043a\u0446\u0438\u044f 2)\n"},"3":{"id":3,"name":"\u041f\u043e\u043b\u0443\u0447\u0430\u0432\u0430\u043d\u0435 \u0438 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u043d\u0438 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e\u0442\u043e \u0437\u0430 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f","description":"\u0412\u0430\u0448\u0435\u0442\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0440\u0430\u0437\u0433\u0440\u0430\u043d\u0438\u0447\u0438 \u043e\u0442 \u0434\u0440\u0443\u0433\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f\u0442\u0430, \u043a\u043e\u044f\u0442\u043e \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u0438\u0437\u043f\u0440\u0430\u0449\u0430, \u043a\u0430\u0442\u043e \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440 IP \u0430\u0434\u0440\u0435\u0441 \u0438\u043b\u0438 \u0442\u0438\u043f \u043d\u0430 \u0431\u0440\u0430\u0443\u0437\u044a\u0440\u0430.","descriptionLegal":"\u0414\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u0441\u044a\u0437\u0434\u0430\u0432\u0430\u0442 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0447\u0440\u0435\u0437 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u0441\u044a\u0431\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0434\u0430\u043d\u043d\u0438 \u043e\u0442 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e \u043d\u0430 \u0441\u043f\u0435\u0446\u0438\u0444\u0438\u0447\u043d\u0438 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440 IP \u0430\u0434\u0440\u0435\u0441, \u0441\u0442\u0440\u0438\u043d\u0433 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438\u044f \u0430\u0433\u0435\u043d\u0442.\n* \u0414\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0442\u0430\u043a\u044a\u0432 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043f\u0440\u0438 \u043e\u043f\u0438\u0442 \u0437\u0430 \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u0446\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e.\n\u0414\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043d\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u0441\u044a\u0437\u0434\u0430\u0432\u0430\u0442 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0447\u0440\u0435\u0437 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0434\u0430\u043d\u043d\u0438, \u0441\u044a\u0431\u0440\u0430\u043d\u0438 \u0447\u0440\u0435\u0437 \u0430\u043a\u0442\u0438\u0432\u043d\u043e \u0441\u043a\u0430\u043d\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e \u0437\u0430 \u0441\u043f\u0435\u0446\u0438\u0444\u0438\u0447\u043d\u0438 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440 \u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0438 \u0448\u0440\u0438\u0444\u0442\u043e\u0432\u0435 \u0438\u043b\u0438 \u0440\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u0435\u043b\u043d\u0430 \u0441\u043f\u043e\u0441\u043e\u0431\u043d\u043e\u0441\u0442 \u043d\u0430 \u0435\u043a\u0440\u0430\u043d\u0430, \u0431\u0435\u0437 \u043e\u0442\u0434\u0435\u043b\u043d\u0430 \u0444\u0443\u043d\u043a\u0446\u0438\u044f \u0437\u0430 \u0432\u043a\u043b\u044e\u0447\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438\u0442\u0435 \u0437\u0430 \u0430\u043a\u0442\u0438\u0432\u043d\u043e \u0441\u043a\u0430\u043d\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438\u0442\u0435 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e\u0442\u043e \u0437\u0430 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f.\n* \u0414\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0442\u0430\u043a\u044a\u0432 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0437\u0430 \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u0446\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e.\n"}},"specialFeatures":{"1":{"id":1,"name":"\u0418\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0442\u043e\u0447\u043d\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0441\u043a\u043e \u043f\u043e\u0437\u0438\u0446\u0438\u043e\u043d\u0438\u0440\u0430\u043d\u0435","description":"\u0412\u0430\u0448\u0438\u0442\u0435 \u0442\u043e\u0447\u043d\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0441\u043a\u043e \u043f\u043e\u0437\u0438\u0446\u0438\u043e\u043d\u0438\u0440\u0430\u043d\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0432 \u043f\u043e\u0434\u043a\u0440\u0435\u043f\u0430 \u043d\u0430 \u0435\u0434\u043d\u0430 \u0438\u043b\u0438 \u043f\u043e\u0432\u0435\u0447\u0435 \u0446\u0435\u043b\u0438. \u0422\u043e\u0432\u0430 \u043e\u0437\u043d\u0430\u0447\u0430\u0432\u0430, \u0447\u0435 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u0442\u043e \u0412\u0438 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u0441 \u0442\u043e\u0447\u043d\u043e\u0441\u0442 \u0432 \u0440\u0430\u043c\u043a\u0438\u0442\u0435 \u043d\u0430 \u043d\u044f\u043a\u043e\u043b\u043a\u043e \u043c\u0435\u0442\u0440\u0430.","descriptionLegal":"\u0414\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u0441\u044a\u0431\u0438\u0440\u0430\u0442 \u0438 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u0442 \u0442\u043e\u0447\u043d\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0441\u043a\u043e \u043f\u043e\u0437\u0438\u0446\u0438\u043e\u043d\u0438\u0440\u0430\u043d\u0435 \u0432 \u043f\u043e\u0434\u043a\u0440\u0435\u043f\u0430 \u043d\u0430 \u0435\u0434\u043d\u0430 \u0438\u043b\u0438 \u043f\u043e\u0432\u0435\u0447\u0435 \u0446\u0435\u043b\u0438.\n\u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435: \u0442\u043e\u0447\u043d\u043e \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0441\u043a\u043e \u043f\u043e\u0437\u0438\u0446\u0438\u043e\u043d\u0438\u0440\u0430\u043d\u0435 \u043e\u0437\u043d\u0430\u0447\u0430\u0432\u0430, \u0447\u0435 \u043d\u044f\u043c\u0430 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f \u0437\u0430 \u0442\u043e\u0447\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u0442\u043e \u043d\u0430 \u0434\u0430\u0434\u0435\u043d \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b; \u0422\u043e\u0432\u0430 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u0441 \u0442\u043e\u0447\u043d\u043e\u0441\u0442 \u0432 \u0440\u0430\u043c\u043a\u0438\u0442\u0435 \u043d\u0430 \u043d\u044f\u043a\u043e\u043b\u043a\u043e \u043c\u0435\u0442\u0440\u0430.\n"},"2":{"id":2,"name":"\u0410\u043a\u0442\u0438\u0432\u043d\u043e \u0441\u043a\u0430\u043d\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438\u0442\u0435 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e\u0442\u043e \u0437\u0430 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f","description":"\u0412\u0430\u0448\u0435\u0442\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u0446\u0438\u0440\u0430\u043d\u043e \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u0441\u043a\u0430\u043d\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0443\u043d\u0438\u043a\u0430\u043b\u043d\u0430\u0442\u0430 \u043a\u043e\u043c\u0431\u0438\u043d\u0430\u0446\u0438\u044f \u043e\u0442 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438 \u043d\u0430 \u0412\u0430\u0448\u0435\u0442\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e.","descriptionLegal":"\u0414\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u0441\u044a\u0437\u0434\u0430\u0432\u0430\u0442 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0447\u0440\u0435\u0437 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0434\u0430\u043d\u043d\u0438, \u0441\u044a\u0431\u0440\u0430\u043d\u0438 \u0447\u0440\u0435\u0437 \u0430\u043a\u0442\u0438\u0432\u043d\u043e \u0441\u043a\u0430\u043d\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e \u0437\u0430 \u0441\u043f\u0435\u0446\u0438\u0444\u0438\u0447\u043d\u0438 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440 \u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0438 \u0448\u0440\u0438\u0444\u0442\u043e\u0432\u0435 \u0438\u043b\u0438 \u0440\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u0435\u043b\u043d\u0430 \u0441\u043f\u043e\u0441\u043e\u0431\u043d\u043e\u0441\u0442 \u043d\u0430 \u0435\u043a\u0440\u0430\u043d\u0430. \n* \u0414\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0442\u0430\u043a\u044a\u0432 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0437\u0430 \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u0446\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"\u0422\u043e\u0447\u043d\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0441\u043a\u043e \u043f\u043e\u0437\u0438\u0446\u0438\u043e\u043d\u0438\u0440\u0430\u043d\u0435 \u0438 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f \u0447\u0440\u0435\u0437 \u0441\u043a\u0430\u043d\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430","description":"\u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430 \u0442\u043e\u0447\u043d\u043e \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0441\u043a\u043e \u043f\u043e\u0437\u0438\u0446\u0438\u043e\u043d\u0438\u0440\u0430\u043d\u0435 \u0438 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438\u0442\u0435 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e\u0442\u043e."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"\u041e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435","description":"\u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0434\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438. \u0415\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u0438\u0437\u043c\u0435\u0440\u0435\u043d\u0430."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"\u041e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435","description":"\u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0434\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438. \u0415\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u0438\u0437\u043c\u0435\u0440\u0435\u043d\u0430. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"\u041e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u043f\u0440\u043e\u0444\u0438\u043b \u0437\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435","description":"\u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0434\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435. \u0415\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u0438\u0437\u043c\u0435\u0440\u0435\u043d\u0430."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u0438 \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u0415\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u0438\u0437\u043c\u0435\u0440\u0435\u043d\u0430."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u0415\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u0438\u0437\u043c\u0435\u0440\u0435\u043d\u0430. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435. \u0415\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u0438\u0437\u043c\u0435\u0440\u0435\u043d\u0430."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435. \u0415\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u0438\u0437\u043c\u0435\u0440\u0435\u043d\u0430. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"\u041f\u0440\u043e\u0444\u0438\u043b \u0438 \u043f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435","description":"\u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 \u0438 \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e","description":"\u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e","description":"\u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 \u0438 \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e","description":"\u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u0438 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430","description":"\u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e, \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438","description":"\u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u0414\u0430\u043d\u043d\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0438\u043b\u0438 \u043f\u043e\u0434\u043e\u0431\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043e\u043f\u0438\u0442, \u0441\u0438\u0441\u0442\u0435\u043c\u0438 \u0438 \u0441\u043e\u0444\u0442\u0443\u0435\u0440"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"\u0418\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0438 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430","description":"\u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"\u0418\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435","description":"\u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"\u0418\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u044f\u0442. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"\u0418\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438","description":"\u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u0414\u0430\u043d\u043d\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0438\u043b\u0438 \u043f\u043e\u0434\u043e\u0431\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043e\u043f\u0438\u0442, \u0441\u0438\u0441\u0442\u0435\u043c\u0438 \u0438 \u0441\u043e\u0444\u0442\u0443\u0435\u0440. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"\u0418\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e, \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438.","description":"\u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u0414\u0430\u043d\u043d\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0438\u043b\u0438 \u043f\u043e\u0434\u043e\u0431\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043e\u043f\u0438\u0442, \u0441\u0438\u0441\u0442\u0435\u043c\u0438 \u0438 \u0441\u043e\u0444\u0442\u0443\u0435\u0440."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"\u0418\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438","description":"\u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u0414\u0430\u043d\u043d\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0438\u043b\u0438 \u043f\u043e\u0434\u043e\u0431\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043e\u043f\u0438\u0442, \u0441\u0438\u0441\u0442\u0435\u043c\u0438 \u0438 \u0441\u043e\u0444\u0442\u0443\u0435\u0440."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 \u0438 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e.\u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u0414\u0430\u043d\u043d\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0438\u043b\u0438 \u043f\u043e\u0434\u043e\u0431\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043e\u043f\u0438\u0442, \u0441\u0438\u0441\u0442\u0435\u043c\u0438 \u0438 \u0441\u043e\u0444\u0442\u0443\u0435\u0440."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 \u0438 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u043f\u0440\u043e\u0444\u0438\u043b \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435","description":"\u0417\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"\u041e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 \u0438 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430","description":"\u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0434\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u043f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 \u0438 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"\u041e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 \u0438 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430","description":"\u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0434\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438. \u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"\u041e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438","description":"\u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0434\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438. \u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u0414\u0430\u043d\u043d\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0438\u043b\u0438 \u043f\u043e\u0434\u043e\u0431\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043e\u043f\u0438\u0442, \u0441\u0438\u0441\u0442\u0435\u043c\u0438 \u0438 \u0441\u043e\u0444\u0442\u0443\u0435\u0440."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"\u041e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u0438 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430","description":"\u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0434\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438. \u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"\u041e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e, \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438","description":"\u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0434\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438. \u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u0414\u0430\u043d\u043d\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0438\u043b\u0438 \u043f\u043e\u0434\u043e\u0431\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043e\u043f\u0438\u0442, \u0441\u0438\u0441\u0442\u0435\u043c\u0438 \u0438 \u0441\u043e\u0444\u0442\u0443\u0435\u0440."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"\u041e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 \u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438","description":"\u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0434\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438. \u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u0415\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u0438\u0437\u043c\u0435\u0440\u0435\u043d\u0430."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"\u041e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438","description":"\u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0434\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438. \u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u0415\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u0438\u0437\u043c\u0435\u0440\u0435\u043d\u0430. \u0414\u0430\u043d\u043d\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0438\u043b\u0438 \u043f\u043e\u0434\u043e\u0431\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043e\u043f\u0438\u0442, \u0441\u0438\u0441\u0442\u0435\u043c\u0438 \u0438 \u0441\u043e\u0444\u0442\u0443\u0435\u0440."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435. \u0415\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u0438\u0437\u043c\u0435\u0440\u0435\u043d\u0430. \u0414\u0430\u043d\u043d\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0438\u043b\u0438 \u043f\u043e\u0434\u043e\u0431\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043e\u043f\u0438\u0442, \u0441\u0438\u0441\u0442\u0435\u043c\u0438 \u0438 \u0441\u043e\u0444\u0442\u0443\u0435\u0440."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e, \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438.","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435. \u0415\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u0438\u0437\u043c\u0435\u0440\u0435\u043d\u0430. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u0414\u0430\u043d\u043d\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0438\u043b\u0438 \u043f\u043e\u0434\u043e\u0431\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043e\u043f\u0438\u0442, \u0441\u0438\u0441\u0442\u0435\u043c\u0438 \u0438 \u0441\u043e\u0444\u0442\u0443\u0435\u0440."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u043f\u043e\u043b\u0443\u0447\u0430\u0442 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u0414\u0430\u043d\u043d\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0438\u043b\u0438 \u043f\u043e\u0434\u043e\u0431\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043e\u043f\u0438\u0442, \u0441\u0438\u0441\u0442\u0435\u043c\u0438 \u0438 \u0441\u043e\u0444\u0442\u0443\u0435\u0440."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u043f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u043f\u043e\u043b\u0443\u0447\u0430\u0442 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u0414\u0430\u043d\u043d\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0438\u043b\u0438 \u043f\u043e\u0434\u043e\u0431\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043e\u043f\u0438\u0442, \u0441\u0438\u0441\u0442\u0435\u043c\u0438 \u0438 \u0441\u043e\u0444\u0442\u0443\u0435\u0440."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u043f\u043e\u043b\u0443\u0447\u0430\u0442 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u0414\u0430\u043d\u043d\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0438\u043b\u0438 \u043f\u043e\u0434\u043e\u0431\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043e\u043f\u0438\u0442, \u0441\u0438\u0441\u0442\u0435\u043c\u0438 \u0438 \u0441\u043e\u0444\u0442\u0443\u0435\u0440."}}} \ No newline at end of file +{"vendorListVersion":94,"lastUpdated":"2021-06-10T16:43:53Z","purposes":{"1":{"id":1,"name":"\u0421\u044a\u0445\u0440\u0430\u043d\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0438/\u0438\u043b\u0438 \u0434\u043e\u0441\u0442\u044a\u043f \u0434\u043e \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e","description":"\u0411\u0438\u0441\u043a\u0432\u0438\u0442\u043a\u0438, \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u0438 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0438\u043b\u0438 \u0434\u0440\u0443\u0433\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0441\u044a\u0445\u0440\u0430\u043d\u0435\u043d\u0438 \u0438\u043b\u0438 \u0434\u043e\u0441\u0442\u044a\u043f\u043d\u0438 \u043d\u0430 \u0412\u0430\u0448\u0435\u0442\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e \u0437\u0430 \u0446\u0435\u043b\u0438\u0442\u0435, \u0437\u0430 \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0412\u0438 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0435\u043d\u0438.","descriptionLegal":"\u0414\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u0441\u044a\u0445\u0440\u0430\u043d\u044f\u0432\u0430\u0442 \u0438 \u0434\u0430 \u0438\u043c\u0430\u0442 \u0434\u043e\u0441\u0442\u044a\u043f \u0434\u043e \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e, \u043a\u0430\u0442\u043e \u201e\u0431\u0438\u0441\u043a\u0432\u0438\u0442\u043a\u0438\u201c \u0438 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u0438 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0435\u043d\u0438 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f.\n"},"2":{"id":2,"name":"\u0418\u0437\u0431\u043e\u0440 \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u0438 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0412\u0438 \u0431\u044a\u0434\u0430\u0442 \u043f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e, \u043a\u043e\u0435\u0442\u043e \u0440\u0430\u0437\u0433\u043b\u0435\u0436\u0434\u0430\u0442\u0435, \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u0442\u043e, \u043a\u043e\u0435\u0442\u043e \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435, \u043f\u0440\u0438\u0431\u043b\u0438\u0437\u0438\u0442\u0435\u043b\u043d\u043e\u0442\u043e \u0412\u0438 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0438\u043b\u0438 \u0412\u0430\u0448\u0438\u044f \u0442\u0438\u043f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e.","descriptionLegal":"\u0417\u0430 \u0434\u0430 \u043d\u0430\u043f\u0440\u0430\u0432\u044f\u0442 \u0438\u0437\u0431\u043e\u0440 \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0432 \u0440\u0435\u0430\u043b\u043d\u043e \u0432\u0440\u0435\u043c\u0435 \u0437\u0430 \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442\u0430, \u0432 \u043a\u043e\u0439\u0442\u043e \u0449\u0435 \u0441\u0435 \u043f\u043e\u043a\u0430\u0437\u0432\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0430\u0442\u0430, \u0437\u0430 \u0434\u0430 \u0441\u0435 \u043f\u043e\u043a\u0430\u0437\u0432\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0430\u0442\u0430, \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u0435\u043b\u043d\u043e \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e\u0442\u043e, \u043a\u0430\u0442\u043e \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440: \u0442\u0438\u043f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e \u0438 \u0432\u044a\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438, \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u0430\u0433\u0435\u043d\u0442, URL \u0430\u0434\u0440\u0435\u0441, IP \u0430\u0434\u0440\u0435\u0441 \n* \u0414\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u043d\u0435\u0442\u043e\u0447\u043d\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0441\u043a\u043e \u043f\u043e\u0437\u0438\u0446\u0438\u043e\u043d\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f\n* \u0414\u0430 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u0438\u0440\u0430\u0442 \u0447\u0435\u0441\u0442\u043e\u0442\u0430\u0442\u0430 \u043d\u0430 \u043f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0438\u0442\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f \u0440\u0435\u043a\u043b\u0430\u043c\u0438\n* \u0414\u0430 \u0441\u043b\u0435\u0434\u0432\u0430\u0442 \u043f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u043d\u043e\u0441\u0442\u0442\u0430, \u0432 \u043a\u043e\u044f\u0442\u043e \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0441\u0435 \u043f\u043e\u043a\u0430\u0437\u0432\u0430\u0442 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f\n* \u0414\u0430 \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0442\u044f\u0432\u0430\u0442 \u043f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0430 \u0432 \u043d\u0435\u043f\u043e\u0434\u0445\u043e\u0434\u044f\u0449 \u0440\u0435\u0434\u0430\u043a\u0446\u0438\u043e\u043d\u0435\u043d \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442 (\u043d\u0435\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u0435\u043d \u0437\u0430 \u0431\u0440\u0430\u043d\u0434\u0430)\n\u0414\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043d\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u0441\u044a\u0437\u0434\u0430\u0432\u0430\u0442 \u043f\u0440\u043e\u0444\u0438\u043b \u0437\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u043a\u0430\u0442\u043e \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430 \u0442\u0430\u0437\u0438 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u0438\u0437\u0431\u043e\u0440\u0430 \u043d\u0430 \u0431\u044a\u0434\u0435\u0449\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u0431\u0435\u0437 \u0434\u0430 \u0435 \u043d\u0430\u043b\u0438\u0446\u0435 \u043e\u0442\u0434\u0435\u043b\u043d\u043e \u043f\u0440\u0430\u0432\u043d\u043e \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0435 \u0437\u0430 \u0441\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b \u0437\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438.\n\u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435: \u041d\u0435\u0442\u043e\u0447\u043d\u043e \u043e\u0437\u043d\u0430\u0447\u0430\u0432\u0430, \u0447\u0435 \u0435 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u043e \u0441\u0430\u043c\u043e \u043f\u0440\u0438\u0431\u043b\u0438\u0437\u0438\u0442\u0435\u043b\u043d\u043e \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435, \u0432\u043a\u043b\u044e\u0447\u0432\u0430\u0449\u043e \u043d\u0430\u0439-\u043c\u0430\u043b\u043a\u043e \u0440\u0430\u0434\u0438\u0443\u0441 \u043e\u0442 500 \u043c\u0435\u0442\u0440\u0430.\n"},"3":{"id":3,"name":"\u0421\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b \u0437\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438","description":"\u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u0438 \u043f\u0440\u043e\u0444\u0438\u043b \u0437\u0430 \u0412\u0430\u0441 \u0438 \u0412\u0430\u0448\u0438\u0442\u0435 \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u0438, \u0437\u0430 \u0434\u0430 \u0412\u0438 \u043f\u043e\u043a\u0430\u0437\u0432\u0430\u043c\u0435 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u043f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438 \u0437\u0430 \u0412\u0430\u0441.","descriptionLegal":"\u0417\u0430 \u0441\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b \u0437\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u0441\u044a\u0431\u0438\u0440\u0430\u0442 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b, \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u0435\u043b\u043d\u043e \u0434\u0435\u0439\u043d\u043e\u0441\u0442 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f, \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u0438, \u0434\u0435\u043c\u043e\u0433\u0440\u0430\u0444\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0438\u043b\u0438 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435, \u0434\u0430 \u0441\u044a\u0437\u0434\u0430\u0432\u0430\u0442 \u0438\u043b\u0438 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0442 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043f\u0440\u043e\u0444\u0438\u043b \u0437\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435 \u043f\u0440\u0438 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0430.\n* \u041a\u043e\u043c\u0431\u0438\u043d\u0438\u0440\u0430\u0439\u0442\u0435 \u0442\u0430\u0437\u0438 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0441 \u0434\u0440\u0443\u0433\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f, \u0441\u044a\u0431\u0440\u0430\u043d\u0430 \u043f\u0440\u0435\u0434\u0438 \u0442\u043e\u0432\u0430, \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u0435\u043b\u043d\u043e \u043e\u0442 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u0438 \u0443\u0435\u0431\u0441\u0430\u0439\u0442\u043e\u0432\u0435 \u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u0437\u0430 \u0434\u0430 \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u0442\u0435 \u0438\u043b\u0438 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0442\u0435 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043f\u0440\u043e\u0444\u0438\u043b \u0437\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435 \u0432 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430\u0442\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0430.\n"},"4":{"id":4,"name":"\u0418\u0437\u0431\u043e\u0440 \u043d\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438","description":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438\u0442\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0412\u0438 \u0431\u044a\u0434\u0430\u0442 \u043f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b \u0437\u0430 \u0412\u0430\u0441.","descriptionLegal":"\u0417\u0430 \u0434\u0430 \u0438\u0437\u0431\u0435\u0440\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u0438\u0437\u0431\u0438\u0440\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043f\u0440\u043e\u0444\u0438\u043b \u0438\u043b\u0438 \u0434\u0440\u0443\u0433\u0438 \u0438\u0441\u0442\u043e\u0440\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f, \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u0435\u043b\u043d\u043e \u043f\u0440\u0435\u0434\u0438\u0448\u043d\u0438 \u0434\u0435\u0439\u043d\u043e\u0441\u0442\u0438, \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u0438, \u043f\u043e\u0441\u0435\u0449\u0435\u043d\u0438\u044f \u0432 \u0441\u0430\u0439\u0442\u043e\u0432\u0435 \u0438\u043b\u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0438\u043b\u0438 \u0434\u0435\u043c\u043e\u0433\u0440\u0430\u0444\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438.\n"},"5":{"id":5,"name":"\u0421\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b \u0441 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435","description":"\u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u0438 \u043f\u0440\u043e\u0444\u0438\u043b \u0437\u0430 \u0412\u0430\u0441 \u0438 \u0412\u0430\u0448\u0438\u0442\u0435 \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u0438, \u0437\u0430 \u0434\u0430 \u0412\u0438 \u043f\u043e\u043a\u0430\u0436\u0435\u043c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u043a\u043e\u0435\u0442\u043e \u0435 \u043f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u043e \u0437\u0430 \u0412\u0430\u0441.","descriptionLegal":"\u0417\u0430 \u0441\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b \u0441 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u0441\u044a\u0431\u0438\u0440\u0430\u0442 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b, \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u0435\u043b\u043d\u043e \u0434\u0435\u0439\u043d\u043e\u0441\u0442 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f, \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u0438, \u043f\u043e\u0441\u0435\u0449\u0435\u043d\u0438\u044f \u0432 \u0441\u0430\u0439\u0442\u043e\u0432\u0435 \u0438\u043b\u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u0434\u0435\u043c\u043e\u0433\u0440\u0430\u0444\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0438\u043b\u0438 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435, \u0437\u0430 \u0441\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435 \u0438\u043b\u0438 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043f\u0440\u043e\u0444\u0438\u043b \u0437\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435.\n* \u041a\u043e\u043c\u0431\u0438\u043d\u0438\u0440\u0430\u0439\u0442\u0435 \u0442\u0430\u0437\u0438 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0441 \u0434\u0440\u0443\u0433\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f, \u0441\u044a\u0431\u0440\u0430\u043d\u0430 \u043f\u0440\u0435\u0434\u0438 \u0442\u043e\u0432\u0430, \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u0435\u043b\u043d\u043e \u043e\u0442 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u0438 \u0443\u0435\u0431\u0441\u0430\u0439\u0442\u043e\u0432\u0435 \u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u0437\u0430 \u0434\u0430 \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u0442\u0435 \u0438\u043b\u0438 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0442\u0435 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043f\u0440\u043e\u0444\u0438\u043b \u0437\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435 \u043f\u0440\u0438 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435.\n"},"6":{"id":6,"name":"\u0418\u0437\u0431\u043e\u0440 \u043d\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435","description":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0412\u0438 \u0431\u044a\u0434\u0435 \u043f\u043e\u043a\u0430\u0437\u0430\u043d\u043e \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b \u0437\u0430 \u0412\u0430\u0441.","descriptionLegal":"\u0417\u0430 \u0438\u0437\u0431\u043e\u0440 \u043d\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u0438\u0437\u0431\u0435\u0440\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043f\u0440\u043e\u0444\u0438\u043b \u0438\u043b\u0438 \u0434\u0440\u0443\u0433\u0438 \u0438\u0441\u0442\u043e\u0440\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f, \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u0435\u043b\u043d\u043e \u043f\u0440\u0435\u0434\u0438\u0448\u043d\u0438 \u0434\u0435\u0439\u043d\u043e\u0441\u0442\u0438, \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u0438, \u043f\u043e\u0441\u0435\u0449\u0435\u043d\u0438\u044f \u0432 \u0441\u0430\u0439\u0442\u043e\u0432\u0435 \u0438\u043b\u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0438\u043b\u0438 \u0434\u0435\u043c\u043e\u0433\u0440\u0430\u0444\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438.\n"},"7":{"id":7,"name":"\u0418\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0435\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438","description":"\u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0442\u0430 \u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u043a\u043e\u0438\u0442\u043e \u0432\u0438\u0436\u0434\u0430\u0442\u0435 \u0438\u043b\u0438 \u0441 \u043a\u043e\u0438\u0442\u043e \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0430\u0442\u0435.","descriptionLegal":"\u0417\u0430 \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0435\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u0438\u0437\u043c\u0435\u0440\u044f\u0442 \u0434\u0430\u043b\u0438 \u0438 \u043a\u0430\u043a \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0441\u0430 \u0431\u0438\u043b\u0438 \u0434\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u0438 \u0438 \u0441\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0430\u043b\u0438 \u0441 \u0434\u0430\u0434\u0435\u043d \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\n* \u0414\u0430 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u044f\u0442 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u0435\u043b\u043d\u043e \u0442\u044f\u0445\u043d\u0430\u0442\u0430 \u0435\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442 \u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\n* \u0414\u0430 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u044f\u0442 \u043e\u0442\u0447\u0435\u0442\u0438 \u0437\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0430\u043b\u0438 \u0441 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439\u043a\u0438 \u0434\u0430\u043d\u043d\u0438, \u043d\u0430\u0431\u043b\u044e\u0434\u0430\u0432\u0430\u043d\u0438 \u0432 \u0445\u043e\u0434\u0430 \u043d\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435\u0442\u043e \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f \u0441 \u0442\u0430\u0437\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0430\n* \u0414\u0430 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u044f\u0442 \u043e\u0442\u0447\u0435\u0442\u0438 \u043d\u0430 \u0438\u0437\u0434\u0430\u0442\u0435\u043b\u0438\u0442\u0435 \u0437\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u043f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0438 \u043d\u0430 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043e\u0441\u0442\u0442\u0430 \u0438\u043c\n* \u0414\u0430 \u0438\u0437\u043c\u0435\u0440\u044f\u0442 \u0434\u0430\u043b\u0438 \u0434\u0430\u0434\u0435\u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0430 \u0435 \u0434\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u0430 \u0432 \u043f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0430 \u0440\u0435\u0434\u0430\u043a\u0446\u0438\u043e\u043d\u043d\u0430 \u0441\u0440\u0435\u0434\u0430 (\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e \u0437\u0430 \u0431\u0440\u0430\u043d\u0434\u0430)\n* \u0414\u0430 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0442 \u0437\u0430 \u043a\u0430\u043a\u044a\u0432 \u043f\u0440\u043e\u0446\u0435\u043d\u0442 \u043e\u0442 \u0440\u0435\u043a\u043b\u0430\u043c\u0430\u0442\u0430 \u0435 \u0438\u043c\u0430\u043b\u043e \u0432\u044a\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442 \u0434\u0430 \u0431\u044a\u0434\u0435 \u0432\u0438\u0434\u044f\u043d, \u043a\u0430\u043a\u0442\u043e \u0438 \u043f\u0440\u043e\u0434\u044a\u043b\u0436\u0438\u0442\u0435\u043b\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0442\u0430\u0437\u0438 \u0432\u044a\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442 \n\u0414\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043d\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u043f\u0440\u0438\u043b\u0430\u0433\u0430\u0442 \u0434\u0430\u043d\u043d\u0438 \u0441\u044a\u0441 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430, \u0438\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0430 \u043e\u0442 \u043f\u0430\u043d\u0435\u043b \u0438\u043b\u0438 \u043f\u043e \u043f\u043e\u0434\u043e\u0431\u0435\u043d \u043d\u0430\u0447\u0438\u043d, \u0441\u043f\u0440\u044f\u043c\u043e \u0434\u0430\u043d\u043d\u0438\u0442\u0435 \u0437\u0430 \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0431\u0435\u0437 \u043e\u0442\u0434\u0435\u043b\u043d\u043e \u043f\u0440\u0430\u0432\u043d\u043e \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0435 \u0437\u0430 \u043f\u0440\u0438\u043b\u0430\u0433\u0430\u043d\u0435 \u043d\u0430 \u043f\u0430\u0437\u0430\u0440\u043d\u0438 \u043f\u0440\u043e\u0443\u0447\u0432\u0430\u043d\u0438\u044f \u0437\u0430 \u0433\u0435\u043d\u0435\u0440\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430.\n"},"8":{"id":8,"name":"\u0418\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e","description":"\u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0442\u0430 \u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e, \u043a\u043e\u0435\u0442\u043e \u0432\u0438\u0436\u0434\u0430\u0442\u0435 \u0438\u043b\u0438 \u0441 \u043a\u043e\u0435\u0442\u043e \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0430\u0442\u0435.","descriptionLegal":"\u0417\u0430 \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e, \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u0442 \u0438 \u0441\u044a\u043e\u0431\u0449\u0430\u0432\u0430\u0442 \u043a\u0430\u043a \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u0435 \u0431\u0438\u043b\u043e \u0434\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u043e \u0438 \u0435 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0430\u043b\u043e \u0441 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438\u0442\u0435.\n* \u0414\u0430 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u044f\u0442 \u043e\u0442\u0447\u0435\u0442\u0438, \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439\u043a\u0438 \u043f\u0440\u044f\u043a\u043e \u0438\u0437\u043c\u0435\u0440\u0438\u043c\u0430 \u0438\u043b\u0438 \u0438\u0437\u0432\u0435\u0441\u0442\u043d\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0430\u043b\u0438 \u0441\u044a\u0441 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e\n\u0414\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043d\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u0442 \u0434\u0430\u043b\u0438 \u0438 \u043f\u043e \u043a\u0430\u043a\u044a\u0432 \u043d\u0430\u0447\u0438\u043d \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 (\u0432\u043a\u043b\u044e\u0447\u0438\u0442\u0435\u043b\u043d\u043e \u043c\u0435\u0441\u0442\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438) \u0441\u0430 \u0431\u0438\u043b\u0438 \u0434\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u0438 \u0438 \u0441\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0430\u043b\u0438 \u0441 \u0434\u0430\u0434\u0435\u043d \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b.\n* \u0414\u0430 \u043f\u0440\u0438\u043b\u0430\u0433\u0430\u0442 \u0434\u0430\u043d\u043d\u0438 \u0441\u044a\u0441 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430, \u0438\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0430 \u043e\u0442 \u043f\u0430\u043d\u0435\u043b \u0438\u043b\u0438 \u043f\u043e \u0441\u0445\u043e\u0434\u0435\u043d \u043d\u0430\u0447\u0438\u043d, \u0441\u043f\u0440\u044f\u043c\u043e \u0434\u0430\u043d\u043d\u0438\u0442\u0435 \u0437\u0430 \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0431\u0435\u0437 \u043f\u0440\u0430\u0432\u043d\u043e \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0435 \u0437\u0430 \u043f\u0440\u0438\u043b\u0430\u0433\u0430\u043d\u0435 \u043d\u0430 \u043f\u0430\u0437\u0430\u0440\u043d\u0438 \u043f\u0440\u043e\u0443\u0447\u0432\u0430\u043d\u0438\u044f \u0437\u0430 \u0433\u0435\u043d\u0435\u0440\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430.\n"},"9":{"id":9,"name":"\u041f\u0440\u0438\u043b\u0430\u0433\u0430\u043d\u0435 \u043d\u0430 \u043f\u0430\u0437\u0430\u0440\u043d\u0438 \u043f\u0440\u043e\u0443\u0447\u0432\u0430\u043d\u0438\u044f \u0437\u0430 \u0433\u0435\u043d\u0435\u0440\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430","description":"\u041f\u0430\u0437\u0430\u0440\u043d\u043e \u043f\u0440\u043e\u0443\u0447\u0432\u0430\u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430, \u0437\u0430 \u0434\u0430 \u0441\u0435 \u043d\u0430\u0443\u0447\u0438 \u043f\u043e\u0432\u0435\u0447\u0435 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430, \u043a\u043e\u044f\u0442\u043e \u043f\u043e\u0441\u0435\u0449\u0430\u0432\u0430 \u0441\u0430\u0439\u0442\u043e\u0432\u0435/\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0438 \u043f\u0440\u0435\u0433\u043b\u0435\u0436\u0434\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438.","descriptionLegal":"\u0417\u0430 \u043f\u0440\u0438\u043b\u0430\u0433\u0430\u043d\u0435 \u043d\u0430 \u043f\u0430\u0437\u0430\u0440\u043d\u0438 \u043f\u0440\u043e\u0443\u0447\u0432\u0430\u043d\u0438\u044f \u0437\u0430 \u0433\u0435\u043d\u0435\u0440\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430, \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u044f\u0442 \u043e\u0431\u043e\u0431\u0449\u0435\u043d\u0438 \u043e\u0442\u0447\u0435\u0442\u0438 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u043e\u0434\u0430\u0442\u0435\u043b\u0438 \u0438\u043b\u0438 \u0442\u0435\u0445\u043d\u0438 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u0438 \u043e\u0442\u043d\u043e\u0441\u043d\u043e \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u0434\u043e \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0434\u043e\u0441\u0442\u0438\u0433\u043d\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438\u043c, \u0447\u0440\u0435\u0437 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430, \u0438\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0430 \u043e\u0442 \u043f\u0430\u043d\u0435\u043b \u0438 \u043f\u043e \u043f\u043e\u0434\u043e\u0431\u0435\u043d \u043d\u0430\u0447\u0438\u043d.\n* \u0414\u0430 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u044f\u0442 \u043e\u0431\u043e\u0431\u0449\u0435\u043d\u0438 \u043e\u0442\u0447\u0435\u0442\u0438 \u043d\u0430 \u0438\u0437\u0434\u0430\u0442\u0435\u043b\u0438\u0442\u0435 \u043e\u0442\u043d\u043e\u0441\u043d\u043e \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u0434\u043e \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u0438 \u0438\u043b\u0438 \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0430\u043b\u0438 \u0441\u044a\u0441 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 \u0438/\u0438\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u043d\u0430 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043e\u0441\u0442\u0442\u0430 \u0438\u043c, \u0447\u0440\u0435\u0437 \u043f\u0440\u0438\u043b\u0430\u0433\u0430\u043d\u0435 \u043d\u0430 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430, \u0438\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0430 \u043e\u0442 \u043f\u0430\u043d\u0435\u043b \u0438 \u043f\u043e \u043f\u043e\u0434\u043e\u0431\u0435\u043d \u043d\u0430\u0447\u0438\u043d. \n* \u0414\u0430 \u0441\u0432\u044a\u0440\u0437\u0432\u0430\u0442 \u043e\u0444\u043b\u0430\u0439\u043d \u0434\u0430\u043d\u043d\u0438 \u0441 \u043e\u043d\u043b\u0430\u0439\u043d \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b \u0437\u0430 \u0446\u0435\u043b\u0438\u0442\u0435 \u043d\u0430 \u043f\u0430\u0437\u0430\u0440\u043d\u043e \u043f\u0440\u043e\u0443\u0447\u0432\u0430\u043d\u0435, \u0437\u0430 \u0434\u0430 \u0433\u0435\u043d\u0435\u0440\u0438\u0440\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430, \u0430\u043a\u043e \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u0441\u0430 \u0434\u0435\u043a\u043b\u0430\u0440\u0438\u0440\u0430\u043b\u0438 \u0434\u0430 \u0441\u044a\u0447\u0435\u0442\u0430\u0432\u0430\u0442 \u0438 \u043a\u043e\u043c\u0431\u0438\u043d\u0438\u0440\u0430\u0442 \u043e\u0444\u043b\u0430\u0439\u043d \u0438\u0437\u0442\u043e\u0447\u043d\u0438\u0446\u0438 \u043d\u0430 \u0434\u0430\u043d\u043d\u0438 (\u0424\u0443\u043d\u043a\u0446\u0438\u044f 1)\n\u0414\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043d\u0435 \u043c\u043e\u0433\u0430\u0442: \n* \u0414\u0430 \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u0442 \u0435\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0442\u0430 \u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u0438 \u043d\u0430 \u0434\u0430\u0434\u0435\u043d \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b \u0438\u043b\u0438, \u0441 \u043a\u043e\u0438\u0442\u043e \u0442\u043e\u0437\u0438 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b \u0435 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0430\u043b, \u0431\u0435\u0437 \u043e\u0442\u0434\u0435\u043b\u043d\u043e \u043f\u0440\u0430\u0432\u043d\u043e \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0435 \u0437\u0430 \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0435\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435.\n* \u0414\u0430 \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u0442 \u043a\u043e\u0435 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 \u0435 \u0434\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u043e \u043d\u0430 \u043a\u043e\u043d\u043a\u0440\u0435\u0442\u0435\u043d \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b \u0438 \u043a\u0430\u043a \u0442\u043e\u0437\u0438 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b \u0435 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0430\u043b \u0441 \u043d\u0435\u0433\u043e, \u0431\u0435\u0437 \u043e\u0442\u0434\u0435\u043b\u043d\u043e \u043f\u0440\u0430\u0432\u043d\u043e \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0435 \u0437\u0430 \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e.\n"},"10":{"id":10,"name":"\u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u043d\u0435 \u0438 \u043f\u043e\u0434\u043e\u0431\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438","description":"\u0412\u0430\u0448\u0438\u0442\u0435 \u0434\u0430\u043d\u043d\u0438 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0437\u0430 \u043f\u043e\u0434\u043e\u0431\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430\u0449\u0438 \u0441\u0438\u0441\u0442\u0435\u043c\u0438 \u0438 \u0441\u043e\u0444\u0442\u0443\u0435\u0440, \u043a\u0430\u043a\u0442\u043e \u0438 \u0437\u0430 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u043d\u043e\u0432\u0438 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438.","descriptionLegal":"\u0417\u0430 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u043d\u043e\u0432\u0438 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438 \u0438 \u043f\u043e\u0434\u043e\u0431\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438, \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f, \u0437\u0430 \u0434\u0430 \u043f\u043e\u0434\u043e\u0431\u0440\u044f\u0442 \u0441\u044a\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430\u0449\u0438\u0442\u0435 \u0441\u0438 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438 \u0441 \u043d\u043e\u0432\u0438 \u0444\u0443\u043d\u043a\u0446\u0438\u0438 \u0438 \u0434\u0430 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u044f\u0442 \u043d\u043e\u0432\u0438 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438\n* \u0414\u0430 \u0441\u044a\u0437\u0434\u0430\u0432\u0430\u0442 \u043d\u043e\u0432\u0438 \u043c\u043e\u0434\u0435\u043b\u0438 \u0438 \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u0438 \u0447\u0440\u0435\u0437 \u043c\u0430\u0448\u0438\u043d\u043d\u043e \u043e\u0431\u0443\u0447\u0435\u043d\u0438\u0435\n\u0414\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043d\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u0438\u0437\u0432\u044a\u0440\u0448\u0432\u0430\u0442 \u0434\u0440\u0443\u0433\u0430 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044f \u0437\u0430 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u0434\u0430\u043d\u043d\u0438, \u043f\u043e\u0437\u0432\u043e\u043b\u0435\u043d\u0430 \u043e\u0442 \u0434\u0440\u0443\u0433\u0430 \u0446\u0435\u043b, \u0432 \u0440\u0430\u043c\u043a\u0438\u0442\u0435 \u043d\u0430 \u0442\u0430\u0437\u0438 \u0446\u0435\u043b\n"}},"specialPurposes":{"1":{"id":1,"name":"\u0413\u0430\u0440\u0430\u043d\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u0438\u0433\u0443\u0440\u043d\u043e\u0441\u0442\u0442\u0430, \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0442\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u043c\u0430\u043c\u0438 \u0438 \u043e\u0442\u0441\u0442\u0440\u0430\u043d\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0433\u0440\u0435\u0448\u043a\u0438","description":"\u0412\u0430\u0448\u0438\u0442\u0435 \u0434\u0430\u043d\u043d\u0438 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0437\u0430 \u043d\u0430\u0431\u043b\u044e\u0434\u0435\u043d\u0438\u0435 \u0438 \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0442\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u043c\u0430\u043c\u043d\u0438 \u0434\u0435\u0439\u043d\u043e\u0441\u0442\u0438, \u043a\u0430\u043a\u0442\u043e \u0438 \u0437\u0430 \u043e\u0441\u0438\u0433\u0443\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u0430\u0432\u0438\u043b\u043d\u043e\u0442\u043e \u0438 \u043d\u0430\u0434\u0435\u0436\u0434\u043d\u043e \u0444\u0443\u043d\u043a\u0446\u0438\u043e\u043d\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0438\u0442\u0435 \u0438 \u043f\u0440\u043e\u0446\u0435\u0441\u0438\u0442\u0435.","descriptionLegal":"\u0417\u0430 \u0433\u0430\u0440\u0430\u043d\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u0438\u0433\u0443\u0440\u043d\u043e\u0441\u0442\u0442\u0430, \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0442\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u043c\u0430\u043c\u0438 \u0438 \u043e\u0442\u0441\u0442\u0440\u0430\u043d\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0433\u0440\u0435\u0448\u043a\u0438, \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u043e\u0441\u0438\u0433\u0443\u0440\u044f\u0432\u0430\u0442 \u043d\u0430\u0434\u0435\u0436\u0434\u043d\u043e \u043f\u0440\u0435\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u0434\u0430\u043d\u043d\u0438\u0442\u0435 \n* \u0414\u0430 \u043e\u0442\u043a\u0440\u0438\u0432\u0430\u0442 \u0438 \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0442\u044f\u0432\u0430\u0442 \u0437\u043b\u043e\u043d\u0430\u043c\u0435\u0440\u0435\u043d\u0438, \u0438\u0437\u043c\u0430\u043c\u043d\u0438, \u043d\u0435\u0432\u0430\u043b\u0438\u0434\u043d\u0438 \u0438\u043b\u0438 \u043d\u0435\u0437\u0430\u043a\u043e\u043d\u043d\u0438 \u0434\u0435\u0439\u043d\u043e\u0441\u0442\u0438\n* \u0414\u0430 \u043e\u0441\u0438\u0433\u0443\u0440\u044f\u0432\u0430\u0442 \u043f\u0440\u0430\u0432\u0438\u043b\u043d\u0430 \u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u0430 \u0440\u0430\u0431\u043e\u0442\u0430 \u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0438\u0442\u0435 \u0438 \u043f\u0440\u043e\u0446\u0435\u0441\u0438\u0442\u0435, \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u0435\u043b\u043d\u043e \u043d\u0430\u0431\u043b\u044e\u0434\u0435\u043d\u0438\u0435 \u0438 \u043f\u043e\u0434\u043e\u0431\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0435\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0438\u0442\u0435 \u0438 \u043f\u0440\u043e\u0446\u0435\u0441\u0438\u0442\u0435, \u0430\u043d\u0433\u0430\u0436\u0438\u0440\u0430\u043d\u0438 \u0441 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438 \u0446\u0435\u043b\u0438\n\u0414\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043d\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u0438\u0437\u0432\u044a\u0440\u0448\u0432\u0430\u0442 \u0432\u0441\u044f\u043a\u0430 \u0434\u0440\u0443\u0433\u0430 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044f \u0437\u0430 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u0434\u0430\u043d\u043d\u0438, \u043f\u043e\u0437\u0432\u043e\u043b\u0435\u043d\u0430 \u043e\u0442 \u0434\u0440\u0443\u0433\u0430 \u0446\u0435\u043b, \u0432 \u0440\u0430\u043c\u043a\u0438\u0442\u0435 \u043d\u0430 \u0442\u0430\u0437\u0438 \u0446\u0435\u043b.\n\u0417\u0430\u0431\u0435\u043b\u0435\u0436\u043a\u0430: \u0414\u0430\u043d\u043d\u0438\u0442\u0435, \u0441\u044a\u0431\u0438\u0440\u0430\u043d\u0438 \u0438 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0438 \u0437\u0430 \u0433\u0430\u0440\u0430\u043d\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u0438\u0433\u0443\u0440\u043d\u043e\u0441\u0442\u0442\u0430, \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0442\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u043c\u0430\u043c\u0438 \u0438 \u043e\u0442\u0441\u0442\u0440\u0430\u043d\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0433\u0440\u0435\u0448\u043a\u0438, \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0432\u043a\u043b\u044e\u0447\u0432\u0430\u0442 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u043d\u0438 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e\u0442\u043e \u0437\u0430 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f, \u0442\u043e\u0447\u043d\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0441\u043a\u043e \u043f\u043e\u0437\u0438\u0446\u0438\u043e\u043d\u0438\u0440\u0430\u043d\u0435, \u043a\u0430\u043a\u0442\u043e \u0438 \u0434\u0430\u043d\u043d\u0438, \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438 \u0447\u0440\u0435\u0437 \u0430\u043a\u0442\u0438\u0432\u043d\u043e \u0441\u043a\u0430\u043d\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438\u0442\u0435 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e\u0442\u043e \u0437\u0430 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f, \u0431\u0435\u0437 \u043e\u0442\u0434\u0435\u043b\u043d\u043e \u0440\u0430\u0437\u043a\u0440\u0438\u0432\u0430\u043d\u0435 \u0438/\u0438\u043b\u0438 \u0444\u0443\u043d\u043a\u0446\u0438\u044f \u0437\u0430 \u0432\u043a\u043b\u044e\u0447\u0432\u0430\u043d\u0435.\n"},"2":{"id":2,"name":"\u0422\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u043e \u0434\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438\u043b\u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435","description":"\u0412\u0430\u0448\u0435\u0442\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e \u043c\u043e\u0436\u0435 \u0434\u0430 \u043f\u043e\u043b\u0443\u0447\u0430\u0432\u0430 \u0438 \u0438\u0437\u043f\u0440\u0430\u0449\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f, \u043a\u043e\u044f\u0442\u043e \u0412\u0438 \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u0432\u0430 \u0434\u0430 \u0432\u0438\u0436\u0434\u0430\u0442\u0435 \u0438 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0430\u0442\u0435 \u0441 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435.","descriptionLegal":"\u0417\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0438 \u043e\u0442\u0433\u043e\u0432\u0430\u0440\u044f\u043d\u0435 \u043d\u0430 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438 \u0437\u0430\u044f\u0432\u043a\u0438, \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 IP \u0430\u0434\u0440\u0435\u0441\u0430 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f \u0437\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0430 \u043f\u043e \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\n* \u0414\u0430 \u043e\u0442\u0433\u043e\u0432\u0430\u0440\u044f\u0442 \u043d\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f \u0441 \u0440\u0435\u043a\u043b\u0430\u043c\u0430 \u0447\u0440\u0435\u0437 \u0438\u0437\u043f\u0440\u0430\u0449\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f \u0434\u043e \u0446\u0435\u043b\u0435\u0432\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430\n* \u0414\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 IP \u0430\u0434\u0440\u0435\u0441\u0430 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f \u0437\u0430 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 \u043f\u043e \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\n* \u0414\u0430 \u043e\u0442\u0433\u043e\u0432\u0430\u0440\u044f\u0442 \u043d\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435\u0442\u043e \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f \u0441\u044a\u0441 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u0447\u0440\u0435\u0437 \u0438\u0437\u043f\u0440\u0430\u0449\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f \u0434\u043e \u0446\u0435\u043b\u0435\u0432\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430\n* \u0414\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u0442\u0438\u043f\u0430 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e\u0442\u043e \u0438 \u0432\u044a\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438\u0442\u0435 \u0437\u0430 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438\u043b\u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440 \u0437\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u043f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u044f \u0440\u0430\u0437\u043c\u0435\u0440 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 \u0438\u043b\u0438 \u0432\u0438\u0434\u0435\u043e\u0444\u0430\u0439\u043b \u0432\u044a\u0432 \u0444\u043e\u0440\u043c\u0430\u0442, \u043f\u043e\u0434\u0434\u044a\u0440\u0436\u0430\u043d \u043e\u0442 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e\u0442\u043e\n\u0414\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043d\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u0438\u0437\u0432\u044a\u0440\u0448\u0432\u0430\u0442 \u0434\u0440\u0443\u0433\u0430 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044f \u0437\u0430 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u0434\u0430\u043d\u043d\u0438, \u043f\u043e\u0437\u0432\u043e\u043b\u0435\u043d\u0430 \u043e\u0442 \u0434\u0440\u0443\u0433\u0430 \u0446\u0435\u043b, \u0432 \u0440\u0430\u043c\u043a\u0438\u0442\u0435 \u043d\u0430 \u0442\u0430\u0437\u0438 \u0446\u0435\u043b\n"}},"features":{"1":{"id":1,"name":"\u0421\u044a\u0447\u0435\u0442\u0430\u0432\u0430\u043d\u0435 \u0438 \u043a\u043e\u043c\u0431\u0438\u043d\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u0442\u043e\u0447\u043d\u0438\u0446\u0438 \u043d\u0430 \u0434\u0430\u043d\u043d\u0438 \u043e\u0444\u043b\u0430\u0439\u043d","description":"\u0414\u0430\u043d\u043d\u0438 \u043e\u0442 \u0438\u0437\u0442\u043e\u0447\u043d\u0438\u0446\u0438 \u043d\u0430 \u0434\u0430\u043d\u043d\u0438 \u043e\u0444\u043b\u0430\u0439\u043d \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u043a\u043e\u043c\u0431\u0438\u043d\u0438\u0440\u0430\u0442 \u0441 \u0412\u0430\u0448\u0430\u0442\u0430 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442 \u043e\u043d\u043b\u0430\u0439\u043d \u0432 \u043f\u043e\u0434\u043a\u0440\u0435\u043f\u0430 \u043d\u0430 \u0435\u0434\u043d\u0430 \u0438\u043b\u0438 \u043f\u043e\u0432\u0435\u0447\u0435 \u0446\u0435\u043b\u0438.","descriptionLegal":"\u0414\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442: \n* \u0414\u0430 \u043a\u043e\u043c\u0431\u0438\u043d\u0438\u0440\u0430\u0442 \u0434\u0430\u043d\u043d\u0438, \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438 \u043e\u0444\u043b\u0430\u0439\u043d, \u0441 \u0434\u0430\u043d\u043d\u0438, \u0441\u044a\u0431\u0440\u0430\u043d\u0438 \u043e\u043d\u043b\u0430\u0439\u043d, \u0432 \u043f\u043e\u0434\u043a\u0440\u0435\u043f\u0430 \u043d\u0430 \u0435\u0434\u043d\u0430 \u0438\u043b\u0438 \u043f\u043e\u0432\u0435\u0447\u0435 \u0446\u0435\u043b\u0438 \u0438\u043b\u0438 \u0437\u0430 \u0441\u043f\u0435\u0446\u0438\u0430\u043b\u043d\u0438 \u0446\u0435\u043b\u0438.\n"},"2":{"id":2,"name":"\u0421\u0432\u044a\u0440\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430","description":"\u0420\u0430\u0437\u043b\u0438\u0447\u043d\u0438\u0442\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438 \u043a\u0430\u0442\u043e \u043f\u0440\u0438\u043d\u0430\u0434\u043b\u0435\u0436\u0430\u0449\u0438 \u043d\u0430 \u0412\u0430\u0441 \u0438\u043b\u0438 \u043d\u0430 \u0412\u0430\u0448\u0435\u0442\u043e \u0434\u043e\u043c\u0430\u043a\u0438\u043d\u0441\u0442\u0432\u043e \u0432 \u043f\u043e\u0434\u043a\u0440\u0435\u043f\u0430 \u043d\u0430 \u0435\u0434\u043d\u0430 \u0438\u043b\u0438 \u043f\u043e\u0432\u0435\u0447\u0435 \u043e\u0442 \u0446\u0435\u043b\u0438\u0442\u0435.","descriptionLegal":"\u0414\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0447\u043d\u043e \u0434\u0430 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0442, \u0447\u0435 \u0434\u0432\u0435 \u0438\u043b\u0438 \u043f\u043e\u0432\u0435\u0447\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u043f\u0440\u0438\u043d\u0430\u0434\u043b\u0435\u0436\u0430\u0442 \u043d\u0430 \u0435\u0434\u0438\u043d \u0438 \u0441\u044a\u0449 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b \u0438\u043b\u0438 \u0434\u043e\u043c\u0430\u043a\u0438\u043d\u0441\u0442\u0432\u043e\n* \u0412\u0435\u0440\u043e\u044f\u0442\u043d\u043e\u0441\u0442\u043d\u043e \u0434\u0430 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0442, \u0447\u0435 \u0434\u0432\u0435 \u0438\u043b\u0438 \u043f\u043e\u0432\u0435\u0447\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u043f\u0440\u0438\u043d\u0430\u0434\u043b\u0435\u0436\u0430\u0442 \u043d\u0430 \u0435\u0434\u0438\u043d \u0438 \u0441\u044a\u0449 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b \u0438\u043b\u0438 \u0434\u043e\u043c\u0430\u043a\u0438\u043d\u0441\u0442\u0432\u043e\n* \u0410\u043a\u0442\u0438\u0432\u043d\u043e \u0434\u0430 \u0441\u043a\u0430\u043d\u0438\u0440\u0430\u0442 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e\u0442\u043e \u0437\u0430 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f \u043d\u0430 \u0432\u0435\u0440\u043e\u044f\u0442\u043d\u043e\u0441\u0442\u043d\u0430 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f, \u0430\u043a\u043e \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438\u0442\u0435 \u0441\u0430 \u043f\u043e\u0437\u0432\u043e\u043b\u0438\u043b\u0438 \u043d\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u0434\u0430 \u0441\u043a\u0430\u043d\u0438\u0440\u0430\u0442 \u0430\u043a\u0442\u0438\u0432\u043d\u043e \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e\u0442\u043e \u0437\u0430 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f (\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u043d\u0430 \u0424\u0443\u043d\u043a\u0446\u0438\u044f 2)\n"},"3":{"id":3,"name":"\u041f\u043e\u043b\u0443\u0447\u0430\u0432\u0430\u043d\u0435 \u0438 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u043d\u0438 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e\u0442\u043e \u0437\u0430 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f","description":"\u0412\u0430\u0448\u0435\u0442\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0440\u0430\u0437\u0433\u0440\u0430\u043d\u0438\u0447\u0438 \u043e\u0442 \u0434\u0440\u0443\u0433\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f\u0442\u0430, \u043a\u043e\u044f\u0442\u043e \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u0438\u0437\u043f\u0440\u0430\u0449\u0430, \u043a\u0430\u0442\u043e \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440 IP \u0430\u0434\u0440\u0435\u0441 \u0438\u043b\u0438 \u0442\u0438\u043f \u043d\u0430 \u0431\u0440\u0430\u0443\u0437\u044a\u0440\u0430.","descriptionLegal":"\u0414\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u0441\u044a\u0437\u0434\u0430\u0432\u0430\u0442 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0447\u0440\u0435\u0437 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u0441\u044a\u0431\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0434\u0430\u043d\u043d\u0438 \u043e\u0442 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e \u043d\u0430 \u0441\u043f\u0435\u0446\u0438\u0444\u0438\u0447\u043d\u0438 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440 IP \u0430\u0434\u0440\u0435\u0441, \u0441\u0442\u0440\u0438\u043d\u0433 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438\u044f \u0430\u0433\u0435\u043d\u0442.\n* \u0414\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0442\u0430\u043a\u044a\u0432 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043f\u0440\u0438 \u043e\u043f\u0438\u0442 \u0437\u0430 \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u0446\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e.\n\u0414\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043d\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u0441\u044a\u0437\u0434\u0430\u0432\u0430\u0442 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0447\u0440\u0435\u0437 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0434\u0430\u043d\u043d\u0438, \u0441\u044a\u0431\u0440\u0430\u043d\u0438 \u0447\u0440\u0435\u0437 \u0430\u043a\u0442\u0438\u0432\u043d\u043e \u0441\u043a\u0430\u043d\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e \u0437\u0430 \u0441\u043f\u0435\u0446\u0438\u0444\u0438\u0447\u043d\u0438 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440 \u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0438 \u0448\u0440\u0438\u0444\u0442\u043e\u0432\u0435 \u0438\u043b\u0438 \u0440\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u0435\u043b\u043d\u0430 \u0441\u043f\u043e\u0441\u043e\u0431\u043d\u043e\u0441\u0442 \u043d\u0430 \u0435\u043a\u0440\u0430\u043d\u0430, \u0431\u0435\u0437 \u043e\u0442\u0434\u0435\u043b\u043d\u0430 \u0444\u0443\u043d\u043a\u0446\u0438\u044f \u0437\u0430 \u0432\u043a\u043b\u044e\u0447\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438\u0442\u0435 \u0437\u0430 \u0430\u043a\u0442\u0438\u0432\u043d\u043e \u0441\u043a\u0430\u043d\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438\u0442\u0435 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e\u0442\u043e \u0437\u0430 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f.\n* \u0414\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0442\u0430\u043a\u044a\u0432 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0437\u0430 \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u0446\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e.\n"}},"specialFeatures":{"1":{"id":1,"name":"\u0418\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0442\u043e\u0447\u043d\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0441\u043a\u043e \u043f\u043e\u0437\u0438\u0446\u0438\u043e\u043d\u0438\u0440\u0430\u043d\u0435","description":"\u0412\u0430\u0448\u0438\u0442\u0435 \u0442\u043e\u0447\u043d\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0441\u043a\u043e \u043f\u043e\u0437\u0438\u0446\u0438\u043e\u043d\u0438\u0440\u0430\u043d\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0432 \u043f\u043e\u0434\u043a\u0440\u0435\u043f\u0430 \u043d\u0430 \u0435\u0434\u043d\u0430 \u0438\u043b\u0438 \u043f\u043e\u0432\u0435\u0447\u0435 \u0446\u0435\u043b\u0438. \u0422\u043e\u0432\u0430 \u043e\u0437\u043d\u0430\u0447\u0430\u0432\u0430, \u0447\u0435 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u0442\u043e \u0412\u0438 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u0441 \u0442\u043e\u0447\u043d\u043e\u0441\u0442 \u0432 \u0440\u0430\u043c\u043a\u0438\u0442\u0435 \u043d\u0430 \u043d\u044f\u043a\u043e\u043b\u043a\u043e \u043c\u0435\u0442\u0440\u0430.","descriptionLegal":"\u0414\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u0441\u044a\u0431\u0438\u0440\u0430\u0442 \u0438 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u0442 \u0442\u043e\u0447\u043d\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0441\u043a\u043e \u043f\u043e\u0437\u0438\u0446\u0438\u043e\u043d\u0438\u0440\u0430\u043d\u0435 \u0432 \u043f\u043e\u0434\u043a\u0440\u0435\u043f\u0430 \u043d\u0430 \u0435\u0434\u043d\u0430 \u0438\u043b\u0438 \u043f\u043e\u0432\u0435\u0447\u0435 \u0446\u0435\u043b\u0438.\n\u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435: \u0442\u043e\u0447\u043d\u043e \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0441\u043a\u043e \u043f\u043e\u0437\u0438\u0446\u0438\u043e\u043d\u0438\u0440\u0430\u043d\u0435 \u043e\u0437\u043d\u0430\u0447\u0430\u0432\u0430, \u0447\u0435 \u043d\u044f\u043c\u0430 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f \u0437\u0430 \u0442\u043e\u0447\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u0442\u043e \u043d\u0430 \u0434\u0430\u0434\u0435\u043d \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b; \u0422\u043e\u0432\u0430 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u0441 \u0442\u043e\u0447\u043d\u043e\u0441\u0442 \u0432 \u0440\u0430\u043c\u043a\u0438\u0442\u0435 \u043d\u0430 \u043d\u044f\u043a\u043e\u043b\u043a\u043e \u043c\u0435\u0442\u0440\u0430.\n"},"2":{"id":2,"name":"\u0410\u043a\u0442\u0438\u0432\u043d\u043e \u0441\u043a\u0430\u043d\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438\u0442\u0435 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e\u0442\u043e \u0437\u0430 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f","description":"\u0412\u0430\u0448\u0435\u0442\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u0446\u0438\u0440\u0430\u043d\u043e \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u0441\u043a\u0430\u043d\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0443\u043d\u0438\u043a\u0430\u043b\u043d\u0430\u0442\u0430 \u043a\u043e\u043c\u0431\u0438\u043d\u0430\u0446\u0438\u044f \u043e\u0442 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438 \u043d\u0430 \u0412\u0430\u0448\u0435\u0442\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e.","descriptionLegal":"\u0414\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442:\n* \u0414\u0430 \u0441\u044a\u0437\u0434\u0430\u0432\u0430\u0442 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0447\u0440\u0435\u0437 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0434\u0430\u043d\u043d\u0438, \u0441\u044a\u0431\u0440\u0430\u043d\u0438 \u0447\u0440\u0435\u0437 \u0430\u043a\u0442\u0438\u0432\u043d\u043e \u0441\u043a\u0430\u043d\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e \u0437\u0430 \u0441\u043f\u0435\u0446\u0438\u0444\u0438\u0447\u043d\u0438 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440 \u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0438 \u0448\u0440\u0438\u0444\u0442\u043e\u0432\u0435 \u0438\u043b\u0438 \u0440\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u0435\u043b\u043d\u0430 \u0441\u043f\u043e\u0441\u043e\u0431\u043d\u043e\u0441\u0442 \u043d\u0430 \u0435\u043a\u0440\u0430\u043d\u0430. \n* \u0414\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0442\u0430\u043a\u044a\u0432 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0437\u0430 \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u0446\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"\u0422\u043e\u0447\u043d\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0441\u043a\u043e \u043f\u043e\u0437\u0438\u0446\u0438\u043e\u043d\u0438\u0440\u0430\u043d\u0435 \u0438 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f \u0447\u0440\u0435\u0437 \u0441\u043a\u0430\u043d\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430","description":"\u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430 \u0442\u043e\u0447\u043d\u043e \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0441\u043a\u043e \u043f\u043e\u0437\u0438\u0446\u0438\u043e\u043d\u0438\u0440\u0430\u043d\u0435 \u0438 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438\u0442\u0435 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e\u0442\u043e."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"\u041e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435","description":"\u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0434\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438. \u0415\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u0438\u0437\u043c\u0435\u0440\u0435\u043d\u0430."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"\u041e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435","description":"\u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0434\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438. \u0415\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u0438\u0437\u043c\u0435\u0440\u0435\u043d\u0430. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"\u041e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u043f\u0440\u043e\u0444\u0438\u043b \u0437\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435","description":"\u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0434\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435. \u0415\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u0438\u0437\u043c\u0435\u0440\u0435\u043d\u0430."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u0438 \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u0415\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u0438\u0437\u043c\u0435\u0440\u0435\u043d\u0430."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u0415\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u0438\u0437\u043c\u0435\u0440\u0435\u043d\u0430. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435. \u0415\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u0438\u0437\u043c\u0435\u0440\u0435\u043d\u0430."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435. \u0415\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u0438\u0437\u043c\u0435\u0440\u0435\u043d\u0430. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"\u041f\u0440\u043e\u0444\u0438\u043b \u0438 \u043f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435","description":"\u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 \u0438 \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e","description":"\u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e","description":"\u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 \u0438 \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e","description":"\u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u0438 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430","description":"\u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e, \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438","description":"\u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u0414\u0430\u043d\u043d\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0438\u043b\u0438 \u043f\u043e\u0434\u043e\u0431\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043e\u043f\u0438\u0442, \u0441\u0438\u0441\u0442\u0435\u043c\u0438 \u0438 \u0441\u043e\u0444\u0442\u0443\u0435\u0440"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"\u0418\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0438 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430","description":"\u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"\u0418\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435","description":"\u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"\u0418\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u044f\u0442. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"\u0418\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438","description":"\u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u0414\u0430\u043d\u043d\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0438\u043b\u0438 \u043f\u043e\u0434\u043e\u0431\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043e\u043f\u0438\u0442, \u0441\u0438\u0441\u0442\u0435\u043c\u0438 \u0438 \u0441\u043e\u0444\u0442\u0443\u0435\u0440. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"\u0418\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e, \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438","description":"\u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u0414\u0430\u043d\u043d\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0438\u043b\u0438 \u043f\u043e\u0434\u043e\u0431\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043e\u043f\u0438\u0442, \u0441\u0438\u0441\u0442\u0435\u043c\u0438 \u0438 \u0441\u043e\u0444\u0442\u0443\u0435\u0440."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"\u0418\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438","description":"\u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u0414\u0430\u043d\u043d\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0438\u043b\u0438 \u043f\u043e\u0434\u043e\u0431\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043e\u043f\u0438\u0442, \u0441\u0438\u0441\u0442\u0435\u043c\u0438 \u0438 \u0441\u043e\u0444\u0442\u0443\u0435\u0440."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 \u0438 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e.\u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u0414\u0430\u043d\u043d\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0438\u043b\u0438 \u043f\u043e\u0434\u043e\u0431\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043e\u043f\u0438\u0442, \u0441\u0438\u0441\u0442\u0435\u043c\u0438 \u0438 \u0441\u043e\u0444\u0442\u0443\u0435\u0440."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 \u0438 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u043f\u0440\u043e\u0444\u0438\u043b \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435","description":"\u0417\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"\u041e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 \u0438 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430","description":"\u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0434\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u043f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 \u0438 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"\u041e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 \u0438 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430","description":"\u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0434\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438. \u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"\u041e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438","description":"\u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0434\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438. \u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u0414\u0430\u043d\u043d\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0438\u043b\u0438 \u043f\u043e\u0434\u043e\u0431\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043e\u043f\u0438\u0442, \u0441\u0438\u0441\u0442\u0435\u043c\u0438 \u0438 \u0441\u043e\u0444\u0442\u0443\u0435\u0440."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"\u041e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u0438 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430","description":"\u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0434\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438. \u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"\u041e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e, \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438","description":"\u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0434\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438. \u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u0414\u0430\u043d\u043d\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0438\u043b\u0438 \u043f\u043e\u0434\u043e\u0431\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043e\u043f\u0438\u0442, \u0441\u0438\u0441\u0442\u0435\u043c\u0438 \u0438 \u0441\u043e\u0444\u0442\u0443\u0435\u0440."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"\u041e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 \u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438","description":"\u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0434\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438. \u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u0415\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u0438\u0437\u043c\u0435\u0440\u0435\u043d\u0430."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"\u041e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438","description":"\u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0434\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438. \u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u0415\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u0438\u0437\u043c\u0435\u0440\u0435\u043d\u0430. \u0414\u0430\u043d\u043d\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0438\u043b\u0438 \u043f\u043e\u0434\u043e\u0431\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043e\u043f\u0438\u0442, \u0441\u0438\u0441\u0442\u0435\u043c\u0438 \u0438 \u0441\u043e\u0444\u0442\u0443\u0435\u0440."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435. \u0415\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u0438\u0437\u043c\u0435\u0440\u0435\u043d\u0430. \u0414\u0430\u043d\u043d\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0438\u043b\u0438 \u043f\u043e\u0434\u043e\u0431\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043e\u043f\u0438\u0442, \u0441\u0438\u0441\u0442\u0435\u043c\u0438 \u0438 \u0441\u043e\u0444\u0442\u0443\u0435\u0440."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e, \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438.","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435. \u0415\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u0438\u0437\u043c\u0435\u0440\u0435\u043d\u0430. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0442 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u0414\u0430\u043d\u043d\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0438\u043b\u0438 \u043f\u043e\u0434\u043e\u0431\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043e\u043f\u0438\u0442, \u0441\u0438\u0441\u0442\u0435\u043c\u0438 \u0438 \u0441\u043e\u0444\u0442\u0443\u0435\u0440."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u043f\u043e\u043b\u0443\u0447\u0430\u0442 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u0414\u0430\u043d\u043d\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0438\u043b\u0438 \u043f\u043e\u0434\u043e\u0431\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043e\u043f\u0438\u0442, \u0441\u0438\u0441\u0442\u0435\u043c\u0438 \u0438 \u0441\u043e\u0444\u0442\u0443\u0435\u0440."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438, \u043f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u043f\u043e\u043b\u0443\u0447\u0430\u0442 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u0414\u0430\u043d\u043d\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0438\u043b\u0438 \u043f\u043e\u0434\u043e\u0431\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043e\u043f\u0438\u0442, \u0441\u0438\u0441\u0442\u0435\u043c\u0438 \u0438 \u0441\u043e\u0444\u0442\u0443\u0435\u0440."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0438\u0437\u043c\u0435\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0442\u0430 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b. \u041c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0431\u0430\u0432\u044f\u0442 \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043c\u0435\u0440\u0438 \u0435\u0444\u0438\u043a\u0430\u0441\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u043f\u043e\u043b\u0443\u0447\u0430\u0442 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432\u0438\u0434\u0435\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0438\u0442\u0435 \u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e. \u0414\u0430\u043d\u043d\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0438\u043b\u0438 \u043f\u043e\u0434\u043e\u0431\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043e\u043f\u0438\u0442, \u0441\u0438\u0441\u0442\u0435\u043c\u0438 \u0438 \u0441\u043e\u0444\u0442\u0443\u0435\u0440."}}} \ No newline at end of file diff --git a/src/s1/config/2.0/purposes/purposes-ca.json b/src/s1/config/2.0/purposes/purposes-ca.json index 2036889d..b8f117c5 100644 --- a/src/s1/config/2.0/purposes/purposes-ca.json +++ b/src/s1/config/2.0/purposes/purposes-ca.json @@ -1 +1 @@ -{"vendorListVersion":79,"lastUpdated":"2021-02-25T16:36:14Z","purposes":{"1":{"id":1,"name":"Emmagatzemar informaci\u00f3 i/o accedir a la informaci\u00f3 d\u2019un dispositiu","description":"Es poden emmagatzemar o accedir a les galetes, els identificadors del dispositiu i altra informaci\u00f3 del seu dispositiu amb les finalitats que se li indiquin.","descriptionLegal":"Els prove\u00efdors poden:\n* Emmagatzemar i accedir a la informaci\u00f3 d\u2019un dispositiu, com ara galetes i identificadors dels dispositius, per a les finalitats que es presenten a un usuari.\n"},"2":{"id":2,"name":"Seleccionar anuncis b\u00e0sics","description":"Se li poden mostrar anuncis en funci\u00f3 del contingut que vost\u00e8 visualitza, l\u2019aplicaci\u00f3 que utilitza, la seva ubicaci\u00f3 aproximada o el seu tipus de dispositiu.","descriptionLegal":"Per fer una selecci\u00f3 dels anuncis b\u00e0sics, els prove\u00efdors poden:\n* Utilitzar informaci\u00f3 en temps real sobre el context en qu\u00e8 es mostrar\u00e0 l\u2019anunci, per mostrar l\u2019anunci, com ara informaci\u00f3 sobre el contingut i el dispositiu (per exemple, tipus de dispositius i funcionalitats, agent d\u2019usuari, URL, adre\u00e7a IP). \n* Utilitzar dades de geolocalitzaci\u00f3 no precises d\u2019un usuari.\n* Controlar la freq\u00fc\u00e8ncia amb qu\u00e8 es mostren anuncis a un usuari.\n* Seq\u00fcenciar l\u2019ordre en qu\u00e8 es mostren els anuncis a l\u2019usuari.\n* Evitar que un anunci s\u2019utilitzi en un context editorial inadequat (perjudicial per a la marca).\nEls prove\u00efdors no poden:\n* Crear un perfil publicitari utilitzant aquesta informaci\u00f3 per a la selecci\u00f3 de futurs anuncis sense una base jur\u00eddica separada i espec\u00edfica per crear un perfil publicitari.\nNota: dades \u00abno precises\u00bb significa que nom\u00e9s es permet donar una ubicaci\u00f3 aproximada en un radi m\u00ednim de 500 metres.\n"},"3":{"id":3,"name":"Crear un perfil publicitari personalitzat","description":"Es pot crear un perfil sobre vost\u00e8 i els seus interessos per mostrar-li anuncis personalitzats que siguin pertinents per a vost\u00e8.","descriptionLegal":"Per crear un perfil publicitari personalitzat, els prove\u00efdors poden:\n* Recollir informaci\u00f3 sobre un usuari, com ara l\u2019activitat de l\u2019usuari, els seus interessos, les visites als llocs web o les aplicacions, la informaci\u00f3 demogr\u00e0fica o la ubicaci\u00f3, per crear o editar un perfil d\u2019usuari i utilitzar-lo en la publicitat personalitzada.\n* Combinar aquesta informaci\u00f3 amb una altra informaci\u00f3 pr\u00e8viament recollida, incl\u00f2s entre diferents llocs web o aplicacions, per crear o editar un perfil d\u2019usuari i utilitzar-lo en la publicitat personalitzada.\n"},"4":{"id":4,"name":"Seleccionar anuncis personalitzats","description":"Se li poden mostrar anuncis personalitzats en funci\u00f3 d\u2019un perfil sobre vost\u00e8.","descriptionLegal":"Per seleccionar anuncis personalitzats, els prove\u00efdors poden:\n* Seleccionar anuncis personalitzats en funci\u00f3 del perfil d\u2019un usuari o altres dades hist\u00f2riques de l\u2019usuari, com ara l\u2019activitat anterior de l\u2019usuari, els interessos, les visites que fa a llocs web o aplicacions, la ubicaci\u00f3 o la informaci\u00f3 demogr\u00e0fica.\n"},"5":{"id":5,"name":"Crear un perfil per a la personalitzaci\u00f3 de continguts","description":"Es pot crear un perfil sobre vost\u00e8 i els seus interessos per mostrar-li contingut personalitzat que sigui pertinent per a vost\u00e8.","descriptionLegal":"Per crear un perfil per a la personalitzaci\u00f3 de continguts, els prove\u00efdors poden:\n* Recollir informaci\u00f3 sobre un usuari, com ara l\u2019activitat de l\u2019usuari, els seus interessos, les visites a llocs web o aplicacions, informaci\u00f3 demogr\u00e0fica o ubicaci\u00f3, per crear o editar un perfil d\u2019usuari per a personalitzar el contingut.\n* Combinar aquesta informaci\u00f3 amb una altra informaci\u00f3 pr\u00e8viament recollida, incl\u00f2s entre diferents llocs web o aplicacions, per crear o editar un perfil d\u2019usuari i utilitzar-lo per a personalitzar el contingut.\n"},"6":{"id":6,"name":"Seleccionar contingut personalitzat","description":"Se li pot mostrar contingut personalitzat en funci\u00f3 d\u2019un perfil sobre vost\u00e8.","descriptionLegal":"Per seleccionar contingut personalitzat, els prove\u00efdors poden:\n* Seleccionar contingut personalitzat en funci\u00f3 del perfil d\u2019un usuari o altres dades hist\u00f2riques de l\u2019usuari, com ara l\u2019activitat anterior de l\u2019usuari, els interessos, les visites que fa a llocs web o aplicacions, la ubicaci\u00f3 o la informaci\u00f3 demogr\u00e0fica.\n"},"7":{"id":7,"name":"Mesurar el rendiment dels anuncis","description":"Es pot mesurar el rendiment i l\u2019efic\u00e0cia dels anuncis que es veuen o els anuncis amb els quals s\u2019interactua.","descriptionLegal":"Per mesurar l\u2019efic\u00e0cia dels anuncis, els prove\u00efdors poden:\n* Mesurar si els anuncis s\u2019han proporcionat a l\u2019usuari i com l\u2019usuari hi ha interactuat amb ells.\n* Proporcionar informes sobre anuncis, incloent-hi la seva efic\u00e0cia i rendiment.\n* Proporcionar informes sobre els usuaris que han interactuat amb els anuncis fent servir dades observades durant la interacci\u00f3 de l\u2019usuari amb aquell anunci.\n* Proporcionar informes als editors sobre els anuncis que es mostren en els seus productes.\n* Mesurar si un anunci s\u2019ofereix en un context editorial adequat (segur per a la marca).\n* Determinar el percentatge de l\u2019anunci que s\u2019ha tingut l\u2019oportunitat de veure\u2019s i la durada d\u2019aquesta oportunitat. \n* Combinar aquesta informaci\u00f3 amb una altra informaci\u00f3 pr\u00e8viament recollida, incl\u00f2s entre diferents llocs web o aplicacions.\nEls prove\u00efdors no poden:\n* Aplicar dades d'informaci\u00f3 sobre l\u2019audi\u00e8ncia, basats en un panell d'usuaris o similars, a les dades de mesurament d'anuncis sense una base jur\u00eddica independent per utilitzar estudis de mercat per tal de generar informaci\u00f3 sobre l'audi\u00e8ncia.\n"},"8":{"id":8,"name":"Mesurar el rendiment del contingut","description":"Es pot mesurar el rendiment i l\u2019efic\u00e0cia del contingut que es veu o amb el qual interactua.","descriptionLegal":"Per mesurar el rendiment del contingut, els prove\u00efdors poden:\n* Mesurar i informar sobre com s\u2019ha proporcionat el contingut als usuaris i com hi han interactuat.\n* Proporcionar informes, utilitzant informaci\u00f3 directament mesurable o informaci\u00f3 coneguda, sobre els usuaris que han interactuat amb el contingut.\n* Combinar aquesta informaci\u00f3 amb una altra informaci\u00f3 pr\u00e8viament recollida, incl\u00f2s entre diferents llocs web o aplicacions.\nEls prove\u00efdors no poden:\n* Mesurar si els anuncis (inclosos els anuncis nadius) s\u2019han proporcionat a un usuari i com i si l\u2019usuari hi ha interactuat sense tenir una base legal alternativa ho permeti.\n* Aplicar dades d'informaci\u00f3 sobre l\u2019audi\u00e8ncia, basats en un panell d'usuaris o similars, a les dades de mesurament del rendiment del contingut sense una base jur\u00eddica independent per utilitzar estudis de mercat per tal de generar informaci\u00f3 sobre l'audi\u00e8ncia.\n"},"9":{"id":9,"name":"Utilitzar estudis de mercat per generar coneixements sobre l\u2019audi\u00e8ncia","description":"Els estudis de mercat es poden utilitzar per obtenir m\u00e9s informaci\u00f3 de l\u2019audi\u00e8ncia que visita llocs web/aplicacions i visualitza anuncis.","descriptionLegal":"Per utilitzar estudis de mercat per generar coneixements sobre l\u2019audi\u00e8ncia, els prove\u00efdors poden:\n* Proporcionar informes agregats als anunciants o als seus representants sobre l\u2019audi\u00e8ncia a la qual han arribat els seus anuncis, a trav\u00e9s d\u2019informaci\u00f3 basada en panells d\u2019audi\u00e8ncia o obtinguda de manera similar.\n* Proporcionar informes agregats als editors sobre l\u2019audi\u00e8ncia a la qual s\u2019ha mostrat el contingut i/o els anuncis o que hi ha interactuat amb ells en el seus productes, aplicant informaci\u00f3 basada en panells d\u2019audi\u00e8ncia o obtinguda de manera similar. \n* Associar dades obtingudes fora de l\u00ednia amb un usuari en l\u00ednia amb finalitats de estudis de mercat per generar coneixements sobre l\u2019audi\u00e8ncia si els prove\u00efdors han declarat que relacionen i combinen fonts de dades obtingudes fora de l\u00ednia.\n* Combinar aquesta informaci\u00f3 amb una altra informaci\u00f3 pr\u00e8viament recollida, incl\u00f2s entre diferents llocs web o aplicacions.\nEls prove\u00efdors no poden: \n* Mesurar el rendiment i l\u2019efic\u00e0cia dels anuncis que s\u2019han mostrat a un usuari concret o amb els quals ha interactuat, sense una base jur\u00eddica separada per mesurar el rendiment dels anuncis.\n* Mesurar quin contingut s\u2019ha mostrat a un usuari concret i com hi ha interactuat, sense una base jur\u00eddica separada per mesurar el rendiment del contingut.\n"},"10":{"id":10,"name":"Desenvolupar i millorar productes","description":"Les seves dades es poden utilitzar per millorar els sistemes i programari existents, i desenvolupar nous productes.","descriptionLegal":"Per desenvolupar productes nous i millorar els productes, els prove\u00efdors poden:\n* Utilitzar informaci\u00f3 per millorar els seus productes existents amb funcions noves i desenvolupar productes nous.\n* Crear nous models i algoritmes mitjan\u00e7ant l\u2019aprenentatge autom\u00e0tic.\nEls prove\u00efdors no poden:\n* Fer, amb aquesta finalitat, cap altra operaci\u00f3 de tractament de dades permesa per a una altra finalitat.\n"}},"specialPurposes":{"1":{"id":1,"name":"Garantir la seguretat, evitar el frau i depurar errors","description":"Les seves dades es poden utilitzar per controlar i prevenir l\u2019activitat fraudulenta i garantir que els sistemes i els processos funcionin correctament i de manera segura.","descriptionLegal":"Per garantir la seguretat, evitar el frau i depurar errors, els prove\u00efdors poden:\n* Assegurar-se que les dades es transmeten de manera segura. \n* Detectar i prevenir activitats malicioses, fraudulentes, inacceptables o il\u00b7legals.\n* Assegurar el funcionament correcte i eficient dels sistemes i processos, incl\u00f2s supervisar i millorar el rendiment dels sistemes i processos implicats en les finalitats permeses.\nEls prove\u00efdors no poden:\n* Fer, amb aquesta finalitat, cap altra operaci\u00f3 de tractament de dades permesa per a una altra finalitat.\nNota: Les dades recollides i utilitzades per garantir la seguretat, prevenir el frau i per a la depuraci\u00f3 de errors poden incloure caracter\u00edstiques del dispositiu enviades autom\u00e0ticament per a la seva identificaci\u00f3, dades de geolocalitzaci\u00f3 precises i dades obtingudes mitjan\u00e7ant l\u2019exploraci\u00f3 activa de les caracter\u00edstiques del dispositiu per a la seva identificaci\u00f3, sense que calgui revelar mes informaci\u00f3 i/o una acceptaci\u00f3 separada.\n"},"2":{"id":2,"name":"Lliurar t\u00e8cnicament anuncis o contingut","description":"El seu dispositiu pot rebre i enviar informaci\u00f3 que li permeti veure i interactuar amb anuncis i contingut.","descriptionLegal":"Per lliurar informaci\u00f3 i respondre a sol\u00b7licituds t\u00e8cniques, els prove\u00efdors poden:\n* Utilitzar l\u2019adre\u00e7a IP d\u2019un usuari per servir un anunci a trav\u00e9s d\u2019Internet.\n* Respondre a la interacci\u00f3 d\u2019un usuari amb un anunci enviant l\u2019usuari a una p\u00e0gina de destinaci\u00f3.\n* Utilitzar l\u2019adre\u00e7a IP d\u2019un usuari per servir contingut per Internet.\n* Respondre a la interacci\u00f3 d\u2019un usuari amb el contingut enviant l\u2019usuari a una p\u00e0gina de destinaci\u00f3.\n* Utilitzar informaci\u00f3 sobre el tipus de dispositiu i les seves capacitats per proporcionar anuncis o contingut, per exemple, per proporcionar el fitxer de v\u00eddeo o la creativitat de l\u2019anunci de la mida adequada en un format compatible amb el dispositiu.\nEls prove\u00efdors no poden:\n* Fer, amb aquesta finalitat, cap altra operaci\u00f3 de tractament de dades permesa per a una altra finalitat.\n"}},"features":{"1":{"id":1,"name":"Relacionar i combinar fonts de dades obtingudes fora de l\u00ednia","description":"Les dades obtingudes de fonts de dades fora de l\u00ednia es poden combinar amb la seva activitat en l\u00ednia per a una o m\u00e9s finalitats.","descriptionLegal":"Els prove\u00efdors poden: \n* Combinar dades obtingudes fora de l\u00ednia amb dades recollides en l\u00ednia per a una o m\u00e9s finalitats o finalitats especials.\n"},"2":{"id":2,"name":"Vincular diferents dispositius","description":"Es pot determinar que diferents dispositius pertanyen a vost\u00e8 o a la seva llar per a una o m\u00e9s finalitats.","descriptionLegal":"Els prove\u00efdors poden:\n* Determinar de manera determinista que dos o m\u00e9s dispositius pertanyen al mateix usuari o la mateixa llar.\n* Determinar de manera probabil\u00edstica que dos o m\u00e9s dispositius pertanyen al mateix usuari o la mateixa llar.\n* Explorar activament les caracter\u00edstiques del dispositiu per trobar la seva identificaci\u00f3 probabil\u00edstica si els usuaris han perm\u00e8s als prove\u00efdors explorar activament les caracter\u00edstiques del dispositiu per la seva identificaci\u00f3 (funcionalitat especial 2).\n"},"3":{"id":3,"name":"Rebre i utilitzar per a la seva identificaci\u00f3 les caracter\u00edstiques del dispositiu que s\u2019envien autom\u00e0ticament","description":"El seu dispositiu pot distingir-se d\u2019altres dispositius a partir de la informaci\u00f3 que envia autom\u00e0ticament, com l\u2019adre\u00e7a IP o el tipus de navegador.","descriptionLegal":"Els prove\u00efdors poden:\n* Crear un identificador usant les dades recollides autom\u00e0ticament en un dispositiu per a funcions espec\u00edfiques, per exemple, adre\u00e7a IP, la cadena d\u2019usuari-agent.\n* Utilitzar aquest identificador per intentar tornar a identificar un dispositiu.\nEls prove\u00efdors no poden:\n* Crear un identificador utilitzant dades recollides mitjan\u00e7ant l\u2019exploraci\u00f3 activa d\u2019un dispositiu per trobar caracter\u00edstiques espec\u00edfiques; per exemple, el tipus de lletra instal\u00b7lat o la resoluci\u00f3 de pantalla, sense que l\u2019usuari hagi donat el consentiment per separat per explorar activament les caracter\u00edstiques del dispositiu para a la seva identificaci\u00f3.\n* Utilitzar aquest identificador per tornar a identificar un dispositiu.\n"}},"specialFeatures":{"1":{"id":1,"name":"Utilitzar dades de geolocalitzaci\u00f3 precises","description":"Les seves dades de geolocalitzaci\u00f3 precisa es poden utilitzar per a una o m\u00e9s finalitats. Aix\u00f2 vol dir que la seva ubicaci\u00f3 pot tenir una precisi\u00f3 de pocs metres.","descriptionLegal":"Els prove\u00efdors poden:\n* Recollir i tractar dades de geolocalitzaci\u00f3 precises per a una o m\u00e9s finalitats.\nNota: la geolocalitzaci\u00f3 precisa significa que no hi ha restriccions per a la precisi\u00f3 de la ubicaci\u00f3 d\u2019un usuari; pot tenir una precisi\u00f3 de pocs metres.\n"},"2":{"id":2,"name":"Explorar activament les caracter\u00edstiques del dispositiu per a la seva identificaci\u00f3","description":"Es pot identificar el seu dispositiu en funci\u00f3 de l\u2019an\u00e0lisi de la combinaci\u00f3 \u00fanica de caracter\u00edstiques del seu dispositiu.","descriptionLegal":"Els prove\u00efdors poden:\n* Crear un identificador utilitzant dades recollides mitjan\u00e7ant la exploraci\u00f3 activa d\u2019un dispositiu per trobar caracter\u00edstiques espec\u00edfiques, per exemple, els tipus de lletra instal\u00b7lat o la resoluci\u00f3 de pantalla. \n* Utilitzar aquest identificador per tornar a identificar un dispositiu.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Dades de geolocalitzaci\u00f3 precises i identificaci\u00f3 mitjan\u00e7ant l\u2019exploraci\u00f3 de dispositius","description":"Es pot utilitzar la geolocalitzaci\u00f3 espec\u00edfica i informaci\u00f3 sobre les caracter\u00edstiques del dispositiu."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Anuncis b\u00e0sics i mesurament dels anuncis","description":"Es poden proporcionar anuncis b\u00e0sics. Es pot mesurar el rendiment dels anuncis."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Anuncis personalitzats","description":"Els anuncis es poden personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor els anuncis."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Anuncis b\u00e0sics, mesurament dels anuncis i estudis d\u2019audi\u00e8ncia","description":"Es poden proporcionar anuncis b\u00e0sics. Es pot mesurar el rendiment dels anuncis. Es pot derivar informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Anuncis b\u00e0sics, perfil d\u2019anuncis personalitzats i mesurament dels anuncis","description":"Es poden proporcionar anuncis b\u00e0sics. Es pot mesurar el rendiment dels anuncis. Es pot derivar informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Mostrar anuncis personalitzats i mesurament dels anuncis","description":"Els anuncis es poden personalitzar en funci\u00f3 d\u2019un perfil. Es pot mesurar el rendiment dels anuncis."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Mostrar anuncis personalitzats, mesurament dels anuncis i informaci\u00f3 de l\u2019audi\u00e8ncia","description":"Els anuncis es poden personalitzar en funci\u00f3 d\u2019un perfil. Es pot mesurar el rendiment dels anuncis. Es pot derivar informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis i el contingut."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Anuncis personalitzats i mesurament dels anuncis","description":"Els anuncis es poden personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor els anuncis. Es pot mesurar el rendiment dels anuncis."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Anuncis personalitzats, mesurament dels anuncis i coneixements sobre l\u2019audi\u00e8ncia","description":"Els anuncis es poden personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor els anuncis. Es pot mesurar el rendiment dels anuncis. Es pot derivar informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Crear perfil i selecci\u00f3 d\u2019anuncis personalitzats","description":"Els anuncis es poden personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor els anuncis."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Contingut personalitzat","description":"El contingut es pot personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor el contingut."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Mostrar contingut personalitzat i mesurament del contingut","description":"El contingut es pot personalitzar en funci\u00f3 d\u2019un perfil. El rendiment del contingut es pot mesurar."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Mostrar contingut personalitzat, mesurament del contingut i coneixements sobre l\u2019audi\u00e8ncia","description":"El contingut es pot personalitzar en funci\u00f3 d\u2019un perfil. El rendiment del contingut es pot mesurar. Es pot derivar informaci\u00f3 sobre el p\u00fablic que ha vist el contingut."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Contingut personalitzat i mesurament del contingut","description":"El contingut es pot personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor el contingut. El rendiment del contingut es pot mesurar."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Contingut personalitzat, mesurament del contingut i coneixements sobre l\u2019audi\u00e8ncia","description":"El contingut es pot personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor el contingut. El rendiment del contingut es pot mesurar. Es pot derivar informaci\u00f3 sobre el p\u00fablic que ha vist el contingut."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Contingut personalitzat, mesurament del contingut, coneixements sobre l\u2019audi\u00e8ncia i desenvolupament de productes","description":"El contingut es pot personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor el contingut. El rendiment del contingut es pot mesurar. Es pot derivar informaci\u00f3 sobre el p\u00fablic el contingut. Les dades es poden utilitzar per crear o millorar l\u2019experi\u00e8ncia de l\u2019usuari, els sistemes i el programari."},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Mesurament del contingut i els anuncis, i coneixements sobre l\u2019audi\u00e8ncia","description":"Es pot mesurar el rendiment del contingut i els anuncis. Es pot derivar informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis i el contingut."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Mesurament del contingut i els anuncis","description":"Es pot mesurar el rendiment del contingut i els anuncis."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Mesurament dels anuncis i coneixements sobre l\u2019audi\u00e8ncia","description":"Es pot mesurar l\u2019anunci. Es pot derivar informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Mesurament dels anuncis i el contingut, coneixements sobre l\u2019audi\u00e8ncia i desenvolupament de productes","description":"Es pot mesurar el rendiment del contingut i els anuncis. Es pot derivar informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis i el contingut. Les dades es poden utilitzar per crear o millorar l\u2019experi\u00e8ncia de l\u2019usuari, els sistemes i el programari."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Mesurament del contingut, coneixements sobre l\u2019audi\u00e8ncia i desenvolupament de productes","description":"El rendiment del contingut es pot mesurar. Es pot derivar informaci\u00f3 sobre el p\u00fablic que ha vist el contingut. Les dades es poden utilitzar per crear o millorar l\u2019experi\u00e8ncia de l\u2019usuari, els sistemes i el programari."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Mesurament del contingut i desenvolupament de productes","description":"El rendiment del contingut es pot mesurar. Les dades es poden utilitzar per crear o millorar l\u2019experi\u00e8ncia de l\u2019usuari, els sistemes i el programari."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Mostrar contingut i anuncis personalitzats, i mesurament dels anuncis i del contingut","description":"Els anuncis i el contingut es poden personalitzar en funci\u00f3 d\u2019un perfil. Es pot mesurar el rendiment del contingut i els anuncis."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Mostrar contingut i anuncis personalitzats, mesurament dels anuncis i el contingut, i coneixements sobre l\u2019audi\u00e8ncia","description":"Els anuncis i el contingut es poden personalitzar en funci\u00f3 d\u2019un perfil. Es pot mesurar el rendiment del contingut i els anuncis. Es pot derivar informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis i el contingut. Les dades es poden utilitzar per crear o millorar l\u2019experi\u00e8ncia de l\u2019usuari, els sistemes i el programari."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Personalitzar contingut i anuncis, i mesurament dels anuncis i el contingut","description":"Els anuncis i el contingut es poden personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor els anuncis i el contingut. Es pot mesurar el rendiment del contingut i els anuncis."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Personalitzar contingut i anuncis, mesurament dels anuncis i el contingut, i coneixements sobre l\u2019audi\u00e8ncia","description":"Els anuncis i el contingut es poden personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor els anuncis i el contingut. Es pot mesurar el rendiment del contingut i els anuncis. Es pot derivar informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis i el contingut."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Perfilar per publicitat i contingut personalitzat","description":"Es poden afegir m\u00e9s dades per personalitzar els anuncis i el contingut."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Mostrar contingut i anuncis personalitzats","description":"Els anuncis i el contingut es poden personalitzar en funci\u00f3 d\u2019un perfil."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Anuncis b\u00e0sics, mesurament del contingut i els anuncis i coneixements sobre l\u2019audi\u00e8ncia","description":"Es poden proporcionar anuncis b\u00e0sics. Es pot mesurar el rendiment del contingut i els anuncis. Es pot derivar informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis i el contingut."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Mostrar anuncis personalitzats, contingut personalitzat, mesurament dels anuncis i el contingut i coneixements sobre l\u2019audi\u00e8ncia","description":"Els anuncis i el contingut es poden personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor el contingut. Es pot mesurar el rendiment del contingut i els anuncis. Es pot derivar informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis i el contingut."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Mostrar anuncis personalitzats, contingut personalitzat, mesurament dels anuncis i el contingut, coneixements sobre l\u2019audi\u00e8ncia i desenvolupament de productes","description":"Els anuncis i el contingut es poden personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor el contingut. Es pot mesurar el rendiment del contingut i els anuncis. Es pot derivar informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis i el contingut. Les dades es poden utilitzar per crear o millorar l\u2019experi\u00e8ncia de l\u2019usuari, els sistemes i el programari."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Anuncis b\u00e0sics, contingut personalitzat, mesurament dels anuncis i el contingut, i coneixements sobre l\u2019audi\u00e8ncia","description":"Es poden proporcionar anuncis b\u00e0sics. El contingut es pot personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor el contingut. Es pot mesurar el rendiment del contingut i els anuncis. Es pot derivar informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis i el contingut."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Anuncis b\u00e0sics, contingut personalitzat, mesurament dels anuncis i el contingut, coneixements sobre l\u2019audi\u00e8ncia i desenvolupament de productes","description":"Es poden proporcionar anuncis b\u00e0sics. El contingut es pot personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor el contingut. Es pot mesurar el rendiment del contingut i els anuncis. Es pot mesurar el rendiment del contingut i els anuncis. Es pot derivar informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis i el contingut. Les dades es poden utilitzar per crear o millorar l\u2019experi\u00e8ncia de l\u2019usuari, els sistemes i el programari."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Anuncis b\u00e0sics, contingut personalitzat, mesurament del contingut i coneixements sobre l\u2019audi\u00e8ncia","description":"Es poden proporcionar anuncis b\u00e0sics. El contingut es pot personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor el contingut. Es pot mesurar el rendiment del contingut. Es pot derivar informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis i el contingut."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Anuncis b\u00e0sics, contingut personalitzat, mesurament del contingut, coneixements sobre l\u2019audi\u00e8ncia i desenvolupament de productes","description":"Es poden proporcionar anuncis b\u00e0sics. El contingut es pot personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor el contingut. El rendiment del contingut es pot mesurar. Es pot derivar informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis i el contingut. Les dades es poden utilitzar per crear o millorar l\u2019experi\u00e8ncia de l\u2019usuari, els sistemes i el programari."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Anuncis b\u00e0sics, contingut personalitzat i mesurament dels anuncis","description":"Es poden proporcionar anuncis b\u00e0sics. El contingut es pot personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor el contingut. Es pot mesurar el rendiment dels anuncis."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Anuncis b\u00e0sics, contingut personalitzat, mesurament dels anuncis i desenvolupament de productes","description":"Es poden proporcionar anuncis b\u00e0sics. El contingut es pot personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor el contingut. Es pot mesurar el rendiment dels anuncis. Les dades es poden utilitzar per crear o millorar l\u2019experi\u00e8ncia de l\u2019usuari, els sistemes i el programari."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Anuncis personalitzats, mesurament dels anuncis i desenvolupament de productes","description":"Els anuncis es poden personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor els anuncis. Es pot mesurar el rendiment dels anuncis. Les dades es poden utilitzar per crear o millorar l\u2019experi\u00e8ncia de l\u2019usuari, els sistemes i el programari."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Anuncis personalitzats, mesurament dels anuncis, coneixements sobre el p\u00fablic i desenvolupament de productes","description":"Els anuncis es poden personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor els anuncis. Es pot mesurar el rendiment dels anuncis. Es pot obtenir informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis i se\u2019n pot derivar contingut. Les dades es poden utilitzar per crear o millorar l\u2019experi\u00e8ncia de l\u2019usuari, els sistemes i el programari."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Anuncis personalitzats, mesurament dels anuncis i el contingut, coneixements sobre el p\u00fablic i desenvolupament de productes","description":"Els anuncis es poden personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor els anuncis. Es pot mesurar el rendiment del contingut i els anuncis. Es pot obtenir informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis i se\u2019n pot derivar contingut. Les dades es poden utilitzar per crear o millorar l\u2019experi\u00e8ncia de l\u2019usuari, els sistemes i el programari."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Anuncis personalitzats, visualitzaci\u00f3 de contingut personalitzat, mesurament dels anuncis i el contingut, coneixements sobre el p\u00fablic i desenvolupament de productes","description":"Els anuncis i el contingut es poden personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor els anuncis. Es pot mesurar el rendiment del contingut i els anuncis. Es pot obtenir informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis i se\u2019n pot derivar contingut. Les dades es poden utilitzar per crear o millorar l\u2019experi\u00e8ncia de l\u2019usuari, els sistemes i el programari."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Anuncis i contingut personalitzats, mesurament dels anuncis i el contingut, coneixements sobre el p\u00fablic i desenvolupament de productes","description":"Els anuncis i el contingut es poden personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor els anuncis i el contingut. Es pot mesurar el rendiment del contingut i els anuncis. Es pot obtenir informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis i se\u2019n pot derivar contingut. Les dades es poden utilitzar per crear o millorar l\u2019experi\u00e8ncia de l\u2019usuari, els sistemes i el programari."}}} \ No newline at end of file +{"vendorListVersion":94,"lastUpdated":"2021-06-10T16:43:54Z","purposes":{"1":{"id":1,"name":"Emmagatzemar informaci\u00f3 i/o accedir a la informaci\u00f3 d\u2019un dispositiu","description":"Es poden emmagatzemar o accedir a les galetes, els identificadors del dispositiu i altra informaci\u00f3 del seu dispositiu amb les finalitats que se li indiquin.","descriptionLegal":"Els prove\u00efdors poden:\n* Emmagatzemar i accedir a la informaci\u00f3 d\u2019un dispositiu, com ara galetes i identificadors dels dispositius, per a les finalitats que es presenten a un usuari.\n"},"2":{"id":2,"name":"Seleccionar anuncis b\u00e0sics","description":"Se li poden mostrar anuncis en funci\u00f3 del contingut que vost\u00e8 visualitza, l\u2019aplicaci\u00f3 que utilitza, la seva ubicaci\u00f3 aproximada o el seu tipus de dispositiu.","descriptionLegal":"Per fer una selecci\u00f3 dels anuncis b\u00e0sics, els prove\u00efdors poden:\n* Utilitzar informaci\u00f3 en temps real sobre el context en qu\u00e8 es mostrar\u00e0 l\u2019anunci, per mostrar l\u2019anunci, com ara informaci\u00f3 sobre el contingut i el dispositiu (per exemple, tipus de dispositius i funcionalitats, agent d\u2019usuari, URL, adre\u00e7a IP). \n* Utilitzar dades de geolocalitzaci\u00f3 no precises d\u2019un usuari.\n* Controlar la freq\u00fc\u00e8ncia amb qu\u00e8 es mostren anuncis a un usuari.\n* Seq\u00fcenciar l\u2019ordre en qu\u00e8 es mostren els anuncis a l\u2019usuari.\n* Evitar que un anunci s\u2019utilitzi en un context editorial inadequat (perjudicial per a la marca).\nEls prove\u00efdors no poden:\n* Crear un perfil publicitari utilitzant aquesta informaci\u00f3 per a la selecci\u00f3 de futurs anuncis sense una base jur\u00eddica separada i espec\u00edfica per crear un perfil publicitari.\nNota: dades \u00abno precises\u00bb significa que nom\u00e9s es permet donar una ubicaci\u00f3 aproximada en un radi m\u00ednim de 500 metres.\n"},"3":{"id":3,"name":"Crear un perfil publicitari personalitzat","description":"Es pot crear un perfil sobre vost\u00e8 i els seus interessos per mostrar-li anuncis personalitzats que siguin pertinents per a vost\u00e8.","descriptionLegal":"Per crear un perfil publicitari personalitzat, els prove\u00efdors poden:\n* Recollir informaci\u00f3 sobre un usuari, com ara l\u2019activitat de l\u2019usuari, els seus interessos, les visites als llocs web o les aplicacions, la informaci\u00f3 demogr\u00e0fica o la ubicaci\u00f3, per crear o editar un perfil d\u2019usuari i utilitzar-lo en la publicitat personalitzada.\n* Combinar aquesta informaci\u00f3 amb una altra informaci\u00f3 pr\u00e8viament recollida, incl\u00f2s entre diferents llocs web o aplicacions, per crear o editar un perfil d\u2019usuari i utilitzar-lo en la publicitat personalitzada.\n"},"4":{"id":4,"name":"Seleccionar anuncis personalitzats","description":"Se li poden mostrar anuncis personalitzats en funci\u00f3 d\u2019un perfil sobre vost\u00e8.","descriptionLegal":"Per seleccionar anuncis personalitzats, els prove\u00efdors poden:\n* Seleccionar anuncis personalitzats en funci\u00f3 del perfil d\u2019un usuari o altres dades hist\u00f2riques de l\u2019usuari, com ara l\u2019activitat anterior de l\u2019usuari, els interessos, les visites que fa a llocs web o aplicacions, la ubicaci\u00f3 o la informaci\u00f3 demogr\u00e0fica.\n"},"5":{"id":5,"name":"Crear un perfil per a la personalitzaci\u00f3 de continguts","description":"Es pot crear un perfil sobre vost\u00e8 i els seus interessos per mostrar-li contingut personalitzat que sigui pertinent per a vost\u00e8.","descriptionLegal":"Per crear un perfil per a la personalitzaci\u00f3 de continguts, els prove\u00efdors poden:\n* Recollir informaci\u00f3 sobre un usuari, com ara l\u2019activitat de l\u2019usuari, els seus interessos, les visites a llocs web o aplicacions, informaci\u00f3 demogr\u00e0fica o ubicaci\u00f3, per crear o editar un perfil d\u2019usuari per a personalitzar el contingut.\n* Combinar aquesta informaci\u00f3 amb una altra informaci\u00f3 pr\u00e8viament recollida, incl\u00f2s entre diferents llocs web o aplicacions, per crear o editar un perfil d\u2019usuari i utilitzar-lo per a personalitzar el contingut.\n"},"6":{"id":6,"name":"Seleccionar contingut personalitzat","description":"Se li pot mostrar contingut personalitzat en funci\u00f3 d\u2019un perfil sobre vost\u00e8.","descriptionLegal":"Per seleccionar contingut personalitzat, els prove\u00efdors poden:\n* Seleccionar contingut personalitzat en funci\u00f3 del perfil d\u2019un usuari o altres dades hist\u00f2riques de l\u2019usuari, com ara l\u2019activitat anterior de l\u2019usuari, els interessos, les visites que fa a llocs web o aplicacions, la ubicaci\u00f3 o la informaci\u00f3 demogr\u00e0fica.\n"},"7":{"id":7,"name":"Mesurar el rendiment dels anuncis","description":"Es pot mesurar el rendiment i l\u2019efic\u00e0cia dels anuncis que es veuen o els anuncis amb els quals s\u2019interactua.","descriptionLegal":"Per mesurar l\u2019efic\u00e0cia dels anuncis, els prove\u00efdors poden:\n* Mesurar si els anuncis s\u2019han proporcionat a l\u2019usuari i com l\u2019usuari hi ha interactuat amb ells.\n* Proporcionar informes sobre anuncis, incloent-hi la seva efic\u00e0cia i rendiment.\n* Proporcionar informes sobre els usuaris que han interactuat amb els anuncis fent servir dades observades durant la interacci\u00f3 de l\u2019usuari amb aquell anunci.\n* Proporcionar informes als editors sobre els anuncis que es mostren en els seus productes.\n* Mesurar si un anunci s\u2019ofereix en un context editorial adequat (segur per a la marca).\n* Determinar el percentatge de l\u2019anunci que s\u2019ha tingut l\u2019oportunitat de veure\u2019s i la durada d\u2019aquesta oportunitat. \n* Combinar aquesta informaci\u00f3 amb una altra informaci\u00f3 pr\u00e8viament recollida, incl\u00f2s entre diferents llocs web o aplicacions.\nEls prove\u00efdors no poden:\n* Aplicar dades d'informaci\u00f3 sobre l\u2019audi\u00e8ncia, basats en un panell d'usuaris o similars, a les dades de mesurament d'anuncis sense una base jur\u00eddica independent per utilitzar estudis de mercat per tal de generar informaci\u00f3 sobre l'audi\u00e8ncia.\n"},"8":{"id":8,"name":"Mesurar el rendiment del contingut","description":"Es pot mesurar el rendiment i l\u2019efic\u00e0cia del contingut que es veu o amb el qual interactua.","descriptionLegal":"Per mesurar el rendiment del contingut, els prove\u00efdors poden:\n* Mesurar i informar sobre com s\u2019ha proporcionat el contingut als usuaris i com hi han interactuat.\n* Proporcionar informes, utilitzant informaci\u00f3 directament mesurable o informaci\u00f3 coneguda, sobre els usuaris que han interactuat amb el contingut.\n* Combinar aquesta informaci\u00f3 amb una altra informaci\u00f3 pr\u00e8viament recollida, incl\u00f2s entre diferents llocs web o aplicacions.\nEls prove\u00efdors no poden:\n* Mesurar si els anuncis (inclosos els anuncis nadius) s\u2019han proporcionat a un usuari i com i si l\u2019usuari hi ha interactuat sense tenir una base legal alternativa ho permeti.\n* Aplicar dades d'informaci\u00f3 sobre l\u2019audi\u00e8ncia, basats en un panell d'usuaris o similars, a les dades de mesurament del rendiment del contingut sense una base jur\u00eddica independent per utilitzar estudis de mercat per tal de generar informaci\u00f3 sobre l'audi\u00e8ncia.\n"},"9":{"id":9,"name":"Utilitzar estudis de mercat per generar coneixements sobre l\u2019audi\u00e8ncia","description":"Els estudis de mercat es poden utilitzar per obtenir m\u00e9s informaci\u00f3 de l\u2019audi\u00e8ncia que visita llocs web/aplicacions i visualitza anuncis.","descriptionLegal":"Per utilitzar estudis de mercat per generar coneixements sobre l\u2019audi\u00e8ncia, els prove\u00efdors poden:\n* Proporcionar informes agregats als anunciants o als seus representants sobre l\u2019audi\u00e8ncia a la qual han arribat els seus anuncis, a trav\u00e9s d\u2019informaci\u00f3 basada en panells d\u2019audi\u00e8ncia o obtinguda de manera similar.\n* Proporcionar informes agregats als editors sobre l\u2019audi\u00e8ncia a la qual s\u2019ha mostrat el contingut i/o els anuncis o que hi ha interactuat amb ells en el seus productes, aplicant informaci\u00f3 basada en panells d\u2019audi\u00e8ncia o obtinguda de manera similar. \n* Associar dades obtingudes fora de l\u00ednia amb un usuari en l\u00ednia amb finalitats de estudis de mercat per generar coneixements sobre l\u2019audi\u00e8ncia si els prove\u00efdors han declarat que relacionen i combinen fonts de dades obtingudes fora de l\u00ednia.\n* Combinar aquesta informaci\u00f3 amb una altra informaci\u00f3 pr\u00e8viament recollida, incl\u00f2s entre diferents llocs web o aplicacions.\nEls prove\u00efdors no poden: \n* Mesurar el rendiment i l\u2019efic\u00e0cia dels anuncis que s\u2019han mostrat a un usuari concret o amb els quals ha interactuat, sense una base jur\u00eddica separada per mesurar el rendiment dels anuncis.\n* Mesurar quin contingut s\u2019ha mostrat a un usuari concret i com hi ha interactuat, sense una base jur\u00eddica separada per mesurar el rendiment del contingut.\n"},"10":{"id":10,"name":"Desenvolupar i millorar productes","description":"Les seves dades es poden utilitzar per millorar els sistemes i programari existents, i desenvolupar nous productes.","descriptionLegal":"Per desenvolupar productes nous i millorar els productes, els prove\u00efdors poden:\n* Utilitzar informaci\u00f3 per millorar els seus productes existents amb funcions noves i desenvolupar productes nous.\n* Crear nous models i algoritmes mitjan\u00e7ant l\u2019aprenentatge autom\u00e0tic.\nEls prove\u00efdors no poden:\n* Fer, amb aquesta finalitat, cap altra operaci\u00f3 de tractament de dades permesa per a una altra finalitat.\n"}},"specialPurposes":{"1":{"id":1,"name":"Garantir la seguretat, evitar el frau i depurar errors","description":"Les seves dades es poden utilitzar per controlar i prevenir l\u2019activitat fraudulenta i garantir que els sistemes i els processos funcionin correctament i de manera segura.","descriptionLegal":"Per garantir la seguretat, evitar el frau i depurar errors, els prove\u00efdors poden:\n* Assegurar-se que les dades es transmeten de manera segura. \n* Detectar i prevenir activitats malicioses, fraudulentes, inacceptables o il\u00b7legals.\n* Assegurar el funcionament correcte i eficient dels sistemes i processos, incl\u00f2s supervisar i millorar el rendiment dels sistemes i processos implicats en les finalitats permeses.\nEls prove\u00efdors no poden:\n* Fer, amb aquesta finalitat, cap altra operaci\u00f3 de tractament de dades permesa per a una altra finalitat.\nNota: Les dades recollides i utilitzades per garantir la seguretat, prevenir el frau i per a la depuraci\u00f3 de errors poden incloure caracter\u00edstiques del dispositiu enviades autom\u00e0ticament per a la seva identificaci\u00f3, dades de geolocalitzaci\u00f3 precises i dades obtingudes mitjan\u00e7ant l\u2019exploraci\u00f3 activa de les caracter\u00edstiques del dispositiu per a la seva identificaci\u00f3, sense que calgui revelar mes informaci\u00f3 i/o una acceptaci\u00f3 separada.\n"},"2":{"id":2,"name":"Lliurar t\u00e8cnicament anuncis o contingut","description":"El seu dispositiu pot rebre i enviar informaci\u00f3 que li permeti veure i interactuar amb anuncis i contingut.","descriptionLegal":"Per lliurar informaci\u00f3 i respondre a sol\u00b7licituds t\u00e8cniques, els prove\u00efdors poden:\n* Utilitzar l\u2019adre\u00e7a IP d\u2019un usuari per servir un anunci a trav\u00e9s d\u2019Internet.\n* Respondre a la interacci\u00f3 d\u2019un usuari amb un anunci enviant l\u2019usuari a una p\u00e0gina de destinaci\u00f3.\n* Utilitzar l\u2019adre\u00e7a IP d\u2019un usuari per servir contingut per Internet.\n* Respondre a la interacci\u00f3 d\u2019un usuari amb el contingut enviant l\u2019usuari a una p\u00e0gina de destinaci\u00f3.\n* Utilitzar informaci\u00f3 sobre el tipus de dispositiu i les seves capacitats per proporcionar anuncis o contingut, per exemple, per proporcionar el fitxer de v\u00eddeo o la creativitat de l\u2019anunci de la mida adequada en un format compatible amb el dispositiu.\nEls prove\u00efdors no poden:\n* Fer, amb aquesta finalitat, cap altra operaci\u00f3 de tractament de dades permesa per a una altra finalitat.\n"}},"features":{"1":{"id":1,"name":"Relacionar i combinar fonts de dades obtingudes fora de l\u00ednia","description":"Les dades obtingudes de fonts de dades fora de l\u00ednia es poden combinar amb la seva activitat en l\u00ednia per a una o m\u00e9s finalitats.","descriptionLegal":"Els prove\u00efdors poden: \n* Combinar dades obtingudes fora de l\u00ednia amb dades recollides en l\u00ednia per a una o m\u00e9s finalitats o finalitats especials.\n"},"2":{"id":2,"name":"Vincular diferents dispositius","description":"Es pot determinar que diferents dispositius pertanyen a vost\u00e8 o a la seva llar per a una o m\u00e9s finalitats.","descriptionLegal":"Els prove\u00efdors poden:\n* Determinar de manera determinista que dos o m\u00e9s dispositius pertanyen al mateix usuari o la mateixa llar.\n* Determinar de manera probabil\u00edstica que dos o m\u00e9s dispositius pertanyen al mateix usuari o la mateixa llar.\n* Explorar activament les caracter\u00edstiques del dispositiu per trobar la seva identificaci\u00f3 probabil\u00edstica si els usuaris han perm\u00e8s als prove\u00efdors explorar activament les caracter\u00edstiques del dispositiu per la seva identificaci\u00f3 (funcionalitat especial 2).\n"},"3":{"id":3,"name":"Rebre i utilitzar per a la seva identificaci\u00f3 les caracter\u00edstiques del dispositiu que s\u2019envien autom\u00e0ticament","description":"El seu dispositiu pot distingir-se d\u2019altres dispositius a partir de la informaci\u00f3 que envia autom\u00e0ticament, com l\u2019adre\u00e7a IP o el tipus de navegador.","descriptionLegal":"Els prove\u00efdors poden:\n* Crear un identificador usant les dades recollides autom\u00e0ticament en un dispositiu per a funcions espec\u00edfiques, per exemple, adre\u00e7a IP, la cadena d\u2019usuari-agent.\n* Utilitzar aquest identificador per intentar tornar a identificar un dispositiu.\nEls prove\u00efdors no poden:\n* Crear un identificador utilitzant dades recollides mitjan\u00e7ant l\u2019exploraci\u00f3 activa d\u2019un dispositiu per trobar caracter\u00edstiques espec\u00edfiques; per exemple, el tipus de lletra instal\u00b7lat o la resoluci\u00f3 de pantalla, sense que l\u2019usuari hagi donat el consentiment per separat per explorar activament les caracter\u00edstiques del dispositiu para a la seva identificaci\u00f3.\n* Utilitzar aquest identificador per tornar a identificar un dispositiu.\n"}},"specialFeatures":{"1":{"id":1,"name":"Utilitzar dades de geolocalitzaci\u00f3 precises","description":"Les seves dades de geolocalitzaci\u00f3 precisa es poden utilitzar per a una o m\u00e9s finalitats. Aix\u00f2 vol dir que la seva ubicaci\u00f3 pot tenir una precisi\u00f3 de pocs metres.","descriptionLegal":"Els prove\u00efdors poden:\n* Recollir i tractar dades de geolocalitzaci\u00f3 precises per a una o m\u00e9s finalitats.\nNota: la geolocalitzaci\u00f3 precisa significa que no hi ha restriccions per a la precisi\u00f3 de la ubicaci\u00f3 d\u2019un usuari; pot tenir una precisi\u00f3 de pocs metres.\n"},"2":{"id":2,"name":"Explorar activament les caracter\u00edstiques del dispositiu per a la seva identificaci\u00f3","description":"Es pot identificar el seu dispositiu en funci\u00f3 de l\u2019an\u00e0lisi de la combinaci\u00f3 \u00fanica de caracter\u00edstiques del seu dispositiu.","descriptionLegal":"Els prove\u00efdors poden:\n* Crear un identificador utilitzant dades recollides mitjan\u00e7ant la exploraci\u00f3 activa d\u2019un dispositiu per trobar caracter\u00edstiques espec\u00edfiques, per exemple, els tipus de lletra instal\u00b7lat o la resoluci\u00f3 de pantalla. \n* Utilitzar aquest identificador per tornar a identificar un dispositiu.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Dades de geolocalitzaci\u00f3 precises i identificaci\u00f3 mitjan\u00e7ant l\u2019exploraci\u00f3 de dispositius","description":"Es pot utilitzar la geolocalitzaci\u00f3 espec\u00edfica i informaci\u00f3 sobre les caracter\u00edstiques del dispositiu."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Anuncis b\u00e0sics i mesurament dels anuncis","description":"Es poden proporcionar anuncis b\u00e0sics. Es pot mesurar el rendiment dels anuncis."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Anuncis personalitzats","description":"Els anuncis es poden personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor els anuncis."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Anuncis b\u00e0sics, mesurament dels anuncis i estudis d\u2019audi\u00e8ncia","description":"Es poden proporcionar anuncis b\u00e0sics. Es pot mesurar el rendiment dels anuncis. Es pot derivar informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Anuncis b\u00e0sics, perfil d\u2019anuncis personalitzats i mesurament dels anuncis","description":"Es poden proporcionar anuncis b\u00e0sics. Es pot mesurar el rendiment dels anuncis. Es pot derivar informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Mostrar anuncis personalitzats i mesurament dels anuncis","description":"Els anuncis es poden personalitzar en funci\u00f3 d\u2019un perfil. Es pot mesurar el rendiment dels anuncis."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Mostrar anuncis personalitzats, mesurament dels anuncis i informaci\u00f3 de l\u2019audi\u00e8ncia","description":"Els anuncis es poden personalitzar en funci\u00f3 d\u2019un perfil. Es pot mesurar el rendiment dels anuncis. Es pot derivar informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis i el contingut."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Anuncis personalitzats i mesurament dels anuncis","description":"Els anuncis es poden personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor els anuncis. Es pot mesurar el rendiment dels anuncis."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Anuncis personalitzats, mesurament dels anuncis i coneixements sobre l\u2019audi\u00e8ncia","description":"Els anuncis es poden personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor els anuncis. Es pot mesurar el rendiment dels anuncis. Es pot derivar informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Crear perfil i selecci\u00f3 d\u2019anuncis personalitzats","description":"Els anuncis es poden personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor els anuncis."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Contingut personalitzat","description":"El contingut es pot personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor el contingut."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Mostrar contingut personalitzat i mesurament del contingut","description":"El contingut es pot personalitzar en funci\u00f3 d\u2019un perfil. El rendiment del contingut es pot mesurar."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Mostrar contingut personalitzat, mesurament del contingut i coneixements sobre l\u2019audi\u00e8ncia","description":"El contingut es pot personalitzar en funci\u00f3 d\u2019un perfil. El rendiment del contingut es pot mesurar. Es pot derivar informaci\u00f3 sobre el p\u00fablic que ha vist el contingut."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Contingut personalitzat i mesurament del contingut","description":"El contingut es pot personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor el contingut. El rendiment del contingut es pot mesurar."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Contingut personalitzat, mesurament del contingut i coneixements sobre l\u2019audi\u00e8ncia","description":"El contingut es pot personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor el contingut. El rendiment del contingut es pot mesurar. Es pot derivar informaci\u00f3 sobre el p\u00fablic que ha vist el contingut."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Contingut personalitzat, mesurament del contingut, coneixements sobre l\u2019audi\u00e8ncia i desenvolupament de productes","description":"El contingut es pot personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor el contingut. El rendiment del contingut es pot mesurar. Es pot derivar informaci\u00f3 sobre el p\u00fablic el contingut. Les dades es poden utilitzar per crear o millorar l\u2019experi\u00e8ncia de l\u2019usuari, els sistemes i el programari."},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Mesurament del contingut i els anuncis, i coneixements sobre l\u2019audi\u00e8ncia","description":"Es pot mesurar el rendiment del contingut i els anuncis. Es pot derivar informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis i el contingut."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Mesurament del contingut i els anuncis","description":"Es pot mesurar el rendiment del contingut i els anuncis."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Mesurament dels anuncis i coneixements sobre l\u2019audi\u00e8ncia","description":"Es pot mesurar l\u2019anunci. Es pot derivar informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Mesurament dels anuncis i el contingut, coneixements sobre l\u2019audi\u00e8ncia i desenvolupament de productes","description":"Es pot mesurar el rendiment del contingut i els anuncis. Es pot derivar informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis i el contingut. Les dades es poden utilitzar per crear o millorar l\u2019experi\u00e8ncia de l\u2019usuari, els sistemes i el programari."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Mesurament del contingut, coneixements sobre l\u2019audi\u00e8ncia i desenvolupament de productes","description":"El rendiment del contingut es pot mesurar. Es pot derivar informaci\u00f3 sobre el p\u00fablic que ha vist el contingut. Les dades es poden utilitzar per crear o millorar l\u2019experi\u00e8ncia de l\u2019usuari, els sistemes i el programari."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Mesurament del contingut i desenvolupament de productes","description":"El rendiment del contingut es pot mesurar. Les dades es poden utilitzar per crear o millorar l\u2019experi\u00e8ncia de l\u2019usuari, els sistemes i el programari."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Mostrar contingut i anuncis personalitzats, i mesurament dels anuncis i del contingut","description":"Els anuncis i el contingut es poden personalitzar en funci\u00f3 d\u2019un perfil. Es pot mesurar el rendiment del contingut i els anuncis."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Mostrar contingut i anuncis personalitzats, mesurament dels anuncis i el contingut, i coneixements sobre l\u2019audi\u00e8ncia","description":"Els anuncis i el contingut es poden personalitzar en funci\u00f3 d\u2019un perfil. Es pot mesurar el rendiment del contingut i els anuncis. Es pot derivar informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis i el contingut. Les dades es poden utilitzar per crear o millorar l\u2019experi\u00e8ncia de l\u2019usuari, els sistemes i el programari."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Personalitzar contingut i anuncis, i mesurament dels anuncis i el contingut","description":"Els anuncis i el contingut es poden personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor els anuncis i el contingut. Es pot mesurar el rendiment del contingut i els anuncis."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Personalitzar contingut i anuncis, mesurament dels anuncis i el contingut, i coneixements sobre l\u2019audi\u00e8ncia","description":"Els anuncis i el contingut es poden personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor els anuncis i el contingut. Es pot mesurar el rendiment del contingut i els anuncis. Es pot derivar informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis i el contingut."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Perfilar per publicitat i contingut personalitzat","description":"Es poden afegir m\u00e9s dades per personalitzar els anuncis i el contingut."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Mostrar contingut i anuncis personalitzats","description":"Els anuncis i el contingut es poden personalitzar en funci\u00f3 d\u2019un perfil."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Anuncis b\u00e0sics, mesurament del contingut i els anuncis i coneixements sobre l\u2019audi\u00e8ncia","description":"Es poden proporcionar anuncis b\u00e0sics. Es pot mesurar el rendiment del contingut i els anuncis. Es pot derivar informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis i el contingut."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Mostrar anuncis personalitzats, contingut personalitzat, mesurament dels anuncis i el contingut i coneixements sobre l\u2019audi\u00e8ncia","description":"Els anuncis i el contingut es poden personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor el contingut. Es pot mesurar el rendiment del contingut i els anuncis. Es pot derivar informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis i el contingut."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Mostrar anuncis personalitzats, contingut personalitzat, mesurament dels anuncis i el contingut, coneixements sobre l\u2019audi\u00e8ncia i desenvolupament de productes","description":"Els anuncis i el contingut es poden personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor el contingut. Es pot mesurar el rendiment del contingut i els anuncis. Es pot derivar informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis i el contingut. Les dades es poden utilitzar per crear o millorar l\u2019experi\u00e8ncia de l\u2019usuari, els sistemes i el programari."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Anuncis b\u00e0sics, contingut personalitzat, mesurament dels anuncis i el contingut, i coneixements sobre l\u2019audi\u00e8ncia","description":"Es poden proporcionar anuncis b\u00e0sics. El contingut es pot personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor el contingut. Es pot mesurar el rendiment del contingut i els anuncis. Es pot derivar informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis i el contingut."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Anuncis b\u00e0sics, contingut personalitzat, mesurament dels anuncis i el contingut, coneixements sobre l\u2019audi\u00e8ncia i desenvolupament de productes","description":"Es poden proporcionar anuncis b\u00e0sics. El contingut es pot personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor el contingut. Es pot mesurar el rendiment del contingut i els anuncis. Es pot mesurar el rendiment del contingut i els anuncis. Es pot derivar informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis i el contingut. Les dades es poden utilitzar per crear o millorar l\u2019experi\u00e8ncia de l\u2019usuari, els sistemes i el programari."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Anuncis b\u00e0sics, contingut personalitzat, mesurament del contingut i coneixements sobre l\u2019audi\u00e8ncia","description":"Es poden proporcionar anuncis b\u00e0sics. El contingut es pot personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor el contingut. Es pot mesurar el rendiment del contingut. Es pot derivar informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis i el contingut."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Anuncis b\u00e0sics, contingut personalitzat, mesurament del contingut, coneixements sobre l\u2019audi\u00e8ncia i desenvolupament de productes","description":"Es poden proporcionar anuncis b\u00e0sics. El contingut es pot personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor el contingut. El rendiment del contingut es pot mesurar. Es pot derivar informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis i el contingut. Les dades es poden utilitzar per crear o millorar l\u2019experi\u00e8ncia de l\u2019usuari, els sistemes i el programari."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Anuncis b\u00e0sics, contingut personalitzat i mesurament dels anuncis","description":"Es poden proporcionar anuncis b\u00e0sics. El contingut es pot personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor el contingut. Es pot mesurar el rendiment dels anuncis."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Anuncis b\u00e0sics, contingut personalitzat, mesurament dels anuncis i desenvolupament de productes","description":"Es poden proporcionar anuncis b\u00e0sics. El contingut es pot personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor el contingut. Es pot mesurar el rendiment dels anuncis. Les dades es poden utilitzar per crear o millorar l\u2019experi\u00e8ncia de l\u2019usuari, els sistemes i el programari."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Anuncis personalitzats, mesurament dels anuncis i desenvolupament de productes","description":"Els anuncis es poden personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor els anuncis. Es pot mesurar el rendiment dels anuncis. Les dades es poden utilitzar per crear o millorar l\u2019experi\u00e8ncia de l\u2019usuari, els sistemes i el programari."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Anuncis personalitzats, mesurament dels anuncis, coneixements sobre el p\u00fablic i desenvolupament de productes","description":"Els anuncis es poden personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor els anuncis. Es pot mesurar el rendiment dels anuncis. Es pot obtenir informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis i se\u2019n pot derivar contingut. Les dades es poden utilitzar per crear o millorar l\u2019experi\u00e8ncia de l\u2019usuari, els sistemes i el programari."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Anuncis personalitzats, mesurament dels anuncis i el contingut, coneixements sobre el p\u00fablic i desenvolupament de productes","description":"Els anuncis es poden personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor els anuncis. Es pot mesurar el rendiment del contingut i els anuncis. Es pot obtenir informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis i se\u2019n pot derivar contingut. Les dades es poden utilitzar per crear o millorar l\u2019experi\u00e8ncia de l\u2019usuari, els sistemes i el programari."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Anuncis personalitzats, visualitzaci\u00f3 de contingut personalitzat, mesurament dels anuncis i el contingut, coneixements sobre el p\u00fablic i desenvolupament de productes","description":"Els anuncis i el contingut es poden personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor els anuncis. Es pot mesurar el rendiment del contingut i els anuncis. Es pot obtenir informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis i se\u2019n pot derivar contingut. Les dades es poden utilitzar per crear o millorar l\u2019experi\u00e8ncia de l\u2019usuari, els sistemes i el programari."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Anuncis i contingut personalitzats, mesurament dels anuncis i el contingut, coneixements sobre el p\u00fablic i desenvolupament de productes","description":"Els anuncis i el contingut es poden personalitzar en funci\u00f3 d\u2019un perfil. Es poden afegir m\u00e9s dades per personalitzar millor els anuncis i el contingut. Es pot mesurar el rendiment del contingut i els anuncis. Es pot obtenir informaci\u00f3 sobre el p\u00fablic que ha vist els anuncis i se\u2019n pot derivar contingut. Les dades es poden utilitzar per crear o millorar l\u2019experi\u00e8ncia de l\u2019usuari, els sistemes i el programari."}}} \ No newline at end of file diff --git a/src/s1/config/2.0/purposes/purposes-cs.json b/src/s1/config/2.0/purposes/purposes-cs.json index 5858b068..c7bbce05 100644 --- a/src/s1/config/2.0/purposes/purposes-cs.json +++ b/src/s1/config/2.0/purposes/purposes-cs.json @@ -1 +1 @@ -{"vendorListVersion":79,"lastUpdated":"2021-02-25T16:36:15Z","purposes":{"1":{"id":1,"name":"Ukl\u00e1d\u00e1n\u00ed a/nebo p\u0159\u00edstup k informac\u00edm v za\u0159\u00edzen\u00ed","description":"Ve va\u0161em za\u0159\u00edzen\u00ed se mohou ukl\u00e1dat soubory cookie, identifik\u00e1tory za\u0159\u00edzen\u00ed nebo dal\u0161\u00ed informace nebo k nim ve va\u0161em za\u0159\u00edzen\u00ed m\u016f\u017ee b\u00fdt umo\u017en\u011bn p\u0159\u00edstup pro \u00fa\u010dely, kter\u00e9 v\u00e1m byly sd\u011bleny.","descriptionLegal":"Prodejci mohou:\r\n\u25cf\tUkl\u00e1dat a p\u0159istupovat k informac\u00edm v za\u0159\u00edzen\u00ed, jako jsou soubory cookie a identifik\u00e1tory za\u0159\u00edzen\u00ed, o kter\u00fdch byl u\u017eivatel informov\u00e1n.\r"},"2":{"id":2,"name":"Z\u00e1kladn\u00ed nastaven\u00ed reklamy","description":"Reklamy se mohou zobrazovat na z\u00e1klad\u011b obsahu, kter\u00fd prohl\u00ed\u017e\u00edte, aplikace, kterou pou\u017e\u00edv\u00e1te, va\u0161\u00ed p\u0159ibli\u017en\u00e9 polohy nebo typu va\u0161eho za\u0159\u00edzen\u00ed.","descriptionLegal":"Za \u00fa\u010delem z\u00e1kladn\u00edho nastaven\u00ed reklamy mohou prodejci:\n \u25cf Pou\u017e\u00edvat informace v re\u00e1ln\u00e9m \u010dase, pokud jde o kontext, ve kter\u00e9m se bude reklama zobrazovat, k zobrazen\u00ed reklamy v\u010detn\u011b informac\u00ed o obsahu a za\u0159\u00edzen\u00ed, jako jsou: typ a mo\u017enosti za\u0159\u00edzen\u00ed, hlavi\u010dka User-Agent, adresa URL, adresa IP.\n \u25cf Pou\u017e\u00edvat nep\u0159esn\u00e9 \u00fadaje o u\u017eivatelov\u011b geografick\u00e9 poloze.\n \u25cf Kontrolovat \u010detnost reklamy zobrazovan\u00e9 u\u017eivateli.\n \u25cf Stanovit po\u0159ad\u00ed, ve kter\u00e9m se reklamy u\u017eivateli zobrazuj\u00ed.\n \u25cf Br\u00e1nit zobrazov\u00e1n\u00ed reklamy v nevhodn\u00e9m redak\u010dn\u00edm kontextu (ohro\u017euj\u00edc\u00edm zna\u010dku).\n Prodejci nemohou:\n \u25cf Za pomoci t\u011bchto informac\u00ed vytv\u00e1\u0159et profily pro personalizovanou reklamu za \u00fa\u010delem zobrazen\u00ed budouc\u00ed reklamy bez samostatn\u00e9ho pr\u00e1vn\u00edho z\u00e1kladu za \u00fa\u010delem vytv\u00e1\u0159en\u00ed profilu pro personalizovanou reklamu. \n Pozn.: V\u00fdraz nep\u0159esn\u00e9 \u00fadaje p\u0159edstavuje pouze p\u0159ibli\u017enou polohu dovoluj\u00edc\u00ed lokalizaci v okruhu nejm\u00e9n\u011b 500 metr\u016f."},"3":{"id":3,"name":"Vytvo\u0159en\u00ed profilu pro personalizovanou reklamu","description":"Na z\u00e1klad\u011b va\u0161eho chov\u00e1n\u00ed na internetu m\u016f\u017ee b\u00fdt vytvo\u0159en v\u00e1\u0161 profil, aby v\u00e1m mohla b\u00fdt zobrazena relevantn\u00ed reklama.","descriptionLegal":"Za \u00fa\u010delem vytvo\u0159en\u00ed profilu pro personalizovanou reklamu mohou prodejci:\n \u25cf Shroma\u017e\u010fovat informace o u\u017eivateli v\u010detn\u011b jeho aktivity, z\u00e1jm\u016f, n\u00e1v\u0161t\u011bv str\u00e1nek nebo aplikac\u00ed, demografick\u00fdch \u00fadaj\u016f nebo polohy, a to za \u00fa\u010delem vytvo\u0159en\u00ed nebo \u00fapravy u\u017eivatelova profilu pro pou\u017eit\u00ed v personalizovan\u00e9 reklam\u011b.\n \u25cf Kombinovat tyto \u00fadaje s dal\u0161\u00edmi d\u0159\u00edve shrom\u00e1\u017ed\u011bn\u00fdmi \u00fadaji, v\u010detn\u011b \u00fadaj\u016f shrom\u00e1\u017ed\u011bn\u00fdch nap\u0159\u00ed\u010d webov\u00fdmi str\u00e1nkami a aplikacemi, za \u00fa\u010delem vytvo\u0159en\u00ed nebo \u00fapravy u\u017eivatelova profilu pro pou\u017eit\u00ed v personalizovan\u00e9 reklam\u011b."},"4":{"id":4,"name":"V\u00fdb\u011br personalizovan\u00e9 reklamy","description":"Na z\u00e1klad\u011b va\u0161eho profilu se v\u00e1m m\u016f\u017ee zobrazovat personalizovan\u00e1 reklama.","descriptionLegal":"Za \u00fa\u010delem v\u00fdb\u011bru personalizovan\u00e9 reklamy mohou prodejci:\n \u25cf Vyb\u00edrat personalizovanou reklamu na z\u00e1klad\u011b u\u017eivatelova profilu nebo jin\u00fdch dat v\u010detn\u011b u\u017eivatelovy p\u0159edchoz\u00ed aktivity, z\u00e1jm\u016f, n\u00e1v\u0161t\u011bv str\u00e1nek nebo aplikac\u00ed, polohy nebo demografick\u00fdch \u00fadaj\u016f."},"5":{"id":5,"name":"Vytvo\u0159en\u00ed profilu pro personalizovan\u00fd obsah","description":"Na z\u00e1klad\u011b va\u0161eho chov\u00e1n\u00ed na internetu m\u016f\u017ee b\u00fdt vytvo\u0159en v\u00e1\u0161 profil, a to proto, aby v\u00e1m mohl b\u00fdt zobrazov\u00e1n obsah, kter\u00fd je pro v\u00e1s relevantn\u00ed.","descriptionLegal":"Za \u00fa\u010delem vytvo\u0159en\u00ed profilu pro personalizovan\u00fd obsah mohou prodejci:\n\u25cf Shroma\u017e\u010fovat informace o u\u017eivateli v\u010detn\u011b jeho aktivity, z\u00e1jm\u016f, n\u00e1v\u0161t\u011bv str\u00e1nek nebo aplikac\u00ed, demografick\u00fdch \u00fadaj\u016f nebo polohy, a to za \u00fa\u010delem vytvo\u0159en\u00ed nebo \u00fapravy u\u017eivatelsk\u00e9ho profilu pro personalizovan\u00fd obsah.\n\u25cf Kombinovat tyto informace s dal\u0161\u00edmi d\u0159\u00edve shrom\u00e1\u017ed\u011bn\u00fdmi informacemi v\u010detn\u011b t\u011bch z\u00edskan\u00fdch nap\u0159\u00ed\u010d webov\u00fdmi str\u00e1nkami a aplikacemi za \u00fa\u010delem vytvo\u0159en\u00ed nebo \u00fapravy u\u017eivatelsk\u00e9ho profilu pro personalizovan\u00fd obsah."},"6":{"id":6,"name":"V\u00fdb\u011br personalizovan\u00e9ho obsahu","description":"Na z\u00e1klad\u011b va\u0161eho profilu se v\u00e1m m\u016f\u017ee zobrazovat personalizovan\u00fd obsah.","descriptionLegal":"Za \u00fa\u010delem v\u00fdb\u011bru personalizovan\u00e9ho obsahu mohou prodejci:\n\u25cf Vyb\u00edrat personalizovan\u00fd obsah na z\u00e1klad\u011b u\u017eivatelova profilu nebo jin\u00fdch dat v\u010detn\u011b u\u017eivatelovy p\u0159edchoz\u00ed aktivity, z\u00e1jm\u016f, n\u00e1v\u0161t\u011bv str\u00e1nek nebo aplikac\u00ed, polohy nebo demografick\u00fdch \u00fadaj\u016f.\n"},"7":{"id":7,"name":"M\u011b\u0159en\u00ed v\u00fdkonu reklamy","description":"V\u00fdkon a \u00fa\u010dinnost reklamy, kterou vid\u00edte nebo na kterou reagujete, mohou b\u00fdt m\u011b\u0159eny","descriptionLegal":"Za \u00fa\u010delem m\u011b\u0159en\u00ed v\u00fdkonu reklamy mohou prodejci:\n\u25cf M\u011b\u0159it zobrazov\u00e1n\u00ed reklam u\u017eivateli a jeho reakce na n\u011b.\n\u25cf Poskytovat informace o reklam\u00e1ch, v\u010detn\u011b jejich v\u00fdkonu a \u00fa\u010dinnosti.\n\u25cf Poskytovat informace o u\u017eivatel\u00edch na z\u00e1klad\u011b dat sebran\u00fdch v pr\u016fb\u011bhu jejich reakce na zobrazenou reklamu.\n\u25cf Poskytovat informace vydavatel\u016fm o reklam\u00e1ch zobrazen\u00fdch v r\u00e1mci jimi vlastn\u011bn\u00fdch kan\u00e1l\u016f.\n\u25cf M\u011b\u0159it zobrazov\u00e1n\u00ed reklamy ve vhodn\u00e9m redak\u010dn\u00edm kontextu (neohro\u017euj\u00edc\u00edm zna\u010dku).\n\u25cf Ur\u010dit procento reklamy, u n\u00ed\u017e byla p\u0159\u00edle\u017eitost ke zhl\u00e9dnut\u00ed, a dobu trv\u00e1n\u00ed takov\u00e9 p\u0159\u00edle\u017eitosti.\n\u25cf Kombinovat tyto informace s dal\u0161\u00edmi d\u0159\u00edve shrom\u00e1\u017ed\u011bn\u00fdmi informacemi v\u010detn\u011b t\u011bch shrom\u00e1\u017ed\u011bn\u00fdch nap\u0159\u00ed\u010d webov\u00fdmi str\u00e1nkami a aplikacemi.\nProdejci nemohou:\n\u25cf Pou\u017e\u00edt poznatky o u\u017eivatel\u00edch z\u00edskan\u00e9 z panelu (vzorku u\u017eivatel\u016f) nebo podobn\u00fdm zp\u016fsobem na data o m\u011b\u0159en\u00ed v\u00fdkonu reklamy bez samostatn\u00e9ho pr\u00e1vn\u00edho z\u00e1kladu za \u00fa\u010delem pou\u017eit\u00ed v\u00fdzkumu trhu pro z\u00edsk\u00e1v\u00e1n\u00ed poznatk\u016f o u\u017eivatel\u00edch. \n"},"8":{"id":8,"name":"M\u011b\u0159en\u00ed v\u00fdkonu obsahu","description":"\u00da\u010dinnost a v\u00fdkon obsahu, kter\u00fd vid\u00edte nebo na kter\u00fd reagujete, mohou b\u00fdt m\u011b\u0159eny.","descriptionLegal":"Za \u00fa\u010delem m\u011b\u0159en\u00ed v\u00fdkonu obsahu mohou prodejci:\n\u25cf M\u011b\u0159it zobrazov\u00e1n\u00ed obsahu u\u017eivatel\u016fm a jejich reakce na n\u011bj, a poskytovat o tom informace.\n\u25cf Poskytovat informace o tom, jak u\u017eivatel\u00e9 na obsah reagovali, a to za pou\u017eit\u00ed p\u0159\u00edmo m\u011b\u0159iteln\u00fdch nebo zn\u00e1m\u00fdch informac\u00ed o u\u017eivatel\u00edch.\n\u25cf Kombinovat tyto informace s jin\u00fdmi d\u0159\u00edve shrom\u00e1\u017ed\u011bn\u00fdmi informacemi v\u010detn\u011b t\u011bch shrom\u00e1\u017ed\u011bn\u00fdch nap\u0159\u00ed\u010d webov\u00fdmi str\u00e1nkami a aplikacemi.\nProdejci nemohou:\n\u25cf M\u011b\u0159it, zda a jak\u00fdmi zp\u016fsobem byly reklamy (v\u010detn\u011b nativn\u00ed reklamy) zobrazeny a jak na n\u011b u\u017eivatel reagoval, nemaj\u00ed-li k tomu samostatn\u00fd pr\u00e1vn\u00ed z\u00e1klad.\n\u25cf Pou\u017e\u00edt poznatky o u\u017eivatel\u00edch z\u00edskan\u00e9 z panelu (vzorku u\u017eivatel\u016f) nebo podobn\u00fdm zp\u016fsobem na data o m\u011b\u0159en\u00ed v\u00fdkonu obsahu bez samostatn\u00e9ho pr\u00e1vn\u00edho z\u00e1kladu za \u00fa\u010delem pou\u017eit\u00ed v\u00fdzkumu trhu pro z\u00edsk\u00e1v\u00e1n\u00ed poznatk\u016f o u\u017eivatel\u00edch"},"9":{"id":9,"name":"Pou\u017e\u00edv\u00e1n\u00ed v\u00fdzkumu trhu pro z\u00edsk\u00e1n\u00ed poznatk\u016f o u\u017eivatel\u00edch","description":"V\u00fdzkum trhu lze vyu\u017e\u00edt k z\u00edsk\u00e1n\u00ed v\u00edce informac\u00ed o u\u017eivatel\u00edch, kte\u0159\u00ed nav\u0161t\u011bvuj\u00ed str\u00e1nky/aplikace a jim\u017e jsou zobrazeny reklamy.","descriptionLegal":"Za \u00fa\u010delem pou\u017eit\u00ed v\u00fdzkumu trhu pro z\u00edsk\u00e1n\u00ed poznatk\u016f o u\u017eivatel\u00edch mohou prodejci:\n\u25cf Poskytovat souhrnn\u00e9 informace inzerent\u016fm nebo jejich z\u00e1stupc\u016fm o u\u017eivatel\u00edch, kter\u00e9 jejich reklama zas\u00e1hla, a to na z\u00e1klad\u011b informac\u00ed ze vzorku zasa\u017een\u00fdch u\u017eivatel\u016f nebo jin\u00fdch odvozen\u00fdch informac\u00ed.\n\u25cf Poskytovat souhrnn\u00e9 informace vydavatel\u016fm o u\u017eivatel\u00edch, kter\u00fdm se v r\u00e1mci jimi vlastn\u011bn\u00fdch kan\u00e1l\u016f zobrazil obsah a/nebo reklama nebo kte\u0159\u00ed na obsah nebo reklamu reagovali, a to na z\u00e1klad\u011b informac\u00ed ze vzorku zasa\u017een\u00fdch u\u017eivatel\u016f nebo jin\u00fdch odvozen\u00fdch informac\u00ed.\n\u25cf Spojovat offline data s online u\u017eivatelem pro \u00fa\u010dely v\u00fdzkumu trhu pro z\u00edsk\u00e1v\u00e1n\u00ed poznatk\u016f o u\u017eivatel\u00edch, pokud prodejci deklarovali, \u017ee p\u0159i\u0159azuj\u00ed a kombinuj\u00ed zdroje offline dat.\n\u25cf Kombinovat tato data s jin\u00fdmi d\u0159\u00edve shrom\u00e1\u017ed\u011bn\u00fdmi \u00fadaji v\u010detn\u011b t\u011bch shrom\u00e1\u017ed\u011bn\u00fdch nap\u0159\u00ed\u010d webov\u00fdmi str\u00e1nkami a aplikacemi.\nProdejci nemohou:\n\u25cf M\u011b\u0159it \u00fa\u010dinnost a v\u00fdkon reklamy, kter\u00e1 se konkr\u00e9tn\u00edmu u\u017eivateli zobrazila nebo na ni\u017e reagoval, bez pr\u00e1vn\u00edho z\u00e1kladu pro \u00fa\u010del m\u011b\u0159en\u00ed v\u00fdkonu reklamy.\n\u25cf M\u011b\u0159it zobrazov\u00e1n\u00ed obsahu konkr\u00e9tn\u00edmu u\u017eivateli a jeho reakc\u00ed na n\u011bj, bez pr\u00e1vn\u00edho z\u00e1kladu pro \u00fa\u010del m\u011b\u0159en\u00ed v\u00fdkonu obsahu."},"10":{"id":10,"name":"V\u00fdvoj a zlep\u0161ov\u00e1n\u00ed produkt\u016f","description":"Va\u0161e \u00fadaje lze vyu\u017e\u00edt ke zlep\u0161en\u00ed st\u00e1vaj\u00edc\u00edch syst\u00e9m\u016f a softwaru a k v\u00fdvoji nov\u00fdch produkt\u016f.","descriptionLegal":"Za \u00fa\u010delem v\u00fdvoje nov\u00fdch produkt\u016f a zlep\u0161ov\u00e1n\u00ed produkt\u016f mohou prodejci:\n\u25cf Pou\u017e\u00edvat informace k vylep\u0161en\u00ed sv\u00fdch st\u00e1vaj\u00edc\u00edch produkt\u016f nov\u00fdmi funkcemi a k v\u00fdvoji nov\u00fdch produkt\u016f.\n\u25cf Vytv\u00e1\u0159et nov\u00e9 modely a algoritmy pomoc\u00ed strojov\u00e9ho u\u010den\u00ed.\nProdejci nemohou:\n\u25cf Prov\u00e1d\u011bt v r\u00e1mci tohoto \u00fa\u010delu jakoukoli jinou operaci zpracov\u00e1n\u00ed \u00fadaj\u016f povolenou v r\u00e1mci jin\u00e9ho \u00fa\u010delu."}},"specialPurposes":{"1":{"id":1,"name":"Zaji\u0161t\u011bn\u00ed bezpe\u010dnosti, p\u0159edch\u00e1zen\u00ed podvod\u016fm a odstra\u0148ov\u00e1n\u00ed chyb","description":"Va\u0161e \u00fadaje lze pou\u017e\u00edt k monitorov\u00e1n\u00ed podvodn\u00fdch aktivit a k jejich prevenci a k zaji\u0161t\u011bn\u00ed \u0159\u00e1dn\u00e9ho a bezpe\u010dn\u00e9ho fungov\u00e1n\u00ed syst\u00e9m\u016f a postup\u016f.","descriptionLegal":"Za \u00fa\u010delem zaji\u0161t\u011bn\u00ed bezpe\u010dnosti, p\u0159edch\u00e1zen\u00ed podvod\u016fm a odstra\u0148ov\u00e1n\u00ed chyb mohou prodejci:\r\n\u25cf\tZajistit bezpe\u010dn\u00fd p\u0159enos dat.\r\n\u25cf\tOdhalovat \u0161kodliv\u00e9, podvodn\u00e9, neplatn\u00e9 nebo nez\u00e1konn\u00e9 aktivity a p\u0159edch\u00e1zet jim.\r\n\u25cf\tZajistit spr\u00e1vn\u00e9 a efektivn\u00ed fungov\u00e1n\u00ed syst\u00e9m\u016f a postup\u016f v\u010detn\u011b monitorov\u00e1n\u00ed a zvy\u0161ov\u00e1n\u00ed v\u00fdkonnosti syst\u00e9m\u016f a postup\u016f pou\u017e\u00edvan\u00fdch k povolen\u00fdm \u00fa\u010del\u016fm.\r\nProdejci nemohou:\r\n\u25cf\tProv\u00e1d\u011bt v r\u00e1mci tohoto \u00fa\u010delu jakoukoli jinou operaci zpracov\u00e1n\u00ed \u00fadaj\u016f povolenou v r\u00e1mci jin\u00e9ho \u00fa\u010delu.\r\nPozn.: Data shrom\u00e1\u017ed\u011bn\u00e1 a pou\u017eit\u00e1 za \u00fa\u010delem zaji\u0161t\u011bn\u00ed bezpe\u010dnosti, p\u0159edch\u00e1zen\u00ed podvod\u016fm a odstra\u0148ov\u00e1n\u00ed chyb mohou zahrnovat automaticky zas\u00edlan\u00e9 specifick\u00e9 vlastnosti za\u0159\u00edzen\u00ed pro identifikaci, p\u0159esn\u00e1 geoloka\u010dn\u00ed data a data z\u00edskan\u00e1 aktivn\u00edm prohled\u00e1v\u00e1n\u00edm specifick\u00fdch vlastnost\u00ed za\u0159\u00edzen\u00ed pro identifikaci bez samostatn\u00e9ho ozn\u00e1men\u00ed a/nebo opt-in.\r"},"2":{"id":2,"name":"Technick\u00e9 doru\u010den\u00ed (zobrazen\u00ed) reklamy nebo obsahu","description":"Va\u0161e za\u0159\u00edzen\u00ed m\u016f\u017ee p\u0159ij\u00edmat a odes\u00edlat informace, kter\u00e9 v\u00e1m umo\u017en\u00ed zhl\u00e9dnout reklamu a obsah a reagovat na n\u011b.","descriptionLegal":"Za \u00fa\u010delem poskytnut\u00ed informac\u00ed a reakce na technick\u00e9 po\u017eadavky mohou prodejci:\n\u25cf Pou\u017e\u00edvat u\u017eivatelovu IP adresu k zobrazen\u00ed reklamy prost\u0159ednictv\u00edm internetu.\n\u25cf Podle reakce u\u017eivatele na reklamu ho odeslat na str\u00e1nku ur\u010denou inzerentem.\n\u25cf Pou\u017e\u00edvat IP adresu u\u017eivatele k zobrazen\u00ed obsahu prost\u0159ednictv\u00edm internetu.\n\u25cf Podle reakce u\u017eivatele na obsah ho odeslat na str\u00e1nku ur\u010denou vydavatelem.\n\u25cf Pou\u017e\u00edvat informace o typu a mo\u017enostech za\u0159\u00edzen\u00ed za \u00fa\u010delem zobrazen\u00ed reklamy nebo obsahu, nap\u0159\u00edklad k zobrazen\u00ed reklamy nebo video souboru ve spr\u00e1vn\u00e9 velikosti a ve form\u00e1tu, kter\u00fd za\u0159\u00edzen\u00ed podporuje.\nProdejci nemohou:\n\u25cf Prov\u00e1d\u011bt v r\u00e1mci tohoto \u00fa\u010delu jakoukoli jinou operaci zpracov\u00e1n\u00ed \u00fadaj\u016f povolenou v r\u00e1mci jin\u00e9ho \u00fa\u010delu."}},"features":{"1":{"id":1,"name":"P\u00e1rov\u00e1n\u00ed a kombinov\u00e1n\u00ed zdroj\u016f offline dat","description":"Data z offline zdroj\u016f lze kombinovat s va\u0161\u00ed online aktivitou za \u00fa\u010delem podpory jednoho nebo v\u00edce \u00fa\u010del\u016f.","descriptionLegal":"Prodejci mohou:\n\u25cf Kombinovat data z\u00edskan\u00e1 offline s daty shrom\u00e1\u017ed\u011bn\u00fdmi online za \u00fa\u010delem podpory jednoho nebo v\u00edce \u00fa\u010del\u016f nebo zvl\u00e1\u0161tn\u00edch \u00fa\u010del\u016f."},"2":{"id":2,"name":"Propojen\u00ed r\u016fzn\u00fdch za\u0159\u00edzen\u00ed","description":"Abychom mohli l\u00e9pe naplnit jeden \u010di v\u00edce \u00fa\u010del\u016f, m\u016f\u017eeme ur\u010dit, \u017ee v\u00e1m nebo va\u0161\u00ed dom\u00e1cnosti pat\u0159\u00ed r\u016fzn\u00e1 za\u0159\u00edzen\u00ed.","descriptionLegal":"Prodejci mohou:\n\u25cf Deterministickou metodou ur\u010dit, \u017ee dv\u011b nebo v\u00edce za\u0159\u00edzen\u00ed pat\u0159\u00ed stejn\u00e9mu u\u017eivateli nebo dom\u00e1cnosti.\n\u25cf Pravd\u011bpodobnostn\u00ed metodou ur\u010dit, \u017ee dv\u011b nebo v\u00edce za\u0159\u00edzen\u00ed pat\u0159\u00ed stejn\u00e9mu u\u017eivateli nebo dom\u00e1cnosti.\n\u25cf Aktivn\u011b vyhled\u00e1vat pravd\u011bpodobnostn\u00ed identifika\u010dn\u00ed \u00fadaje v r\u00e1mci vlastnost\u00ed za\u0159\u00edzen\u00ed, pokud u\u017eivatel\u00e9 prodejc\u016fm aktivn\u00ed vyhled\u00e1v\u00e1n\u00ed identifika\u010dn\u00edch \u00fadaj\u016f v r\u00e1mci vlastnost\u00ed za\u0159\u00edzen\u00ed povolili (zvl\u00e1\u0161tn\u00ed funkce 2)."},"3":{"id":3,"name":"P\u0159ijet\u00ed a pou\u017eit\u00ed automaticky zas\u00edlan\u00fdch specifick\u00fdch vlastnost\u00ed za\u0159\u00edzen\u00ed pro identifikaci","description":"Va\u0161e za\u0159\u00edzen\u00ed m\u016f\u017ee b\u00fdt odli\u0161eno od jin\u00fdch za\u0159\u00edzen\u00ed na z\u00e1klad\u011b informac\u00ed, kter\u00e9 va\u0161e za\u0159\u00edzen\u00ed automaticky zas\u00edl\u00e1, jako nap\u0159. IP adresa nebo typ prohl\u00ed\u017ee\u010de.","descriptionLegal":"Prodejci mohou:\n\u25cf Vytvo\u0159it identifik\u00e1tor za pou\u017eit\u00ed dat shrom\u00e1\u017ed\u011bn\u00fdch automaticky ze za\u0159\u00edzen\u00ed pro konkr\u00e9tn\u00ed specifick\u00e9 vlastnosti, nap\u0159. IP adresa, user-agent string.\n\u25cf Pou\u017e\u00edt takov\u00fd identifik\u00e1tor k pokusu o op\u011btovnou identifikaci za\u0159\u00edzen\u00ed.\nProdejci nemohou: \n\u25cf Vytvo\u0159it identifik\u00e1tor za pou\u017eit\u00ed dat shrom\u00e1\u017ed\u011bn\u00fdch prost\u0159ednictv\u00edm aktivn\u00edho skenov\u00e1n\u00ed za\u0159\u00edzen\u00ed pro konkr\u00e9tn\u00ed specifick\u00e9 vlastnosti, nap\u0159. instalovan\u00fd font nebo rozli\u0161en\u00ed obrazovky, bez samostatn\u00e9ho u\u017eivatelova opt-in za \u00fa\u010delem aktivn\u00edho prohled\u00e1v\u00e1n\u00ed specifick\u00fdch vlastnost\u00ed za\u0159\u00edzen\u00ed pro identifikaci.\n\u25cf Pou\u017e\u00edt takov\u00fd identifik\u00e1tor za \u00fa\u010delem op\u011btovn\u00e9 identifikace za\u0159\u00edzen\u00ed."}},"specialFeatures":{"1":{"id":1,"name":"Pou\u017e\u00edv\u00e1n\u00ed p\u0159esn\u00fdch \u00fadaj\u016f o geografick\u00e9 poloze","description":"P\u0159esn\u00e9 \u00fadaje o va\u0161\u00ed geografick\u00e9 poloze lze pou\u017e\u00edt za \u00fa\u010delem podpory jednoho nebo v\u00edce \u00fa\u010del\u016f. Znamen\u00e1 to, \u017ee va\u0161i polohu lze ur\u010dit s p\u0159esnost\u00ed na n\u011bkolik metr\u016f.","descriptionLegal":"Prodejci mohou:\n\u25cf Shroma\u017e\u010fovat a zpracov\u00e1vat p\u0159esn\u00e9 \u00fadaje o geografick\u00e9 poloze za \u00fa\u010delem podpory jednoho nebo v\u00edce \u00fa\u010del\u016f.\nPozn.: V\u00fdraz p\u0159esn\u00e1 geografick\u00e1 poloha znamen\u00e1, \u017ee neexistuj\u00ed \u017e\u00e1dn\u00e1 omezen\u00ed t\u00fdkaj\u00edc\u00ed se p\u0159esnosti u\u017eivatelovy polohy; polohu lze ur\u010dit s p\u0159esnost\u00ed na n\u011bkolik metr\u016f."},"2":{"id":2,"name":"Aktivn\u00ed vyhled\u00e1v\u00e1n\u00ed identifika\u010dn\u00edch \u00fadaj\u016f v r\u00e1mci vlastnost\u00ed za\u0159\u00edzen\u00ed","description":"Va\u0161e za\u0159\u00edzen\u00ed lze identifikovat na z\u00e1klad\u011b prohled\u00e1n\u00ed jedine\u010dn\u00e9 kombinace vlastnost\u00ed va\u0161eho za\u0159\u00edzen\u00ed.","descriptionLegal":"Prodejci mohou:\n\u25cf Vytvo\u0159it identifik\u00e1tor pomoc\u00ed \u00fadaj\u016f shrom\u00e1\u017ed\u011bn\u00fdch prost\u0159ednictv\u00edm aktivn\u00edho vyhled\u00e1v\u00e1n\u00ed specifick\u00fdch vlastnost\u00ed v r\u00e1mci za\u0159\u00edzen\u00ed, nap\u0159. instalovan\u00fdch p\u00edsem nebo rozli\u0161en\u00ed obrazovky.\n\u25cf Pou\u017e\u00edvat tento identifik\u00e1tor za \u00fa\u010delem op\u011btovn\u00e9 identifikace za\u0159\u00edzen\u00ed."}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"P\u0159esn\u00e9 \u00fadaje o geografick\u00e9 poloze a identifikace pomoc\u00ed dotazov\u00e1n\u00ed za\u0159\u00edzen\u00ed","description":"Lze pou\u017e\u00edt p\u0159esn\u00e9 \u00fadaje o geografick\u00e9 poloze a informace o vlastnostech za\u0159\u00edzen\u00ed."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Z\u00e1kladn\u00ed nastaven\u00ed reklamy a m\u011b\u0159en\u00ed v\u00fdkonu reklamy","description":"Lze zobrazovat z\u00e1kladn\u00ed reklamu. Lze m\u011b\u0159it v\u00fdkon reklamy."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Personalizovan\u00e1 reklama","description":"Reklamu lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace reklamy lze p\u0159id\u00e1vat dal\u0161\u00ed data."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Z\u00e1kladn\u00ed nastaven\u00ed reklamy, m\u011b\u0159en\u00ed v\u00fdkonu reklamy a z\u00edsk\u00e1v\u00e1n\u00ed poznatk\u016f o u\u017eivatel\u00edch","description":"Lze zobrazovat z\u00e1kladn\u00ed reklamu. Lze m\u011b\u0159it v\u00fdkon reklamy. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Z\u00e1kladn\u00ed nastaven\u00ed reklamy, profil pro personalizovanou reklamu a m\u011b\u0159en\u00ed v\u00fdkonu reklamy","description":"Lze zobrazovat z\u00e1kladn\u00ed reklamu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace reklamy lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it v\u00fdkon reklamy."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Zobrazen\u00ed personalizovan\u00e9 reklamy a m\u011b\u0159en\u00ed v\u00fdkonu reklamy","description":"Reklamu lze personalizovat na z\u00e1klad\u011b profilu. Lze m\u011b\u0159it v\u00fdkon reklamy."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Zobrazen\u00ed personalizovan\u00e9 reklamy, m\u011b\u0159en\u00ed v\u00fdkonu reklamy a poznatky o u\u017eivatel\u00edch","description":"Reklamu lze personalizovat na z\u00e1klad\u011b profilu. Lze m\u011b\u0159it v\u00fdkon reklamy. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Personalizovan\u00e1 reklama a m\u011b\u0159en\u00ed v\u00fdkonu reklamy","description":"Reklamu lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace reklamy lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it v\u00fdkon reklamy."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Personalizovan\u00e1 reklama, m\u011b\u0159en\u00ed v\u00fdkonu reklamy a poznatky o u\u017eivatel\u00edch","description":"Reklamy mohou b\u00fdt personalizov\u00e1ny na z\u00e1klad\u011b profilu. Za \u00fa\u010delem lep\u0161\u00ed personalizace mohou b\u00fdt p\u0159id\u00e1na dal\u0161\u00ed data. M\u016f\u017ee b\u00fdt m\u011b\u0159en v\u00fdkon reklamy. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli"},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Profil pro personalizovanou reklamu a zobrazen\u00ed personalizovan\u00e9 reklamy","description":"Reklamu lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace reklamy lze p\u0159id\u00e1vat dal\u0161\u00ed data."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Personalizovan\u00fd obsah","description":"Obsah lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace obsahu lze p\u0159id\u00e1vat dal\u0161\u00ed data."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Zobrazen\u00ed personalizovan\u00e9ho obsahu a m\u011b\u0159en\u00ed v\u00fdkonu obsahu","description":"Obsah lze personalizovat na z\u00e1klad\u011b profilu. Lze m\u011b\u0159it v\u00fdkon obsahu."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Zobrazen\u00ed personalizovan\u00e9ho obsahu, m\u011b\u0159en\u00ed v\u00fdkonu obsahu a poznatky o u\u017eivatel\u00edch","description":"Obsah lze personalizovat na z\u00e1klad\u011b profilu. Lze m\u011b\u0159it v\u00fdkon obsahu. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Personalizovan\u00fd obsah a m\u011b\u0159en\u00ed v\u00fdkonu obsahu","description":"Obsah lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace obsahu lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it v\u00fdkon obsahu."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Personalizovan\u00fd obsah, m\u011b\u0159en\u00ed v\u00fdkonu obsahu a poznatky o u\u017eivatel\u00edch","description":"Obsah lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace obsahu lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it v\u00fdkon obsahu. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Personalizovan\u00fd obsah, m\u011b\u0159en\u00ed v\u00fdkonu obsahu, poznatky o u\u017eivatel\u00edch a v\u00fdvoj produkt\u016f","description":"Obsah lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace obsahu lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it v\u00fdkon obsahu. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli. Data lze pou\u017e\u00edt k vytvo\u0159en\u00ed nebo zlep\u0161en\u00ed u\u017eivatelsk\u00e9ho prost\u0159ed\u00ed, syst\u00e9m\u016f a softwaru."},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"M\u011b\u0159en\u00ed v\u00fdkonu reklamy a obsahu a poznatky o u\u017eivatel\u00edch","description":"Lze m\u011b\u0159it v\u00fdkon reklamy a obsahu. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"M\u011b\u0159en\u00ed v\u00fdkonu reklamy a obsahu","description":"Lze m\u011b\u0159it v\u00fdkon reklamy a obsahu."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"M\u011b\u0159en\u00ed v\u00fdkonu reklamy a poznatky o u\u017eivatel\u00edch","description":"Lze m\u011b\u0159it v\u00fdkon reklamy. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"M\u011b\u0159en\u00ed v\u00fdkonu reklamy a obsahu, poznatky o u\u017eivatel\u00edch a v\u00fdvoj produkt\u016f","description":"Lze m\u011b\u0159it v\u00fdkon reklamy a obsahu. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli. Data lze pou\u017e\u00edt k vytvo\u0159en\u00ed nebo zlep\u0161en\u00ed u\u017eivatelsk\u00e9ho prost\u0159ed\u00ed, syst\u00e9m\u016f a softwaru. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"M\u011b\u0159en\u00ed v\u00fdkonu obsahu, poznatky o u\u017eivatel\u00edch a v\u00fdvoj produkt\u016f","description":"Lze m\u011b\u0159it v\u00fdkon obsahu. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli. Data lze pou\u017e\u00edt k vytvo\u0159en\u00ed nebo zlep\u0161en\u00ed u\u017eivatelsk\u00e9ho prost\u0159ed\u00ed, syst\u00e9m\u016f a softwaru."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"M\u011b\u0159en\u00ed v\u00fdkonu obsahu a v\u00fdvoj produkt\u016f","description":"Lze m\u011b\u0159it v\u00fdkon obsahu. Data lze pou\u017e\u00edt k vytvo\u0159en\u00ed nebo zlep\u0161en\u00ed u\u017eivatelsk\u00e9ho prost\u0159ed\u00ed, syst\u00e9m\u016f a softwaru."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Zobrazen\u00ed personalizovan\u00e9 reklamy a obsahu, m\u011b\u0159en\u00ed v\u00fdkonu reklamy a obsahu","description":"Reklamu a obsah lze personalizovat na z\u00e1klad\u011b profilu. Lze m\u011b\u0159it v\u00fdkon reklamy a obsahu."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Zobrazen\u00ed personalizovan\u00e9 reklamy a obsahu, m\u011b\u0159en\u00ed v\u00fdkonu reklamy a obsahu a poznatky o u\u017eivatel\u00edch","description":"Reklamu a obsah lze personalizovat na z\u00e1klad\u011b profilu. Lze m\u011b\u0159it v\u00fdkon reklamy a obsahu. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli. Data lze pou\u017e\u00edt k vytvo\u0159en\u00ed nebo zlep\u0161en\u00ed u\u017eivatelsk\u00e9ho prost\u0159ed\u00ed, syst\u00e9m\u016f a softwaru."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Personalizovan\u00e1 reklama a obsah, m\u011b\u0159en\u00ed v\u00fdkonu reklamy a obsahu","description":"Reklamu a obsah lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace reklamy a obsahu lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it v\u00fdkon reklamy a obsahu."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Personalizovan\u00e1 reklama a obsah, m\u011b\u0159en\u00ed v\u00fdkonu reklamy a obsahu a poznatky o u\u017eivatel\u00edch","description":"Reklamu a obsah lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace reklamy a obsahu lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it v\u00fdkon reklamy a obsahu. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Profil pro personalizovanou reklamu a obsah","description":"Za \u00fa\u010delem personalizace reklamy a obsahu lze p\u0159id\u00e1vat dal\u0161\u00ed data."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Zobrazen\u00ed personalizovan\u00e9 reklamy a obsahu","description":"Reklamu a obsah lze personalizovat na z\u00e1klad\u011b profilu."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Z\u00e1kladn\u00ed nastaven\u00ed reklamy, m\u011b\u0159en\u00ed v\u00fdkonu reklamy a obsahu a poznatky o u\u017eivatel\u00edch","description":"Lze zobrazovat z\u00e1kladn\u00ed reklamu. Lze m\u011b\u0159it v\u00fdkon reklamy a obsahu. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Zobrazen\u00ed personalizovan\u00e9 reklamy, personalizovan\u00fd obsah, m\u011b\u0159en\u00ed v\u00fdkonu reklamy a obsahu a poznatky o u\u017eivatel\u00edch","description":"Reklamu a obsah lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace obsahu lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it v\u00fdkon reklamy a obsahu. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Z\u00e1kladn\u00ed nastaven\u00ed reklamy, personalizovan\u00fd obsah, m\u011b\u0159en\u00ed v\u00fdkonu reklamy a obsahu a poznatky o u\u017eivatel\u00edch","description":"Reklamu a obsah lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace obsahu lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it v\u00fdkon reklamy a obsahu. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli. Data lze pou\u017e\u00edt k vytvo\u0159en\u00ed nebo zlep\u0161en\u00ed u\u017eivatelsk\u00e9ho prost\u0159ed\u00ed, syst\u00e9m\u016f a softwaru."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Z\u00e1kladn\u00ed nastaven\u00ed reklamy, personalizovan\u00fd obsah, m\u011b\u0159en\u00ed v\u00fdkonu reklamy a obsahu a poznatky o u\u017eivatel\u00edch","description":"Lze zobrazovat z\u00e1kladn\u00ed reklamu. Obsah lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace obsahu lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it v\u00fdkon reklamy a obsahu. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Z\u00e1kladn\u00ed nastaven\u00ed reklamy, personalizovan\u00fd obsah, m\u011b\u0159en\u00ed v\u00fdkonu reklamy a obsahu, poznatky o u\u017eivatel\u00edch a v\u00fdvoj produkt\u016f","description":"Lze zobrazovat z\u00e1kladn\u00ed reklamu. Obsah lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace obsahu lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it v\u00fdkon reklamy a obsahu. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli. Data lze pou\u017e\u00edt k vytvo\u0159en\u00ed nebo zlep\u0161en\u00ed u\u017eivatelsk\u00e9ho prost\u0159ed\u00ed, syst\u00e9m\u016f a softwaru."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Z\u00e1kladn\u00ed nastaven\u00ed reklamy, personalizovan\u00fd obsah, m\u011b\u0159en\u00ed v\u00fdkonu obsahu a poznatky o u\u017eivatel\u00edch","description":"Lze zobrazovat z\u00e1kladn\u00ed reklamu. Obsah lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace obsahu lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it v\u00fdkon reklamy a obsahu. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Z\u00e1kladn\u00ed nastaven\u00ed reklamy, personalizovan\u00fd obsah, m\u011b\u0159en\u00ed v\u00fdkonu obsahu, poznatky o u\u017eivatel\u00edch a v\u00fdvoj produkt\u016f","description":"Lze zobrazovat z\u00e1kladn\u00ed reklamu. Obsah lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace obsahu lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it v\u00fdkon obsahu. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli. Data lze pou\u017e\u00edt k vytvo\u0159en\u00ed nebo zlep\u0161en\u00ed u\u017eivatelsk\u00e9ho prost\u0159ed\u00ed, syst\u00e9m\u016f a softwaru."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Z\u00e1kladn\u00ed nastaven\u00ed reklamy, personalizovan\u00fd obsah a m\u011b\u0159en\u00ed v\u00fdkonu reklamy","description":"Lze zobrazovat z\u00e1kladn\u00ed reklamu. Obsah lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace obsahu lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it v\u00fdkon reklamy."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Z\u00e1kladn\u00ed nastaven\u00ed reklamy, personalizovan\u00fd obsah, m\u011b\u0159en\u00ed v\u00fdkonu reklamy a v\u00fdvoj produkt\u016f","description":"Lze zobrazovat z\u00e1kladn\u00ed reklamu. Obsah lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace obsahu lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it v\u00fdkon reklamy. Data lze pou\u017e\u00edt k vytvo\u0159en\u00ed nebo zlep\u0161en\u00ed u\u017eivatelsk\u00e9ho prost\u0159ed\u00ed, syst\u00e9m\u016f a softwaru."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Personalizovan\u00e1 reklama, m\u011b\u0159en\u00ed reklamy a v\u00fdvoj produkt\u016f","description":"Reklamu lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace reklamy lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it \u00fa\u010dinnost reklamy. Data lze pou\u017e\u00edt k vytvo\u0159en\u00ed nebo zlep\u0161en\u00ed u\u017eivatelsk\u00e9ho prost\u0159ed\u00ed, syst\u00e9m\u016f a softwaru."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Personalizovan\u00e1 reklama, m\u011b\u0159en\u00ed reklamy, poznatky o okruz\u00edch publika a v\u00fdvoj produkt\u016f","description":"Reklamu lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace reklamy lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it \u00fa\u010dinnost reklamy. Lze odvozovat poznatky o okruz\u00edch publika, kter\u00e9 reklamu a obsah vid\u011blo. Data lze pou\u017e\u00edt k vytvo\u0159en\u00ed nebo zlep\u0161en\u00ed u\u017eivatelsk\u00e9ho prost\u0159ed\u00ed, syst\u00e9m\u016f a softwaru."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Personalizovan\u00e1 reklama, m\u011b\u0159en\u00ed reklamy a obsahu, poznatky o okruz\u00edch publika a v\u00fdvoj produkt\u016f","description":"Reklamu lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace reklamy lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it \u00fa\u010dinnost reklamy a obsahu. Lze odvozovat poznatky o okruz\u00edch publika, kter\u00e9 reklamu a obsah vid\u011blo. Data lze pou\u017e\u00edt k vytvo\u0159en\u00ed nebo zlep\u0161en\u00ed u\u017eivatelsk\u00e9ho prost\u0159ed\u00ed, syst\u00e9m\u016f a softwaru."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Personalizovan\u00e1 reklama, zobrazen\u00ed personalizovan\u00e9ho obsahu, m\u011b\u0159en\u00ed reklamy a obsahu, poznatky o okruz\u00edch publika a v\u00fdvoj produkt\u016f","description":"Reklamu a obsah lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace reklamy lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it \u00fa\u010dinnost reklamy a obsahu. Lze odvozovat poznatky o okruz\u00edch publika, kter\u00e9 reklamu a obsah vid\u011blo. Data lze pou\u017e\u00edt k vytvo\u0159en\u00ed nebo zlep\u0161en\u00ed u\u017eivatelsk\u00e9ho prost\u0159ed\u00ed, syst\u00e9m\u016f a softwaru."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Personalizovan\u00e1 reklama a obsah, m\u011b\u0159en\u00ed reklamy a obsahu, poznatky o okruz\u00edch publika a v\u00fdvoj produkt\u016f","description":"Reklamu a obsah lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace reklamy a obsahu lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it \u00fa\u010dinnost reklamy a obsahu. Lze odvozovat poznatky o okruz\u00edch publika, kter\u00e9 reklamu a obsah vid\u011blo. Data lze pou\u017e\u00edt k vytvo\u0159en\u00ed nebo zlep\u0161en\u00ed u\u017eivatelsk\u00e9ho prost\u0159ed\u00ed, syst\u00e9m\u016f a softwaru."}}} \ No newline at end of file +{"vendorListVersion":94,"lastUpdated":"2021-06-10T16:43:54Z","purposes":{"1":{"id":1,"name":"Ukl\u00e1d\u00e1n\u00ed a/nebo p\u0159\u00edstup k informac\u00edm v za\u0159\u00edzen\u00ed","description":"Ve va\u0161em za\u0159\u00edzen\u00ed se mohou ukl\u00e1dat soubory cookie, identifik\u00e1tory za\u0159\u00edzen\u00ed nebo dal\u0161\u00ed informace nebo k nim ve va\u0161em za\u0159\u00edzen\u00ed m\u016f\u017ee b\u00fdt umo\u017en\u011bn p\u0159\u00edstup pro \u00fa\u010dely, kter\u00e9 v\u00e1m byly sd\u011bleny.","descriptionLegal":"Prodejci mohou:\r\n\u25cf\tUkl\u00e1dat a p\u0159istupovat k informac\u00edm v za\u0159\u00edzen\u00ed, jako jsou soubory cookie a identifik\u00e1tory za\u0159\u00edzen\u00ed, o kter\u00fdch byl u\u017eivatel informov\u00e1n.\r"},"2":{"id":2,"name":"Z\u00e1kladn\u00ed nastaven\u00ed reklamy","description":"Reklamy se mohou zobrazovat na z\u00e1klad\u011b obsahu, kter\u00fd prohl\u00ed\u017e\u00edte, aplikace, kterou pou\u017e\u00edv\u00e1te, va\u0161\u00ed p\u0159ibli\u017en\u00e9 polohy nebo typu va\u0161eho za\u0159\u00edzen\u00ed.","descriptionLegal":"Za \u00fa\u010delem z\u00e1kladn\u00edho nastaven\u00ed reklamy mohou prodejci:\n \u25cf Pou\u017e\u00edvat informace v re\u00e1ln\u00e9m \u010dase, pokud jde o kontext, ve kter\u00e9m se bude reklama zobrazovat, k zobrazen\u00ed reklamy v\u010detn\u011b informac\u00ed o obsahu a za\u0159\u00edzen\u00ed, jako jsou: typ a mo\u017enosti za\u0159\u00edzen\u00ed, hlavi\u010dka User-Agent, adresa URL, adresa IP.\n \u25cf Pou\u017e\u00edvat nep\u0159esn\u00e9 \u00fadaje o u\u017eivatelov\u011b geografick\u00e9 poloze.\n \u25cf Kontrolovat \u010detnost reklamy zobrazovan\u00e9 u\u017eivateli.\n \u25cf Stanovit po\u0159ad\u00ed, ve kter\u00e9m se reklamy u\u017eivateli zobrazuj\u00ed.\n \u25cf Br\u00e1nit zobrazov\u00e1n\u00ed reklamy v nevhodn\u00e9m redak\u010dn\u00edm kontextu (ohro\u017euj\u00edc\u00edm zna\u010dku).\n Prodejci nemohou:\n \u25cf Za pomoci t\u011bchto informac\u00ed vytv\u00e1\u0159et profily pro personalizovanou reklamu za \u00fa\u010delem zobrazen\u00ed budouc\u00ed reklamy bez samostatn\u00e9ho pr\u00e1vn\u00edho z\u00e1kladu za \u00fa\u010delem vytv\u00e1\u0159en\u00ed profilu pro personalizovanou reklamu. \n Pozn.: V\u00fdraz nep\u0159esn\u00e9 \u00fadaje p\u0159edstavuje pouze p\u0159ibli\u017enou polohu dovoluj\u00edc\u00ed lokalizaci v okruhu nejm\u00e9n\u011b 500 metr\u016f."},"3":{"id":3,"name":"Vytvo\u0159en\u00ed profilu pro personalizovanou reklamu","description":"Na z\u00e1klad\u011b va\u0161eho chov\u00e1n\u00ed na internetu m\u016f\u017ee b\u00fdt vytvo\u0159en v\u00e1\u0161 profil, aby v\u00e1m mohla b\u00fdt zobrazena relevantn\u00ed reklama.","descriptionLegal":"Za \u00fa\u010delem vytvo\u0159en\u00ed profilu pro personalizovanou reklamu mohou prodejci:\n \u25cf Shroma\u017e\u010fovat informace o u\u017eivateli v\u010detn\u011b jeho aktivity, z\u00e1jm\u016f, n\u00e1v\u0161t\u011bv str\u00e1nek nebo aplikac\u00ed, demografick\u00fdch \u00fadaj\u016f nebo polohy, a to za \u00fa\u010delem vytvo\u0159en\u00ed nebo \u00fapravy u\u017eivatelova profilu pro pou\u017eit\u00ed v personalizovan\u00e9 reklam\u011b.\n \u25cf Kombinovat tyto \u00fadaje s dal\u0161\u00edmi d\u0159\u00edve shrom\u00e1\u017ed\u011bn\u00fdmi \u00fadaji, v\u010detn\u011b \u00fadaj\u016f shrom\u00e1\u017ed\u011bn\u00fdch nap\u0159\u00ed\u010d webov\u00fdmi str\u00e1nkami a aplikacemi, za \u00fa\u010delem vytvo\u0159en\u00ed nebo \u00fapravy u\u017eivatelova profilu pro pou\u017eit\u00ed v personalizovan\u00e9 reklam\u011b."},"4":{"id":4,"name":"V\u00fdb\u011br personalizovan\u00e9 reklamy","description":"Na z\u00e1klad\u011b va\u0161eho profilu se v\u00e1m m\u016f\u017ee zobrazovat personalizovan\u00e1 reklama.","descriptionLegal":"Za \u00fa\u010delem v\u00fdb\u011bru personalizovan\u00e9 reklamy mohou prodejci:\n \u25cf Vyb\u00edrat personalizovanou reklamu na z\u00e1klad\u011b u\u017eivatelova profilu nebo jin\u00fdch dat v\u010detn\u011b u\u017eivatelovy p\u0159edchoz\u00ed aktivity, z\u00e1jm\u016f, n\u00e1v\u0161t\u011bv str\u00e1nek nebo aplikac\u00ed, polohy nebo demografick\u00fdch \u00fadaj\u016f."},"5":{"id":5,"name":"Vytvo\u0159en\u00ed profilu pro personalizovan\u00fd obsah","description":"Na z\u00e1klad\u011b va\u0161eho chov\u00e1n\u00ed na internetu m\u016f\u017ee b\u00fdt vytvo\u0159en v\u00e1\u0161 profil, a to proto, aby v\u00e1m mohl b\u00fdt zobrazov\u00e1n obsah, kter\u00fd je pro v\u00e1s relevantn\u00ed.","descriptionLegal":"Za \u00fa\u010delem vytvo\u0159en\u00ed profilu pro personalizovan\u00fd obsah mohou prodejci:\n\u25cf Shroma\u017e\u010fovat informace o u\u017eivateli v\u010detn\u011b jeho aktivity, z\u00e1jm\u016f, n\u00e1v\u0161t\u011bv str\u00e1nek nebo aplikac\u00ed, demografick\u00fdch \u00fadaj\u016f nebo polohy, a to za \u00fa\u010delem vytvo\u0159en\u00ed nebo \u00fapravy u\u017eivatelsk\u00e9ho profilu pro personalizovan\u00fd obsah.\n\u25cf Kombinovat tyto informace s dal\u0161\u00edmi d\u0159\u00edve shrom\u00e1\u017ed\u011bn\u00fdmi informacemi v\u010detn\u011b t\u011bch z\u00edskan\u00fdch nap\u0159\u00ed\u010d webov\u00fdmi str\u00e1nkami a aplikacemi za \u00fa\u010delem vytvo\u0159en\u00ed nebo \u00fapravy u\u017eivatelsk\u00e9ho profilu pro personalizovan\u00fd obsah."},"6":{"id":6,"name":"V\u00fdb\u011br personalizovan\u00e9ho obsahu","description":"Na z\u00e1klad\u011b va\u0161eho profilu se v\u00e1m m\u016f\u017ee zobrazovat personalizovan\u00fd obsah.","descriptionLegal":"Za \u00fa\u010delem v\u00fdb\u011bru personalizovan\u00e9ho obsahu mohou prodejci:\n\u25cf Vyb\u00edrat personalizovan\u00fd obsah na z\u00e1klad\u011b u\u017eivatelova profilu nebo jin\u00fdch dat v\u010detn\u011b u\u017eivatelovy p\u0159edchoz\u00ed aktivity, z\u00e1jm\u016f, n\u00e1v\u0161t\u011bv str\u00e1nek nebo aplikac\u00ed, polohy nebo demografick\u00fdch \u00fadaj\u016f.\n"},"7":{"id":7,"name":"M\u011b\u0159en\u00ed v\u00fdkonu reklamy","description":"V\u00fdkon a \u00fa\u010dinnost reklamy, kterou vid\u00edte nebo na kterou reagujete, mohou b\u00fdt m\u011b\u0159eny","descriptionLegal":"Za \u00fa\u010delem m\u011b\u0159en\u00ed v\u00fdkonu reklamy mohou prodejci:\n\u25cf M\u011b\u0159it zobrazov\u00e1n\u00ed reklam u\u017eivateli a jeho reakce na n\u011b.\n\u25cf Poskytovat informace o reklam\u00e1ch, v\u010detn\u011b jejich v\u00fdkonu a \u00fa\u010dinnosti.\n\u25cf Poskytovat informace o u\u017eivatel\u00edch na z\u00e1klad\u011b dat sebran\u00fdch v pr\u016fb\u011bhu jejich reakce na zobrazenou reklamu.\n\u25cf Poskytovat informace vydavatel\u016fm o reklam\u00e1ch zobrazen\u00fdch v r\u00e1mci jimi vlastn\u011bn\u00fdch kan\u00e1l\u016f.\n\u25cf M\u011b\u0159it zobrazov\u00e1n\u00ed reklamy ve vhodn\u00e9m redak\u010dn\u00edm kontextu (neohro\u017euj\u00edc\u00edm zna\u010dku).\n\u25cf Ur\u010dit procento reklamy, u n\u00ed\u017e byla p\u0159\u00edle\u017eitost ke zhl\u00e9dnut\u00ed, a dobu trv\u00e1n\u00ed takov\u00e9 p\u0159\u00edle\u017eitosti.\n\u25cf Kombinovat tyto informace s dal\u0161\u00edmi d\u0159\u00edve shrom\u00e1\u017ed\u011bn\u00fdmi informacemi v\u010detn\u011b t\u011bch shrom\u00e1\u017ed\u011bn\u00fdch nap\u0159\u00ed\u010d webov\u00fdmi str\u00e1nkami a aplikacemi.\nProdejci nemohou:\n\u25cf Pou\u017e\u00edt poznatky o u\u017eivatel\u00edch z\u00edskan\u00e9 z panelu (vzorku u\u017eivatel\u016f) nebo podobn\u00fdm zp\u016fsobem na data o m\u011b\u0159en\u00ed v\u00fdkonu reklamy bez samostatn\u00e9ho pr\u00e1vn\u00edho z\u00e1kladu za \u00fa\u010delem pou\u017eit\u00ed v\u00fdzkumu trhu pro z\u00edsk\u00e1v\u00e1n\u00ed poznatk\u016f o u\u017eivatel\u00edch. \n"},"8":{"id":8,"name":"M\u011b\u0159en\u00ed v\u00fdkonu obsahu","description":"\u00da\u010dinnost a v\u00fdkon obsahu, kter\u00fd vid\u00edte nebo na kter\u00fd reagujete, mohou b\u00fdt m\u011b\u0159eny.","descriptionLegal":"Za \u00fa\u010delem m\u011b\u0159en\u00ed v\u00fdkonu obsahu mohou prodejci:\n\u25cf M\u011b\u0159it zobrazov\u00e1n\u00ed obsahu u\u017eivatel\u016fm a jejich reakce na n\u011bj, a poskytovat o tom informace.\n\u25cf Poskytovat informace o tom, jak u\u017eivatel\u00e9 na obsah reagovali, a to za pou\u017eit\u00ed p\u0159\u00edmo m\u011b\u0159iteln\u00fdch nebo zn\u00e1m\u00fdch informac\u00ed o u\u017eivatel\u00edch.\n\u25cf Kombinovat tyto informace s jin\u00fdmi d\u0159\u00edve shrom\u00e1\u017ed\u011bn\u00fdmi informacemi v\u010detn\u011b t\u011bch shrom\u00e1\u017ed\u011bn\u00fdch nap\u0159\u00ed\u010d webov\u00fdmi str\u00e1nkami a aplikacemi.\nProdejci nemohou:\n\u25cf M\u011b\u0159it, zda a jak\u00fdmi zp\u016fsobem byly reklamy (v\u010detn\u011b nativn\u00ed reklamy) zobrazeny a jak na n\u011b u\u017eivatel reagoval, nemaj\u00ed-li k tomu samostatn\u00fd pr\u00e1vn\u00ed z\u00e1klad.\n\u25cf Pou\u017e\u00edt poznatky o u\u017eivatel\u00edch z\u00edskan\u00e9 z panelu (vzorku u\u017eivatel\u016f) nebo podobn\u00fdm zp\u016fsobem na data o m\u011b\u0159en\u00ed v\u00fdkonu obsahu bez samostatn\u00e9ho pr\u00e1vn\u00edho z\u00e1kladu za \u00fa\u010delem pou\u017eit\u00ed v\u00fdzkumu trhu pro z\u00edsk\u00e1v\u00e1n\u00ed poznatk\u016f o u\u017eivatel\u00edch"},"9":{"id":9,"name":"Pou\u017e\u00edv\u00e1n\u00ed v\u00fdzkumu trhu pro z\u00edsk\u00e1n\u00ed poznatk\u016f o u\u017eivatel\u00edch","description":"V\u00fdzkum trhu lze vyu\u017e\u00edt k z\u00edsk\u00e1n\u00ed v\u00edce informac\u00ed o u\u017eivatel\u00edch, kte\u0159\u00ed nav\u0161t\u011bvuj\u00ed str\u00e1nky/aplikace a jim\u017e jsou zobrazeny reklamy.","descriptionLegal":"Za \u00fa\u010delem pou\u017eit\u00ed v\u00fdzkumu trhu pro z\u00edsk\u00e1n\u00ed poznatk\u016f o u\u017eivatel\u00edch mohou prodejci:\n\u25cf Poskytovat souhrnn\u00e9 informace inzerent\u016fm nebo jejich z\u00e1stupc\u016fm o u\u017eivatel\u00edch, kter\u00e9 jejich reklama zas\u00e1hla, a to na z\u00e1klad\u011b informac\u00ed ze vzorku zasa\u017een\u00fdch u\u017eivatel\u016f nebo jin\u00fdch odvozen\u00fdch informac\u00ed.\n\u25cf Poskytovat souhrnn\u00e9 informace vydavatel\u016fm o u\u017eivatel\u00edch, kter\u00fdm se v r\u00e1mci jimi vlastn\u011bn\u00fdch kan\u00e1l\u016f zobrazil obsah a/nebo reklama nebo kte\u0159\u00ed na obsah nebo reklamu reagovali, a to na z\u00e1klad\u011b informac\u00ed ze vzorku zasa\u017een\u00fdch u\u017eivatel\u016f nebo jin\u00fdch odvozen\u00fdch informac\u00ed.\n\u25cf Spojovat offline data s online u\u017eivatelem pro \u00fa\u010dely v\u00fdzkumu trhu pro z\u00edsk\u00e1v\u00e1n\u00ed poznatk\u016f o u\u017eivatel\u00edch, pokud prodejci deklarovali, \u017ee p\u0159i\u0159azuj\u00ed a kombinuj\u00ed zdroje offline dat.\n\u25cf Kombinovat tato data s jin\u00fdmi d\u0159\u00edve shrom\u00e1\u017ed\u011bn\u00fdmi \u00fadaji v\u010detn\u011b t\u011bch shrom\u00e1\u017ed\u011bn\u00fdch nap\u0159\u00ed\u010d webov\u00fdmi str\u00e1nkami a aplikacemi.\nProdejci nemohou:\n\u25cf M\u011b\u0159it \u00fa\u010dinnost a v\u00fdkon reklamy, kter\u00e1 se konkr\u00e9tn\u00edmu u\u017eivateli zobrazila nebo na ni\u017e reagoval, bez pr\u00e1vn\u00edho z\u00e1kladu pro \u00fa\u010del m\u011b\u0159en\u00ed v\u00fdkonu reklamy.\n\u25cf M\u011b\u0159it zobrazov\u00e1n\u00ed obsahu konkr\u00e9tn\u00edmu u\u017eivateli a jeho reakc\u00ed na n\u011bj, bez pr\u00e1vn\u00edho z\u00e1kladu pro \u00fa\u010del m\u011b\u0159en\u00ed v\u00fdkonu obsahu."},"10":{"id":10,"name":"V\u00fdvoj a zlep\u0161ov\u00e1n\u00ed produkt\u016f","description":"Va\u0161e \u00fadaje lze vyu\u017e\u00edt ke zlep\u0161en\u00ed st\u00e1vaj\u00edc\u00edch syst\u00e9m\u016f a softwaru a k v\u00fdvoji nov\u00fdch produkt\u016f.","descriptionLegal":"Za \u00fa\u010delem v\u00fdvoje nov\u00fdch produkt\u016f a zlep\u0161ov\u00e1n\u00ed produkt\u016f mohou prodejci:\n\u25cf Pou\u017e\u00edvat informace k vylep\u0161en\u00ed sv\u00fdch st\u00e1vaj\u00edc\u00edch produkt\u016f nov\u00fdmi funkcemi a k v\u00fdvoji nov\u00fdch produkt\u016f.\n\u25cf Vytv\u00e1\u0159et nov\u00e9 modely a algoritmy pomoc\u00ed strojov\u00e9ho u\u010den\u00ed.\nProdejci nemohou:\n\u25cf Prov\u00e1d\u011bt v r\u00e1mci tohoto \u00fa\u010delu jakoukoli jinou operaci zpracov\u00e1n\u00ed \u00fadaj\u016f povolenou v r\u00e1mci jin\u00e9ho \u00fa\u010delu."}},"specialPurposes":{"1":{"id":1,"name":"Zaji\u0161t\u011bn\u00ed bezpe\u010dnosti, p\u0159edch\u00e1zen\u00ed podvod\u016fm a odstra\u0148ov\u00e1n\u00ed chyb","description":"Va\u0161e \u00fadaje lze pou\u017e\u00edt k monitorov\u00e1n\u00ed podvodn\u00fdch aktivit a k jejich prevenci a k zaji\u0161t\u011bn\u00ed \u0159\u00e1dn\u00e9ho a bezpe\u010dn\u00e9ho fungov\u00e1n\u00ed syst\u00e9m\u016f a postup\u016f.","descriptionLegal":"Za \u00fa\u010delem zaji\u0161t\u011bn\u00ed bezpe\u010dnosti, p\u0159edch\u00e1zen\u00ed podvod\u016fm a odstra\u0148ov\u00e1n\u00ed chyb mohou prodejci:\r\n\u25cf\tZajistit bezpe\u010dn\u00fd p\u0159enos dat.\r\n\u25cf\tOdhalovat \u0161kodliv\u00e9, podvodn\u00e9, neplatn\u00e9 nebo nez\u00e1konn\u00e9 aktivity a p\u0159edch\u00e1zet jim.\r\n\u25cf\tZajistit spr\u00e1vn\u00e9 a efektivn\u00ed fungov\u00e1n\u00ed syst\u00e9m\u016f a postup\u016f v\u010detn\u011b monitorov\u00e1n\u00ed a zvy\u0161ov\u00e1n\u00ed v\u00fdkonnosti syst\u00e9m\u016f a postup\u016f pou\u017e\u00edvan\u00fdch k povolen\u00fdm \u00fa\u010del\u016fm.\r\nProdejci nemohou:\r\n\u25cf\tProv\u00e1d\u011bt v r\u00e1mci tohoto \u00fa\u010delu jakoukoli jinou operaci zpracov\u00e1n\u00ed \u00fadaj\u016f povolenou v r\u00e1mci jin\u00e9ho \u00fa\u010delu.\r\nPozn.: Data shrom\u00e1\u017ed\u011bn\u00e1 a pou\u017eit\u00e1 za \u00fa\u010delem zaji\u0161t\u011bn\u00ed bezpe\u010dnosti, p\u0159edch\u00e1zen\u00ed podvod\u016fm a odstra\u0148ov\u00e1n\u00ed chyb mohou zahrnovat automaticky zas\u00edlan\u00e9 specifick\u00e9 vlastnosti za\u0159\u00edzen\u00ed pro identifikaci, p\u0159esn\u00e1 geoloka\u010dn\u00ed data a data z\u00edskan\u00e1 aktivn\u00edm prohled\u00e1v\u00e1n\u00edm specifick\u00fdch vlastnost\u00ed za\u0159\u00edzen\u00ed pro identifikaci bez samostatn\u00e9ho ozn\u00e1men\u00ed a/nebo opt-in.\r"},"2":{"id":2,"name":"Technick\u00e9 doru\u010den\u00ed (zobrazen\u00ed) reklamy nebo obsahu","description":"Va\u0161e za\u0159\u00edzen\u00ed m\u016f\u017ee p\u0159ij\u00edmat a odes\u00edlat informace, kter\u00e9 v\u00e1m umo\u017en\u00ed zhl\u00e9dnout reklamu a obsah a reagovat na n\u011b.","descriptionLegal":"Za \u00fa\u010delem poskytnut\u00ed informac\u00ed a reakce na technick\u00e9 po\u017eadavky mohou prodejci:\n\u25cf Pou\u017e\u00edvat u\u017eivatelovu IP adresu k zobrazen\u00ed reklamy prost\u0159ednictv\u00edm internetu.\n\u25cf Podle reakce u\u017eivatele na reklamu ho odeslat na str\u00e1nku ur\u010denou inzerentem.\n\u25cf Pou\u017e\u00edvat IP adresu u\u017eivatele k zobrazen\u00ed obsahu prost\u0159ednictv\u00edm internetu.\n\u25cf Podle reakce u\u017eivatele na obsah ho odeslat na str\u00e1nku ur\u010denou vydavatelem.\n\u25cf Pou\u017e\u00edvat informace o typu a mo\u017enostech za\u0159\u00edzen\u00ed za \u00fa\u010delem zobrazen\u00ed reklamy nebo obsahu, nap\u0159\u00edklad k zobrazen\u00ed reklamy nebo video souboru ve spr\u00e1vn\u00e9 velikosti a ve form\u00e1tu, kter\u00fd za\u0159\u00edzen\u00ed podporuje.\nProdejci nemohou:\n\u25cf Prov\u00e1d\u011bt v r\u00e1mci tohoto \u00fa\u010delu jakoukoli jinou operaci zpracov\u00e1n\u00ed \u00fadaj\u016f povolenou v r\u00e1mci jin\u00e9ho \u00fa\u010delu."}},"features":{"1":{"id":1,"name":"P\u00e1rov\u00e1n\u00ed a kombinov\u00e1n\u00ed zdroj\u016f offline dat","description":"Data z offline zdroj\u016f lze kombinovat s va\u0161\u00ed online aktivitou za \u00fa\u010delem podpory jednoho nebo v\u00edce \u00fa\u010del\u016f.","descriptionLegal":"Prodejci mohou:\n\u25cf Kombinovat data z\u00edskan\u00e1 offline s daty shrom\u00e1\u017ed\u011bn\u00fdmi online za \u00fa\u010delem podpory jednoho nebo v\u00edce \u00fa\u010del\u016f nebo zvl\u00e1\u0161tn\u00edch \u00fa\u010del\u016f."},"2":{"id":2,"name":"Propojen\u00ed r\u016fzn\u00fdch za\u0159\u00edzen\u00ed","description":"Abychom mohli l\u00e9pe naplnit jeden \u010di v\u00edce \u00fa\u010del\u016f, m\u016f\u017eeme ur\u010dit, \u017ee v\u00e1m nebo va\u0161\u00ed dom\u00e1cnosti pat\u0159\u00ed r\u016fzn\u00e1 za\u0159\u00edzen\u00ed.","descriptionLegal":"Prodejci mohou:\n\u25cf Deterministickou metodou ur\u010dit, \u017ee dv\u011b nebo v\u00edce za\u0159\u00edzen\u00ed pat\u0159\u00ed stejn\u00e9mu u\u017eivateli nebo dom\u00e1cnosti.\n\u25cf Pravd\u011bpodobnostn\u00ed metodou ur\u010dit, \u017ee dv\u011b nebo v\u00edce za\u0159\u00edzen\u00ed pat\u0159\u00ed stejn\u00e9mu u\u017eivateli nebo dom\u00e1cnosti.\n\u25cf Aktivn\u011b vyhled\u00e1vat pravd\u011bpodobnostn\u00ed identifika\u010dn\u00ed \u00fadaje v r\u00e1mci vlastnost\u00ed za\u0159\u00edzen\u00ed, pokud u\u017eivatel\u00e9 prodejc\u016fm aktivn\u00ed vyhled\u00e1v\u00e1n\u00ed identifika\u010dn\u00edch \u00fadaj\u016f v r\u00e1mci vlastnost\u00ed za\u0159\u00edzen\u00ed povolili (zvl\u00e1\u0161tn\u00ed funkce 2)."},"3":{"id":3,"name":"P\u0159ijet\u00ed a pou\u017eit\u00ed automaticky zas\u00edlan\u00fdch specifick\u00fdch vlastnost\u00ed za\u0159\u00edzen\u00ed pro identifikaci","description":"Va\u0161e za\u0159\u00edzen\u00ed m\u016f\u017ee b\u00fdt odli\u0161eno od jin\u00fdch za\u0159\u00edzen\u00ed na z\u00e1klad\u011b informac\u00ed, kter\u00e9 va\u0161e za\u0159\u00edzen\u00ed automaticky zas\u00edl\u00e1, jako nap\u0159. IP adresa nebo typ prohl\u00ed\u017ee\u010de.","descriptionLegal":"Prodejci mohou:\n\u25cf Vytvo\u0159it identifik\u00e1tor za pou\u017eit\u00ed dat shrom\u00e1\u017ed\u011bn\u00fdch automaticky ze za\u0159\u00edzen\u00ed pro konkr\u00e9tn\u00ed specifick\u00e9 vlastnosti, nap\u0159. IP adresa, user-agent string.\n\u25cf Pou\u017e\u00edt takov\u00fd identifik\u00e1tor k pokusu o op\u011btovnou identifikaci za\u0159\u00edzen\u00ed.\nProdejci nemohou: \n\u25cf Vytvo\u0159it identifik\u00e1tor za pou\u017eit\u00ed dat shrom\u00e1\u017ed\u011bn\u00fdch prost\u0159ednictv\u00edm aktivn\u00edho skenov\u00e1n\u00ed za\u0159\u00edzen\u00ed pro konkr\u00e9tn\u00ed specifick\u00e9 vlastnosti, nap\u0159. instalovan\u00fd font nebo rozli\u0161en\u00ed obrazovky, bez samostatn\u00e9ho u\u017eivatelova opt-in za \u00fa\u010delem aktivn\u00edho prohled\u00e1v\u00e1n\u00ed specifick\u00fdch vlastnost\u00ed za\u0159\u00edzen\u00ed pro identifikaci.\n\u25cf Pou\u017e\u00edt takov\u00fd identifik\u00e1tor za \u00fa\u010delem op\u011btovn\u00e9 identifikace za\u0159\u00edzen\u00ed."}},"specialFeatures":{"1":{"id":1,"name":"Pou\u017e\u00edv\u00e1n\u00ed p\u0159esn\u00fdch \u00fadaj\u016f o geografick\u00e9 poloze","description":"P\u0159esn\u00e9 \u00fadaje o va\u0161\u00ed geografick\u00e9 poloze lze pou\u017e\u00edt za \u00fa\u010delem podpory jednoho nebo v\u00edce \u00fa\u010del\u016f. Znamen\u00e1 to, \u017ee va\u0161i polohu lze ur\u010dit s p\u0159esnost\u00ed na n\u011bkolik metr\u016f.","descriptionLegal":"Prodejci mohou:\n\u25cf Shroma\u017e\u010fovat a zpracov\u00e1vat p\u0159esn\u00e9 \u00fadaje o geografick\u00e9 poloze za \u00fa\u010delem podpory jednoho nebo v\u00edce \u00fa\u010del\u016f.\nPozn.: V\u00fdraz p\u0159esn\u00e1 geografick\u00e1 poloha znamen\u00e1, \u017ee neexistuj\u00ed \u017e\u00e1dn\u00e1 omezen\u00ed t\u00fdkaj\u00edc\u00ed se p\u0159esnosti u\u017eivatelovy polohy; polohu lze ur\u010dit s p\u0159esnost\u00ed na n\u011bkolik metr\u016f."},"2":{"id":2,"name":"Aktivn\u00ed vyhled\u00e1v\u00e1n\u00ed identifika\u010dn\u00edch \u00fadaj\u016f v r\u00e1mci vlastnost\u00ed za\u0159\u00edzen\u00ed","description":"Va\u0161e za\u0159\u00edzen\u00ed lze identifikovat na z\u00e1klad\u011b prohled\u00e1n\u00ed jedine\u010dn\u00e9 kombinace vlastnost\u00ed va\u0161eho za\u0159\u00edzen\u00ed.","descriptionLegal":"Prodejci mohou:\n\u25cf Vytvo\u0159it identifik\u00e1tor pomoc\u00ed \u00fadaj\u016f shrom\u00e1\u017ed\u011bn\u00fdch prost\u0159ednictv\u00edm aktivn\u00edho vyhled\u00e1v\u00e1n\u00ed specifick\u00fdch vlastnost\u00ed v r\u00e1mci za\u0159\u00edzen\u00ed, nap\u0159. instalovan\u00fdch p\u00edsem nebo rozli\u0161en\u00ed obrazovky.\n\u25cf Pou\u017e\u00edvat tento identifik\u00e1tor za \u00fa\u010delem op\u011btovn\u00e9 identifikace za\u0159\u00edzen\u00ed."}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"P\u0159esn\u00e9 \u00fadaje o geografick\u00e9 poloze a identifikace pomoc\u00ed dotazov\u00e1n\u00ed za\u0159\u00edzen\u00ed","description":"Lze pou\u017e\u00edt p\u0159esn\u00e9 \u00fadaje o geografick\u00e9 poloze a informace o vlastnostech za\u0159\u00edzen\u00ed."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Z\u00e1kladn\u00ed nastaven\u00ed reklamy a m\u011b\u0159en\u00ed v\u00fdkonu reklamy","description":"Lze zobrazovat z\u00e1kladn\u00ed reklamu. Lze m\u011b\u0159it v\u00fdkon reklamy."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Personalizovan\u00e1 reklama","description":"Reklamu lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace reklamy lze p\u0159id\u00e1vat dal\u0161\u00ed data."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Z\u00e1kladn\u00ed nastaven\u00ed reklamy, m\u011b\u0159en\u00ed v\u00fdkonu reklamy a z\u00edsk\u00e1v\u00e1n\u00ed poznatk\u016f o u\u017eivatel\u00edch","description":"Lze zobrazovat z\u00e1kladn\u00ed reklamu. Lze m\u011b\u0159it v\u00fdkon reklamy. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Z\u00e1kladn\u00ed nastaven\u00ed reklamy, profil pro personalizovanou reklamu a m\u011b\u0159en\u00ed v\u00fdkonu reklamy","description":"Lze zobrazovat z\u00e1kladn\u00ed reklamu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace reklamy lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it v\u00fdkon reklamy."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Zobrazen\u00ed personalizovan\u00e9 reklamy a m\u011b\u0159en\u00ed v\u00fdkonu reklamy","description":"Reklamu lze personalizovat na z\u00e1klad\u011b profilu. Lze m\u011b\u0159it v\u00fdkon reklamy."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Zobrazen\u00ed personalizovan\u00e9 reklamy, m\u011b\u0159en\u00ed v\u00fdkonu reklamy a poznatky o u\u017eivatel\u00edch","description":"Reklamu lze personalizovat na z\u00e1klad\u011b profilu. Lze m\u011b\u0159it v\u00fdkon reklamy. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Personalizovan\u00e1 reklama a m\u011b\u0159en\u00ed v\u00fdkonu reklamy","description":"Reklamu lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace reklamy lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it v\u00fdkon reklamy."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Personalizovan\u00e1 reklama, m\u011b\u0159en\u00ed v\u00fdkonu reklamy a poznatky o u\u017eivatel\u00edch","description":"Reklamy mohou b\u00fdt personalizov\u00e1ny na z\u00e1klad\u011b profilu. Za \u00fa\u010delem lep\u0161\u00ed personalizace mohou b\u00fdt p\u0159id\u00e1na dal\u0161\u00ed data. M\u016f\u017ee b\u00fdt m\u011b\u0159en v\u00fdkon reklamy. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli"},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Profil pro personalizovanou reklamu a zobrazen\u00ed personalizovan\u00e9 reklamy","description":"Reklamu lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace reklamy lze p\u0159id\u00e1vat dal\u0161\u00ed data."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Personalizovan\u00fd obsah","description":"Obsah lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace obsahu lze p\u0159id\u00e1vat dal\u0161\u00ed data."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Zobrazen\u00ed personalizovan\u00e9ho obsahu a m\u011b\u0159en\u00ed v\u00fdkonu obsahu","description":"Obsah lze personalizovat na z\u00e1klad\u011b profilu. Lze m\u011b\u0159it v\u00fdkon obsahu."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Zobrazen\u00ed personalizovan\u00e9ho obsahu, m\u011b\u0159en\u00ed v\u00fdkonu obsahu a poznatky o u\u017eivatel\u00edch","description":"Obsah lze personalizovat na z\u00e1klad\u011b profilu. Lze m\u011b\u0159it v\u00fdkon obsahu. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Personalizovan\u00fd obsah a m\u011b\u0159en\u00ed v\u00fdkonu obsahu","description":"Obsah lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace obsahu lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it v\u00fdkon obsahu."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Personalizovan\u00fd obsah, m\u011b\u0159en\u00ed v\u00fdkonu obsahu a poznatky o u\u017eivatel\u00edch","description":"Obsah lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace obsahu lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it v\u00fdkon obsahu. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Personalizovan\u00fd obsah, m\u011b\u0159en\u00ed v\u00fdkonu obsahu, poznatky o u\u017eivatel\u00edch a v\u00fdvoj produkt\u016f","description":"Obsah lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace obsahu lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it v\u00fdkon obsahu. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli. Data lze pou\u017e\u00edt k vytvo\u0159en\u00ed nebo zlep\u0161en\u00ed u\u017eivatelsk\u00e9ho prost\u0159ed\u00ed, syst\u00e9m\u016f a softwaru."},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"M\u011b\u0159en\u00ed v\u00fdkonu reklamy a obsahu a poznatky o u\u017eivatel\u00edch","description":"Lze m\u011b\u0159it v\u00fdkon reklamy a obsahu. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"M\u011b\u0159en\u00ed v\u00fdkonu reklamy a obsahu","description":"Lze m\u011b\u0159it v\u00fdkon reklamy a obsahu."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"M\u011b\u0159en\u00ed v\u00fdkonu reklamy a poznatky o u\u017eivatel\u00edch","description":"Lze m\u011b\u0159it v\u00fdkon reklamy. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"M\u011b\u0159en\u00ed v\u00fdkonu reklamy a obsahu, poznatky o u\u017eivatel\u00edch a v\u00fdvoj produkt\u016f","description":"Lze m\u011b\u0159it v\u00fdkon reklamy a obsahu. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli. Data lze pou\u017e\u00edt k vytvo\u0159en\u00ed nebo zlep\u0161en\u00ed u\u017eivatelsk\u00e9ho prost\u0159ed\u00ed, syst\u00e9m\u016f a softwaru. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"M\u011b\u0159en\u00ed v\u00fdkonu obsahu, poznatky o u\u017eivatel\u00edch a v\u00fdvoj produkt\u016f","description":"Lze m\u011b\u0159it v\u00fdkon obsahu. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli. Data lze pou\u017e\u00edt k vytvo\u0159en\u00ed nebo zlep\u0161en\u00ed u\u017eivatelsk\u00e9ho prost\u0159ed\u00ed, syst\u00e9m\u016f a softwaru."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"M\u011b\u0159en\u00ed v\u00fdkonu obsahu a v\u00fdvoj produkt\u016f","description":"Lze m\u011b\u0159it v\u00fdkon obsahu. Data lze pou\u017e\u00edt k vytvo\u0159en\u00ed nebo zlep\u0161en\u00ed u\u017eivatelsk\u00e9ho prost\u0159ed\u00ed, syst\u00e9m\u016f a softwaru."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Zobrazen\u00ed personalizovan\u00e9 reklamy a obsahu, m\u011b\u0159en\u00ed v\u00fdkonu reklamy a obsahu","description":"Reklamu a obsah lze personalizovat na z\u00e1klad\u011b profilu. Lze m\u011b\u0159it v\u00fdkon reklamy a obsahu."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Zobrazen\u00ed personalizovan\u00e9 reklamy a obsahu, m\u011b\u0159en\u00ed v\u00fdkonu reklamy a obsahu a poznatky o u\u017eivatel\u00edch","description":"Reklamu a obsah lze personalizovat na z\u00e1klad\u011b profilu. Lze m\u011b\u0159it v\u00fdkon reklamy a obsahu. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli. Data lze pou\u017e\u00edt k vytvo\u0159en\u00ed nebo zlep\u0161en\u00ed u\u017eivatelsk\u00e9ho prost\u0159ed\u00ed, syst\u00e9m\u016f a softwaru."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Personalizovan\u00e1 reklama a obsah, m\u011b\u0159en\u00ed v\u00fdkonu reklamy a obsahu","description":"Reklamu a obsah lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace reklamy a obsahu lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it v\u00fdkon reklamy a obsahu."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Personalizovan\u00e1 reklama a obsah, m\u011b\u0159en\u00ed v\u00fdkonu reklamy a obsahu a poznatky o u\u017eivatel\u00edch","description":"Reklamu a obsah lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace reklamy a obsahu lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it v\u00fdkon reklamy a obsahu. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Profil pro personalizovanou reklamu a obsah","description":"Za \u00fa\u010delem personalizace reklamy a obsahu lze p\u0159id\u00e1vat dal\u0161\u00ed data."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Zobrazen\u00ed personalizovan\u00e9 reklamy a obsahu","description":"Reklamu a obsah lze personalizovat na z\u00e1klad\u011b profilu."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Z\u00e1kladn\u00ed nastaven\u00ed reklamy, m\u011b\u0159en\u00ed v\u00fdkonu reklamy a obsahu a poznatky o u\u017eivatel\u00edch","description":"Lze zobrazovat z\u00e1kladn\u00ed reklamu. Lze m\u011b\u0159it v\u00fdkon reklamy a obsahu. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Zobrazen\u00ed personalizovan\u00e9 reklamy, personalizovan\u00fd obsah, m\u011b\u0159en\u00ed v\u00fdkonu reklamy a obsahu a poznatky o u\u017eivatel\u00edch","description":"Reklamu a obsah lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace obsahu lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it v\u00fdkon reklamy a obsahu. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Z\u00e1kladn\u00ed nastaven\u00ed reklamy, personalizovan\u00fd obsah, m\u011b\u0159en\u00ed v\u00fdkonu reklamy a obsahu a poznatky o u\u017eivatel\u00edch","description":"Reklamu a obsah lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace obsahu lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it v\u00fdkon reklamy a obsahu. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli. Data lze pou\u017e\u00edt k vytvo\u0159en\u00ed nebo zlep\u0161en\u00ed u\u017eivatelsk\u00e9ho prost\u0159ed\u00ed, syst\u00e9m\u016f a softwaru."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Z\u00e1kladn\u00ed nastaven\u00ed reklamy, personalizovan\u00fd obsah, m\u011b\u0159en\u00ed v\u00fdkonu reklamy a obsahu a poznatky o u\u017eivatel\u00edch","description":"Lze zobrazovat z\u00e1kladn\u00ed reklamu. Obsah lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace obsahu lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it v\u00fdkon reklamy a obsahu. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Z\u00e1kladn\u00ed nastaven\u00ed reklamy, personalizovan\u00fd obsah, m\u011b\u0159en\u00ed v\u00fdkonu reklamy a obsahu, poznatky o u\u017eivatel\u00edch a v\u00fdvoj produkt\u016f","description":"Lze zobrazovat z\u00e1kladn\u00ed reklamu. Obsah lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace obsahu lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it v\u00fdkon reklamy a obsahu. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli. Data lze pou\u017e\u00edt k vytvo\u0159en\u00ed nebo zlep\u0161en\u00ed u\u017eivatelsk\u00e9ho prost\u0159ed\u00ed, syst\u00e9m\u016f a softwaru."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Z\u00e1kladn\u00ed nastaven\u00ed reklamy, personalizovan\u00fd obsah, m\u011b\u0159en\u00ed v\u00fdkonu obsahu a poznatky o u\u017eivatel\u00edch","description":"Lze zobrazovat z\u00e1kladn\u00ed reklamu. Obsah lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace obsahu lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it v\u00fdkon reklamy a obsahu. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Z\u00e1kladn\u00ed nastaven\u00ed reklamy, personalizovan\u00fd obsah, m\u011b\u0159en\u00ed v\u00fdkonu obsahu, poznatky o u\u017eivatel\u00edch a v\u00fdvoj produkt\u016f","description":"Lze zobrazovat z\u00e1kladn\u00ed reklamu. Obsah lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace obsahu lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it v\u00fdkon obsahu. Lze odvozovat poznatky o u\u017eivatel\u00edch, kte\u0159\u00ed reklamu a obsah vid\u011bli. Data lze pou\u017e\u00edt k vytvo\u0159en\u00ed nebo zlep\u0161en\u00ed u\u017eivatelsk\u00e9ho prost\u0159ed\u00ed, syst\u00e9m\u016f a softwaru."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Z\u00e1kladn\u00ed nastaven\u00ed reklamy, personalizovan\u00fd obsah a m\u011b\u0159en\u00ed v\u00fdkonu reklamy","description":"Lze zobrazovat z\u00e1kladn\u00ed reklamu. Obsah lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace obsahu lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it v\u00fdkon reklamy."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Z\u00e1kladn\u00ed nastaven\u00ed reklamy, personalizovan\u00fd obsah, m\u011b\u0159en\u00ed v\u00fdkonu reklamy a v\u00fdvoj produkt\u016f","description":"Lze zobrazovat z\u00e1kladn\u00ed reklamu. Obsah lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace obsahu lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it v\u00fdkon reklamy. Data lze pou\u017e\u00edt k vytvo\u0159en\u00ed nebo zlep\u0161en\u00ed u\u017eivatelsk\u00e9ho prost\u0159ed\u00ed, syst\u00e9m\u016f a softwaru."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Personalizovan\u00e1 reklama, m\u011b\u0159en\u00ed reklamy a v\u00fdvoj produkt\u016f","description":"Reklamu lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace reklamy lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it \u00fa\u010dinnost reklamy. Data lze pou\u017e\u00edt k vytvo\u0159en\u00ed nebo zlep\u0161en\u00ed u\u017eivatelsk\u00e9ho prost\u0159ed\u00ed, syst\u00e9m\u016f a softwaru."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Personalizovan\u00e1 reklama, m\u011b\u0159en\u00ed reklamy, poznatky o okruz\u00edch publika a v\u00fdvoj produkt\u016f","description":"Reklamu lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace reklamy lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it \u00fa\u010dinnost reklamy. Lze odvozovat poznatky o okruz\u00edch publika, kter\u00e9 reklamu a obsah vid\u011blo. Data lze pou\u017e\u00edt k vytvo\u0159en\u00ed nebo zlep\u0161en\u00ed u\u017eivatelsk\u00e9ho prost\u0159ed\u00ed, syst\u00e9m\u016f a softwaru."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Personalizovan\u00e1 reklama, m\u011b\u0159en\u00ed reklamy a obsahu, poznatky o okruz\u00edch publika a v\u00fdvoj produkt\u016f","description":"Reklamu lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace reklamy lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it \u00fa\u010dinnost reklamy a obsahu. Lze odvozovat poznatky o okruz\u00edch publika, kter\u00e9 reklamu a obsah vid\u011blo. Data lze pou\u017e\u00edt k vytvo\u0159en\u00ed nebo zlep\u0161en\u00ed u\u017eivatelsk\u00e9ho prost\u0159ed\u00ed, syst\u00e9m\u016f a softwaru."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Personalizovan\u00e1 reklama, zobrazen\u00ed personalizovan\u00e9ho obsahu, m\u011b\u0159en\u00ed reklamy a obsahu, poznatky o okruz\u00edch publika a v\u00fdvoj produkt\u016f","description":"Reklamu a obsah lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace reklamy lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it \u00fa\u010dinnost reklamy a obsahu. Lze odvozovat poznatky o okruz\u00edch publika, kter\u00e9 reklamu a obsah vid\u011blo. Data lze pou\u017e\u00edt k vytvo\u0159en\u00ed nebo zlep\u0161en\u00ed u\u017eivatelsk\u00e9ho prost\u0159ed\u00ed, syst\u00e9m\u016f a softwaru."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Personalizovan\u00e1 reklama a obsah, m\u011b\u0159en\u00ed reklamy a obsahu, poznatky o okruz\u00edch publika a v\u00fdvoj produkt\u016f","description":"Reklamu a obsah lze personalizovat na z\u00e1klad\u011b profilu. Za \u00fa\u010delem zlep\u0161en\u00ed personalizace reklamy a obsahu lze p\u0159id\u00e1vat dal\u0161\u00ed data. Lze m\u011b\u0159it \u00fa\u010dinnost reklamy a obsahu. Lze odvozovat poznatky o okruz\u00edch publika, kter\u00e9 reklamu a obsah vid\u011blo. Data lze pou\u017e\u00edt k vytvo\u0159en\u00ed nebo zlep\u0161en\u00ed u\u017eivatelsk\u00e9ho prost\u0159ed\u00ed, syst\u00e9m\u016f a softwaru."}}} \ No newline at end of file diff --git a/src/s1/config/2.0/purposes/purposes-da.json b/src/s1/config/2.0/purposes/purposes-da.json index c775fbc6..8b252fd9 100644 --- a/src/s1/config/2.0/purposes/purposes-da.json +++ b/src/s1/config/2.0/purposes/purposes-da.json @@ -1 +1 @@ -{"vendorListVersion":79,"lastUpdated":"2021-02-25T16:36:15Z","purposes":{"1":{"id":1,"name":"Opbevare og/eller tilg\u00e5 oplysninger p\u00e5 en enhed","description":"Cookies, enhedsidentifikatorer eller andre oplysninger kan opbevares eller tilg\u00e5s p\u00e5 din enhed til de form\u00e5l, der pr\u00e6senteres for dig.","descriptionLegal":"Leverand\u00f8rer kan:\n* Opbevare og tilg\u00e5 oplysninger p\u00e5 enheden, s\u00e5som cookies og enhedsidentifikatorer, der pr\u00e6senteres for en bruger.\n"},"2":{"id":2,"name":"V\u00e6lge basisannoncer","description":"Du kan f\u00e5 vist annoncer baseret p\u00e5 det indhold, som du ser, den app du bruger, din omtrentlige placering eller din enhedstype.","descriptionLegal":"For at foretage valg af basisannoncer kan leverand\u00f8rer:\n* Bruge realtidsoplysninger om den sammenh\u00e6ng, hvori annoncen vises, til at vise annoncen, herunder oplysninger om indholdet og enheden, s\u00e5som: enhedstype og -kapaciteter, brugeragent, URL og IP-adresse .\n* Anvende en brugers ikke-pr\u00e6cise geoplaceringsoplysninger.\n* Kontrollere hyppigheden af annoncer, som en bruger f\u00e5r vist.\n* Konfigurere den r\u00e6kkef\u00f8lge, i hvilken en bruger f\u00e5r vist annoncer.\n* Forhindre en annonce i at blive pr\u00e6senteret i en upassende redaktionel (brand-unsafe) sammenh\u00e6ng.\nLeverand\u00f8rer kan ikke:\n* Oprette en tilpasset annonceprofil ved hj\u00e6lp af disse oplysninger til valg af fremtidige annoncer uden et s\u00e6rskilt retsgrundlag for at oprette en tilpasset annonceprofil.\nNB. Ikke-pr\u00e6cis betyder kun en omtrentlig placering, der involverer en tilladt radius p\u00e5 mindst 500 meter.\n"},"3":{"id":3,"name":"Oprette en tilpasset annonceprofil","description":"En profil kan opbygges om dig og dine interesser for at vise dig tilpassede annoncer, der er relevante for dig.","descriptionLegal":"For at oprette en tilpasset annonceprofil kan leverand\u00f8rer:\n* Indsamle oplysninger om en bruger, herunder en brugers aktivitet, interesser, bes\u00f8g p\u00e5 websteder eller apps, demografiske oplysninger eller placering, for at oprette eller redigere en brugerprofil til brug ifm. tilpasset annoncering.\n* Kombiner disse oplysninger med andre oplysninger, der tidligere er indsamlet, inklusive fra tv\u00e6rs af websteder og apps, for at oprette eller redigere en brugerprofil til brug i personlig annoncering.\n"},"4":{"id":4,"name":"V\u00e6lge tilpassede annoncer","description":"Du kan f\u00e5 vist tilpassede annoncer baseret p\u00e5 en profil om dig.","descriptionLegal":"For at v\u00e6lge tilpassede annoncer kan leverand\u00f8rer:\n* V\u00e6lge tilpassede annoncer baseret p\u00e5 en brugerprofil eller andre historiske brugeroplysninger, herunder en brugers tidligere aktivitet, interesser, bes\u00f8g p\u00e5 websteder eller apps, placering eller demografiske oplysninger.\n"},"5":{"id":5,"name":"Oprette en tilpasset indholdsprofil","description":"En profil kan opbygges om dig og dine interesser for at vise dig tilpasset indhold, der er relevant for dig.","descriptionLegal":"For at oprette en tilpasset indholdsprofil kan leverand\u00f8rer:\n* Indsamle oplysninger om en bruger, herunder en brugers aktivitet, interesser, bes\u00f8g p\u00e5 websteder eller apps, demografiske oplysninger eller placering, for at oprette eller redigere en brugerprofil med henblik p\u00e5 at tilpasse indhold.\n* Kombiner disse oplysninger med andre oplysninger, der tidligere er indsamlet, inklusive fra tv\u00e6rs af websteder og apps, for at oprette eller redigere en brugerprofil til brug ved personalisering af indhold."},"6":{"id":6,"name":"V\u00e6lge tilpasset indhold","description":"Du kan f\u00e5 vist tilpasset indhold baseret p\u00e5 en profil om dig.","descriptionLegal":"For at v\u00e6lge tilpasset indhold, kan leverand\u00f8rer:\n* V\u00e6lge tilpasset indhold baseret p\u00e5 en brugerprofil eller andre historiske brugeroplysninger, herunder en brugers tidligere aktivitet, interesser, bes\u00f8g p\u00e5 websteder eller apps, placering eller demografiske oplysninger.\n"},"7":{"id":7,"name":"M\u00e5le annonceeffektivitet","description":"Resultaterne og effektiviteten af annoncer, som du ser eller interagerer med, kan m\u00e5les.","descriptionLegal":"For at m\u00e5le annonceeffektivitet, kan leverand\u00f8rer:\n* M\u00e5le hvorvidt og hvordan annoncer blev leveret til og interageret med af en bruger.\n* Tilvejebringe rapportering om annoncer, herunder deres effektivitet og resultater.\n* Tilvejebringe rapportering om brugere, der interagerede med annoncer ved hj\u00e6lp af oplysninger, der blev observeret under brugerens interaktion med den p\u00e5g\u00e6ldende annonce.\n* Tilvejebringe rapportering for udgivere om de annoncer, der vises p\u00e5 deres ejendom.\n* M\u00e5le, hvorvidt en annonce vises i en passende, redaktionel sammenh\u00e6ng (brand-safe).\n* Fastsl\u00e5 den procentdel af annoncen, der havde mulighed for at blive set og varigheden af den p\u00e5g\u00e6ldende mulighed. \nLeverand\u00f8rer kan ikke:\n* Anvende panel-udledte eller lignende udledte m\u00e5lgruppeindsigter til oplysninger om annoncem\u00e5ling uden et s\u00e6rskilt retsgrundlag for at anvende markedsunders\u00f8gelser til at generere m\u00e5lgruppeindsigter.\n"},"8":{"id":8,"name":"M\u00e5le indholdseffektivitet","description":"Resultaterne og effektiviteten af indhold, som du ser eller interagerer med, kan m\u00e5les.","descriptionLegal":"For at m\u00e5le indholdseffektivitet kan leverand\u00f8rer:\n* M\u00e5le og rapportere om, hvordan indhold blev leveret til og interageret med af brugere.\n* Tilvejebringe rapportering ved hj\u00e6lp af direkte m\u00e5lbare eller kendte oplysninger om brugere, der interagerede med indholdet.\nLeverand\u00f8rer kan ikke:\n* M\u00e5le, hvorvidt og hvordan annoncer (herunder native annoncering) blev leveret til og interageret med af en bruger.\n* Anvende panel-udledte eller lignende udledte m\u00e5lgruppeindsigter til oplysninger om annoncem\u00e5ling uden et s\u00e6rskilt retsgrundlag for at anvende markedsunders\u00f8gelser til at generere m\u00e5lgruppeindsigter.\n"},"9":{"id":9,"name":"Anvende markedsunders\u00f8gelser til at generere m\u00e5lgruppeindsigter","description":"Markedsunders\u00f8gelser kan bruges til at l\u00e6re mere om de m\u00e5lgrupper, der bes\u00f8ger websteder/apps og ser annoncer.","descriptionLegal":"For at anvende markedsunders\u00f8gelser til at generere m\u00e5lgruppeindsigter kan leverand\u00f8rer:\n* Tilvejebringe samlet rapportering for annonc\u00f8rer eller deres repr\u00e6sentanter om de m\u00e5lgrupper, som deres annoncer n\u00e5r ud til, via panelbaserede og lignende udledte indsigter.\n* Tilvejebringe samlet rapportering for udgivere om m\u00e5lgrupper, der blev pr\u00e6senteret for eller som interagerede med indhold og/eller annoncer p\u00e5 deres ejendom ved at anvende panelbaserede og lignende udledte indsigter. \n* Knytte offline-oplysninger til en online-bruger med henblik p\u00e5 markedsunders\u00f8gelser for at generere m\u00e5lgruppeindsigter, hvis leverand\u00f8rer har givet tilsagn om at matche og kombinere offline-datakilder (Funktion 1).\nLeverand\u00f8rer kan ikke: \n* M\u00e5le resultaterne og effektiviteten af annoncer, som en specifik bruger blev pr\u00e6senteret for eller interagerede med, uden et s\u00e6rskilt retsgrundlag for at m\u00e5le annonceeffektivitet.\n* M\u00e5le, hvilket indhold en specifik bruger blev pr\u00e6senteret for, og hvordan de interagerede med det, uden et s\u00e6rskilt retsgrundlag for at m\u00e5le indholdseffektivitet.\n"},"10":{"id":10,"name":"Udvikle og forbedre produkter","description":"Dine oplysninger kan bruges til at forbedre eksisterende systemer og software og til at udvikle nye produkter.","descriptionLegal":"For at udvikle nye produkter og forbedre produkter kan leverand\u00f8rer:\n* Bruge oplysninger til at forbedre deres eksisterende produkter med nye funktioner og til at udvikle nye produkter.\n* Oprette nye modeller og algoritmer gennem maskinl\u00e6ring.\nLeverand\u00f8rer kan ikke:\n* Udf\u00f8re eventuel anden databehandlingsaktivitet, der er tilladt i henhold til et andet form\u00e5l under dette form\u00e5l.\n"}},"specialPurposes":{"1":{"id":1,"name":"Sikre sikkerhed, forebygge svig og fejlfinding","description":"Dine oplysninger kan bruges til at overv\u00e5ge og forebygge svigagtig aktivitet og sikre, at systemer og processer fungerer korrekt og sikkert.","descriptionLegal":"For at sikre sikkerhed, forebygge svig og fejlfinding kan leverand\u00f8rer:\n* Sikre, at oplysninger sendes sikkert.\n* P\u00e5vise og forhindre ondsindet, svigagtig, ugyldig eller ulovlig aktivitet.\n* Sikre korrekt og effektiv drift af systemer og processer, herunder overv\u00e5ge og forbedre ydeevnen af systemer og processer, der er involveret i tilladte form\u00e5l.\nLeverand\u00f8rer kan ikke:\n* Udf\u00f8re eventuel anden databehandlingsaktivitet, der er tilladt i henhold til et andet form\u00e5l under dette form\u00e5l.\nBem\u00e6rk: Oplysninger, der indsamles og anvendes til at sikre sikkerhed, forebygge svig og fejlfinding, kan omfatte automatisk sendte enhedskarakteristika til identifikation, pr\u00e6cise geoplaceringsoplysninger, og oplysninger, der indsamles ved aktivt at scanne enhedskarakteristika for identifikation uden s\u00e6rskilt oplysningskrav og/eller tilvalg.\n"},"2":{"id":2,"name":"Teknisk levering af annoncer eller indhold","description":"Din enhed kan modtage og sende oplysninger, der giver dig mulighed for at se og interagere med annoncer og indhold.","descriptionLegal":"For at levere oplysninger og svare p\u00e5 tekniske anmodninger kan leverand\u00f8rer:\n* Anvende en brugers IP-adresse til at levere en annonce over internettet.\n* Svare p\u00e5 en brugers interaktion med en annonce ved at sende brugeren til en destinationsside.\n* Anvende en brugers IP-adresse til at levere indhold over internettet.\n* Svare p\u00e5 en brugers interaktion med indhold ved at sende brugeren til en destinationsside.\n* Bruge oplysninger om enhedstypen og -kapaciteterne til levering af annoncer eller indhold, for eksempel, til at levere den rigtige st\u00f8rrelse annonce eller videofil i et format, der underst\u00f8ttes af enheden.\nLeverand\u00f8rer kan ikke:\n* Udf\u00f8re eventuel anden databehandlingsaktivitet, der er tilladt i henhold til et andet form\u00e5l under dette form\u00e5l.\n"}},"features":{"1":{"id":1,"name":"Matche og kombinere offline-datakilder","description":"Oplysninger fra offline-datakilder kan kombineres med din onlineaktivitet til underst\u00f8ttelse af et eller flere form\u00e5l.","descriptionLegal":"Leverand\u00f8rer kan: \n* Kombinere oplysninger, der indsamles offline, med oplysninger, der indsamles online, til underst\u00f8ttelse af et eller flere Form\u00e5l eller S\u00e6rlige form\u00e5l.\n"},"2":{"id":2,"name":"Linke forskellige enheder","description":"Forskellige enheder kan fastsl\u00e5s som tilh\u00f8rende dig eller din husstand til underst\u00f8ttelse af et eller flere form\u00e5l.","descriptionLegal":"Leverand\u00f8rer kan:\n* Deterministisk bestemme, at to eller flere enheder tilh\u00f8rer samme bruger eller husstand.\n* Probabilistisk bestemme, at to eller flere enheder tilh\u00f8rer samme bruger eller husstand.\n* Aktivt scanne enhedskarakteristika til identifikation ifm. probabilistisk identifikation, hvis brugere har givet leverand\u00f8rer tilladelse til aktivt at scanne enhedskarakteristika til identifikation (S\u00e6rlig funktion 2).\n"},"3":{"id":3,"name":"Modtage og bruge automatisk sendte enhedskarakteristika til identifikation.","description":"Din enhed kan skelnes fra andre enheder baseret p\u00e5 oplysninger, som den automatisk sender, s\u00e5som IP-adresse eller browsertype.","descriptionLegal":"Leverand\u00f8rer kan:\n* Oprette en identifikator ved hj\u00e6lp af oplysninger, der indsamles automatisk fra en enhed, for specifikke karakteristika f.eks. IP-adresse og brugeragent-streng.\n* Bruge en s\u00e5dan identifikator til at fors\u00f8ge at genidentificere en enhed.\nLeverand\u00f8rer kan ikke:\n* Oprette en identifikator ved hj\u00e6lp af oplysninger, der indsamles via aktiv scanning af en enhed, for specifikke karakteristika, f.eks. installerede skrifttyper eller sk\u00e6rmopl\u00f8sning, uden brugernes tilvalg af aktiv scanning af enhedskarakteristika til identifikation.\n* Bruge en s\u00e5dan identifikator til at genidentificere en enhed.\n"}},"specialFeatures":{"1":{"id":1,"name":"Bruge pr\u00e6cise geoplaceringsoplysninger","description":"Dine pr\u00e6cise geoplaceringsoplysninger kan bruges til underst\u00f8ttelse af et eller flere form\u00e5l. Det betyder, at din placering kan v\u00e6re n\u00f8jagtig til inden for f\u00e5 meter.","descriptionLegal":"Leverand\u00f8rer kan:\n* Indsamle og behandle pr\u00e6cise geoplaceringsoplysninger til underst\u00f8ttelse af et eller flere form\u00e5l.\nNB. Pr\u00e6cis geoplacering betyder, at der ikke er nogen begr\u00e6nsninger p\u00e5 n\u00f8jagtigheden af en brugers placering. Denne kan v\u00e6re n\u00f8jagtig til inden for flere meter.\n"},"2":{"id":2,"name":"Aktivt scanne enhedskarakteristika til identifikation","description":"Din enhed kan identificeres baseret p\u00e5 en scanning af din enheds unikke kombination af karakteristika.","descriptionLegal":"Leverand\u00f8rer kan:\n* Oprette en identifikator ved hj\u00e6lp af oplysninger, der indsamles via aktiv scanning af en enhed for specifikke karakteristika f.eks. installerede skrifttyper eller sk\u00e6rmopl\u00f8sning. \n* Bruge en s\u00e5dan identifikator til at genidentificere en enhed.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Pr\u00e6cise geoplaceringsoplysninger og identifikation gennem enhedsscanning","description":"Pr\u00e6cis geoplacering og oplysninger om enhedskarakteristika kan anvendes."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Basisannoncer og annoncem\u00e5ling","description":"Basisannoncer kan pr\u00e6senteres. Annonceeffektivitet kan m\u00e5les."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Tilpassede annoncer","description":"Annoncer kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af annoncer."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Basisannoncer og annoncem\u00e5ling","description":"Basisannoncer kan pr\u00e6senteres. Annonceeffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Basisannoncer, tilpasset annonceprofil og annoncem\u00e5ling","description":"Basisannoncer kan pr\u00e6senteres. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af annoncer. Annonceeffektivitet kan m\u00e5les."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Visning af tilpassede annoncer og annoncem\u00e5ling","description":"Annoncer kan tilpasses baseret p\u00e5 en profil. Annonceeffektivitet kan m\u00e5les."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Visning af tilpassede annoncer, annoncem\u00e5ling og m\u00e5lgruppeindsigter","description":"Annoncer kan tilpasses baseret p\u00e5 en profil. Annonceeffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Tilpassede annoncer og annoncem\u00e5ling","description":"Annoncer kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af annoncer. Annonceeffektivitet kan m\u00e5les."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Tilpassede annoncer, annoncem\u00e5ling og m\u00e5lgruppeindsigter","description":"Annoncer kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af annoncer. Annonceeffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Tilpasset annonceprofil og visning","description":"Annoncer kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af annoncer."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Tilpasset indhold","description":"Indhold kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af indhold."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Visning af tilpasset indhold og indholdsm\u00e5ling","description":"Indhold kan tilpasses baseret p\u00e5 en profil. Indholdseffektivitet kan m\u00e5les."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Visning af tilpasset indhold, indholdsm\u00e5ling og m\u00e5lgruppeindsigter","description":"Indhold kan tilpasses baseret p\u00e5 en profil. Indholdseffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Tilpasset indhold og indholdsm\u00e5ling","description":"Indhold kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af indhold. Indholdseffektivitet kan m\u00e5les."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Tilpasset indhold, indholdsm\u00e5ling og m\u00e5lgruppeindsigter","description":"Indhold kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af indhold. Indholdseffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Tilpasset indhold, indholdsm\u00e5ling, m\u00e5lgruppeindsigter og produktudvikling","description":"Indhold kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af indhold. Indholdseffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes. Oplysninger kan bruges til at opbygge eller forbedre brugeroplevelse, systemer og software"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Annonce- og indholdsm\u00e5ling og m\u00e5lgruppeindsigter","description":"Annonce- og indholdseffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Annonce- og indholdsm\u00e5ling","description":"Annonce- og indholdseffektivitet kan m\u00e5les."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Annoncem\u00e5ling og m\u00e5lgruppeindsigter","description":"Annonce kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Annonce- og indholdsm\u00e5ling, m\u00e5lgruppeindsigter og produktudvikling","description":"Annonce- og indholdseffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes. Oplysninger kan bruges til at udvikle eller forbedre brugeroplevelse, systemer og software. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Indholdsm\u00e5ling, m\u00e5lgruppeindsigter og produktudvikling.","description":"Indholdseffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes. Oplysninger kan bruges til at udvikle eller forbedre brugeroplevelse, systemer og software."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Indholdsm\u00e5ling og produktudvikling","description":"Indholdseffektivitet kan m\u00e5les. Oplysninger kan bruges til at udvikle eller forbedre brugeroplevelse, systemer og software."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Visning af tilpassede annoncer og indhold, annonce- og indholdsm\u00e5ling","description":"Annoncer og indhold kan tilpasses baseret p\u00e5 en profil. Annonce- og indholdseffektivitet kan m\u00e5les."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Visning af tilpassede annoncer og indhold, annonce- og indholdsm\u00e5ling og m\u00e5lgruppeindsigter","description":"Annoncer og indhold kan tilpasses baseret p\u00e5 en profil. Annonce- og indholdseffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes. Oplysninger kan bruges til at udvikle eller forbedre brugeroplevelse, systemer og software."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Tilpassede annoncer og indhold, annonce- og indholdsm\u00e5ling","description":"Annoncer og indhold kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af annoncer og indhold. Annonce- og indholdseffektivitet kan m\u00e5les."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Tilpassede annoncer og indhold, annonce- og indholdsm\u00e5ling og m\u00e5lgruppeindsigter","description":"Annoncer og indhold kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af annoncer og indhold. Annonce- og indholdseffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Tilpassede annoncer og indholdsprofil","description":"Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af annoncer og indhold."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Visning af tilpassede annoncer og indhold","description":"Annoncer og indhold kan tilpasses baseret p\u00e5 en profil."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Basisannoncer, annonce- og indholdsm\u00e5ling og m\u00e5lgruppeindsigter","description":"Basisannoncer kan pr\u00e6senteres. Annonce- og indholdseffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Visning af tilpassede annoncer, tilpasset indhold, annonce- og indholdsm\u00e5ling og m\u00e5lgruppeindsigter","description":"Annoncer og indhold kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af indhold. Annonce- og indholdseffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Visning af tilpassede annoncer, tilpasset indhold, annonce- og indholdsm\u00e5ling, m\u00e5lgruppeindsigter og produktudvikling","description":"Annoncer og indhold kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af indhold. Annonce- og indholdseffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes. Oplysninger kan bruges til at udvikle eller forbedre brugeroplevelse, systemer og software."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Basisannoncer, tilpasset indhold, annonce- og indholdsm\u00e5ling og m\u00e5lgruppeindsigter","description":"Basisannoncer kan pr\u00e6senteres. Indhold kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af indhold. Annonce- og indholdseffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Basisannoncer, tilpasset indhold, annonce- og indholdsm\u00e5ling, m\u00e5lgruppeindsigter og produktudvikling","description":"Basisannoncer kan pr\u00e6senteres. Indhold kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af indhold. Annonce- og indholdseffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes. Oplysninger kan bruges til at udvikle eller forbedre brugeroplevelse, systemer og software."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Basisannoncer, tilpasset indhold, indholdsm\u00e5ling og m\u00e5lgruppeindsigter","description":"Basisannoncer kan pr\u00e6senteres. Indhold kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af indhold. Annonce- og indholdseffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Basisannoncer, tilpasset indhold, indholdsm\u00e5ling, m\u00e5lgruppeindsigter og produktudvikling","description":"Basisannoncer kan pr\u00e6senteres. Indhold kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af indhold. Indholdseffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes. Oplysninger kan bruges til at udvikle eller forbedre brugeroplevelse, systemer og software."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Basisannoncer, tilpasset indhold og annoncem\u00e5ling","description":"Basisannoncer kan pr\u00e6senteres. Indhold kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af indhold. Annonceeffektivitet kan m\u00e5les."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Basisannoncer, tilpasset indhold, annoncem\u00e5ling og produktudvikling","description":"Basisannoncer kan pr\u00e6senteres. Indhold kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af indhold. Annonceeffektivitet kan m\u00e5les. Oplysninger kan bruges til at udvikle eller forbedre brugeroplevelse, systemer og software."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Tilpassede annoncer, annoncem\u00e5ling og produktudvikling","description":"Annoncer kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af annoncer. Annonceeffektivitet kan m\u00e5les. Oplysninger kan bruges til at udvikle eller forbedre brugeroplevelse, systemer og software."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Tilpassede annoncer, annoncem\u00e5ling, m\u00e5lgruppeindsigter og produktudvikling","description":"Annoncer kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af annoncer. Annonceeffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes. Data kan bruges til at udvikle eller forbedre brugeroplevelse, systemer og software."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Tilpassede annoncer, annonce- og indholdsm\u00e5ling, m\u00e5lgruppeindsigter og produktudvikling","description":"Annoncer kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af annoncer. Annonce- og indholdseffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupper, der s\u00e5 annoncerne og indholdet, kan udledes. Data kan bruges til at udvikle eller forbedre brugeroplevelse, systemer og software."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Tilpassede annoncer, tilpasset indhold, annonce- og indholdsm\u00e5ling, m\u00e5lgruppeindsigter og produktudvikling","description":"Annoncer og indhold kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af annoncer. Annonce- og indholdseffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupper, der s\u00e5 annoncerne og indholdet, kan udledes. Data kan bruges til at udvikle eller forbedre brugeroplevelse, systemer og software."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Tilpassede annoncer og tilpasset indhold, annonce- og indholdsm\u00e5ling, m\u00e5lgruppeindsigter og produktudvikling","description":"Annoncer og indhold kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af annoncer og indhold. Annonce- og indholdseffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupper, der s\u00e5 annoncerne og indholdet, kan udledes. Data kan bruges til at udvikle eller forbedre brugeroplevelse, systemer og software."}}} \ No newline at end of file +{"vendorListVersion":94,"lastUpdated":"2021-06-10T16:43:55Z","purposes":{"1":{"id":1,"name":"Opbevare og/eller tilg\u00e5 oplysninger p\u00e5 en enhed","description":"Cookies, enhedsidentifikatorer eller andre oplysninger kan opbevares eller tilg\u00e5s p\u00e5 din enhed til de form\u00e5l, der pr\u00e6senteres for dig.","descriptionLegal":"Leverand\u00f8rer kan:\n* Opbevare og tilg\u00e5 oplysninger p\u00e5 enheden, s\u00e5som cookies og enhedsidentifikatorer, der pr\u00e6senteres for en bruger.\n"},"2":{"id":2,"name":"V\u00e6lge basisannoncer","description":"Du kan f\u00e5 vist annoncer baseret p\u00e5 det indhold, som du ser, den app du bruger, din omtrentlige placering eller din enhedstype.","descriptionLegal":"For at foretage valg af basisannoncer kan leverand\u00f8rer:\n* Bruge realtidsoplysninger om den sammenh\u00e6ng, hvori annoncen vises, til at vise annoncen, herunder oplysninger om indholdet og enheden, s\u00e5som: enhedstype og -kapaciteter, brugeragent, URL og IP-adresse .\n* Anvende en brugers ikke-pr\u00e6cise geoplaceringsoplysninger.\n* Kontrollere hyppigheden af annoncer, som en bruger f\u00e5r vist.\n* Konfigurere den r\u00e6kkef\u00f8lge, i hvilken en bruger f\u00e5r vist annoncer.\n* Forhindre en annonce i at blive pr\u00e6senteret i en upassende redaktionel (brand-unsafe) sammenh\u00e6ng.\nLeverand\u00f8rer kan ikke:\n* Oprette en tilpasset annonceprofil ved hj\u00e6lp af disse oplysninger til valg af fremtidige annoncer uden et s\u00e6rskilt retsgrundlag for at oprette en tilpasset annonceprofil.\nNB. Ikke-pr\u00e6cis betyder kun en omtrentlig placering, der involverer en tilladt radius p\u00e5 mindst 500 meter.\n"},"3":{"id":3,"name":"Oprette en tilpasset annonceprofil","description":"En profil kan opbygges om dig og dine interesser for at vise dig tilpassede annoncer, der er relevante for dig.","descriptionLegal":"For at oprette en tilpasset annonceprofil kan leverand\u00f8rer:\n* Indsamle oplysninger om en bruger, herunder en brugers aktivitet, interesser, bes\u00f8g p\u00e5 websteder eller apps, demografiske oplysninger eller placering, for at oprette eller redigere en brugerprofil til brug ifm. tilpasset annoncering.\n* Kombiner disse oplysninger med andre oplysninger, der tidligere er indsamlet, inklusive fra tv\u00e6rs af websteder og apps, for at oprette eller redigere en brugerprofil til brug i personlig annoncering.\n"},"4":{"id":4,"name":"V\u00e6lge tilpassede annoncer","description":"Du kan f\u00e5 vist tilpassede annoncer baseret p\u00e5 en profil om dig.","descriptionLegal":"For at v\u00e6lge tilpassede annoncer kan leverand\u00f8rer:\n* V\u00e6lge tilpassede annoncer baseret p\u00e5 en brugerprofil eller andre historiske brugeroplysninger, herunder en brugers tidligere aktivitet, interesser, bes\u00f8g p\u00e5 websteder eller apps, placering eller demografiske oplysninger.\n"},"5":{"id":5,"name":"Oprette en tilpasset indholdsprofil","description":"En profil kan opbygges om dig og dine interesser for at vise dig tilpasset indhold, der er relevant for dig.","descriptionLegal":"For at oprette en tilpasset indholdsprofil kan leverand\u00f8rer:\n* Indsamle oplysninger om en bruger, herunder en brugers aktivitet, interesser, bes\u00f8g p\u00e5 websteder eller apps, demografiske oplysninger eller placering, for at oprette eller redigere en brugerprofil med henblik p\u00e5 at tilpasse indhold.\n* Kombiner disse oplysninger med andre oplysninger, der tidligere er indsamlet, inklusive fra tv\u00e6rs af websteder og apps, for at oprette eller redigere en brugerprofil til brug ved personalisering af indhold."},"6":{"id":6,"name":"V\u00e6lge tilpasset indhold","description":"Du kan f\u00e5 vist tilpasset indhold baseret p\u00e5 en profil om dig.","descriptionLegal":"For at v\u00e6lge tilpasset indhold, kan leverand\u00f8rer:\n* V\u00e6lge tilpasset indhold baseret p\u00e5 en brugerprofil eller andre historiske brugeroplysninger, herunder en brugers tidligere aktivitet, interesser, bes\u00f8g p\u00e5 websteder eller apps, placering eller demografiske oplysninger.\n"},"7":{"id":7,"name":"M\u00e5le annonceeffektivitet","description":"Resultaterne og effektiviteten af annoncer, som du ser eller interagerer med, kan m\u00e5les.","descriptionLegal":"For at m\u00e5le annonceeffektivitet, kan leverand\u00f8rer:\n* M\u00e5le hvorvidt og hvordan annoncer blev leveret til og interageret med af en bruger.\n* Tilvejebringe rapportering om annoncer, herunder deres effektivitet og resultater.\n* Tilvejebringe rapportering om brugere, der interagerede med annoncer ved hj\u00e6lp af oplysninger, der blev observeret under brugerens interaktion med den p\u00e5g\u00e6ldende annonce.\n* Tilvejebringe rapportering for udgivere om de annoncer, der vises p\u00e5 deres ejendom.\n* M\u00e5le, hvorvidt en annonce vises i en passende, redaktionel sammenh\u00e6ng (brand-safe).\n* Fastsl\u00e5 den procentdel af annoncen, der havde mulighed for at blive set og varigheden af den p\u00e5g\u00e6ldende mulighed. \nLeverand\u00f8rer kan ikke:\n* Anvende panel-udledte eller lignende udledte m\u00e5lgruppeindsigter til oplysninger om annoncem\u00e5ling uden et s\u00e6rskilt retsgrundlag for at anvende markedsunders\u00f8gelser til at generere m\u00e5lgruppeindsigter.\n"},"8":{"id":8,"name":"M\u00e5le indholdseffektivitet","description":"Resultaterne og effektiviteten af indhold, som du ser eller interagerer med, kan m\u00e5les.","descriptionLegal":"For at m\u00e5le indholdseffektivitet kan leverand\u00f8rer:\n* M\u00e5le og rapportere om, hvordan indhold blev leveret til og interageret med af brugere.\n* Tilvejebringe rapportering ved hj\u00e6lp af direkte m\u00e5lbare eller kendte oplysninger om brugere, der interagerede med indholdet.\nLeverand\u00f8rer kan ikke:\n* M\u00e5le, hvorvidt og hvordan annoncer (herunder native annoncering) blev leveret til og interageret med af en bruger.\n* Anvende panel-udledte eller lignende udledte m\u00e5lgruppeindsigter til oplysninger om annoncem\u00e5ling uden et s\u00e6rskilt retsgrundlag for at anvende markedsunders\u00f8gelser til at generere m\u00e5lgruppeindsigter.\n"},"9":{"id":9,"name":"Anvende markedsunders\u00f8gelser til at generere m\u00e5lgruppeindsigter","description":"Markedsunders\u00f8gelser kan bruges til at l\u00e6re mere om de m\u00e5lgrupper, der bes\u00f8ger websteder/apps og ser annoncer.","descriptionLegal":"For at anvende markedsunders\u00f8gelser til at generere m\u00e5lgruppeindsigter kan leverand\u00f8rer:\n* Tilvejebringe samlet rapportering for annonc\u00f8rer eller deres repr\u00e6sentanter om de m\u00e5lgrupper, som deres annoncer n\u00e5r ud til, via panelbaserede og lignende udledte indsigter.\n* Tilvejebringe samlet rapportering for udgivere om m\u00e5lgrupper, der blev pr\u00e6senteret for eller som interagerede med indhold og/eller annoncer p\u00e5 deres ejendom ved at anvende panelbaserede og lignende udledte indsigter. \n* Knytte offline-oplysninger til en online-bruger med henblik p\u00e5 markedsunders\u00f8gelser for at generere m\u00e5lgruppeindsigter, hvis leverand\u00f8rer har givet tilsagn om at matche og kombinere offline-datakilder (Funktion 1).\nLeverand\u00f8rer kan ikke: \n* M\u00e5le resultaterne og effektiviteten af annoncer, som en specifik bruger blev pr\u00e6senteret for eller interagerede med, uden et s\u00e6rskilt retsgrundlag for at m\u00e5le annonceeffektivitet.\n* M\u00e5le, hvilket indhold en specifik bruger blev pr\u00e6senteret for, og hvordan de interagerede med det, uden et s\u00e6rskilt retsgrundlag for at m\u00e5le indholdseffektivitet.\n"},"10":{"id":10,"name":"Udvikle og forbedre produkter","description":"Dine oplysninger kan bruges til at forbedre eksisterende systemer og software og til at udvikle nye produkter.","descriptionLegal":"For at udvikle nye produkter og forbedre produkter kan leverand\u00f8rer:\n* Bruge oplysninger til at forbedre deres eksisterende produkter med nye funktioner og til at udvikle nye produkter.\n* Oprette nye modeller og algoritmer gennem maskinl\u00e6ring.\nLeverand\u00f8rer kan ikke:\n* Udf\u00f8re eventuel anden databehandlingsaktivitet, der er tilladt i henhold til et andet form\u00e5l under dette form\u00e5l.\n"}},"specialPurposes":{"1":{"id":1,"name":"Sikre sikkerhed, forebygge svig og fejlfinding","description":"Dine oplysninger kan bruges til at overv\u00e5ge og forebygge svigagtig aktivitet og sikre, at systemer og processer fungerer korrekt og sikkert.","descriptionLegal":"For at sikre sikkerhed, forebygge svig og fejlfinding kan leverand\u00f8rer:\n* Sikre, at oplysninger sendes sikkert.\n* P\u00e5vise og forhindre ondsindet, svigagtig, ugyldig eller ulovlig aktivitet.\n* Sikre korrekt og effektiv drift af systemer og processer, herunder overv\u00e5ge og forbedre ydeevnen af systemer og processer, der er involveret i tilladte form\u00e5l.\nLeverand\u00f8rer kan ikke:\n* Udf\u00f8re eventuel anden databehandlingsaktivitet, der er tilladt i henhold til et andet form\u00e5l under dette form\u00e5l.\nBem\u00e6rk: Oplysninger, der indsamles og anvendes til at sikre sikkerhed, forebygge svig og fejlfinding, kan omfatte automatisk sendte enhedskarakteristika til identifikation, pr\u00e6cise geoplaceringsoplysninger, og oplysninger, der indsamles ved aktivt at scanne enhedskarakteristika for identifikation uden s\u00e6rskilt oplysningskrav og/eller tilvalg.\n"},"2":{"id":2,"name":"Teknisk levering af annoncer eller indhold","description":"Din enhed kan modtage og sende oplysninger, der giver dig mulighed for at se og interagere med annoncer og indhold.","descriptionLegal":"For at levere oplysninger og svare p\u00e5 tekniske anmodninger kan leverand\u00f8rer:\n* Anvende en brugers IP-adresse til at levere en annonce over internettet.\n* Svare p\u00e5 en brugers interaktion med en annonce ved at sende brugeren til en destinationsside.\n* Anvende en brugers IP-adresse til at levere indhold over internettet.\n* Svare p\u00e5 en brugers interaktion med indhold ved at sende brugeren til en destinationsside.\n* Bruge oplysninger om enhedstypen og -kapaciteterne til levering af annoncer eller indhold, for eksempel, til at levere den rigtige st\u00f8rrelse annonce eller videofil i et format, der underst\u00f8ttes af enheden.\nLeverand\u00f8rer kan ikke:\n* Udf\u00f8re eventuel anden databehandlingsaktivitet, der er tilladt i henhold til et andet form\u00e5l under dette form\u00e5l.\n"}},"features":{"1":{"id":1,"name":"Matche og kombinere offline-datakilder","description":"Oplysninger fra offline-datakilder kan kombineres med din onlineaktivitet til underst\u00f8ttelse af et eller flere form\u00e5l.","descriptionLegal":"Leverand\u00f8rer kan: \n* Kombinere oplysninger, der indsamles offline, med oplysninger, der indsamles online, til underst\u00f8ttelse af et eller flere Form\u00e5l eller S\u00e6rlige form\u00e5l.\n"},"2":{"id":2,"name":"Linke forskellige enheder","description":"Forskellige enheder kan fastsl\u00e5s som tilh\u00f8rende dig eller din husstand til underst\u00f8ttelse af et eller flere form\u00e5l.","descriptionLegal":"Leverand\u00f8rer kan:\n* Deterministisk bestemme, at to eller flere enheder tilh\u00f8rer samme bruger eller husstand.\n* Probabilistisk bestemme, at to eller flere enheder tilh\u00f8rer samme bruger eller husstand.\n* Aktivt scanne enhedskarakteristika til identifikation ifm. probabilistisk identifikation, hvis brugere har givet leverand\u00f8rer tilladelse til aktivt at scanne enhedskarakteristika til identifikation (S\u00e6rlig funktion 2).\n"},"3":{"id":3,"name":"Modtage og bruge automatisk sendte enhedskarakteristika til identifikation.","description":"Din enhed kan skelnes fra andre enheder baseret p\u00e5 oplysninger, som den automatisk sender, s\u00e5som IP-adresse eller browsertype.","descriptionLegal":"Leverand\u00f8rer kan:\n* Oprette en identifikator ved hj\u00e6lp af oplysninger, der indsamles automatisk fra en enhed, for specifikke karakteristika f.eks. IP-adresse og brugeragent-streng.\n* Bruge en s\u00e5dan identifikator til at fors\u00f8ge at genidentificere en enhed.\nLeverand\u00f8rer kan ikke:\n* Oprette en identifikator ved hj\u00e6lp af oplysninger, der indsamles via aktiv scanning af en enhed, for specifikke karakteristika, f.eks. installerede skrifttyper eller sk\u00e6rmopl\u00f8sning, uden brugernes tilvalg af aktiv scanning af enhedskarakteristika til identifikation.\n* Bruge en s\u00e5dan identifikator til at genidentificere en enhed.\n"}},"specialFeatures":{"1":{"id":1,"name":"Bruge pr\u00e6cise geoplaceringsoplysninger","description":"Dine pr\u00e6cise geoplaceringsoplysninger kan bruges til underst\u00f8ttelse af et eller flere form\u00e5l. Det betyder, at din placering kan v\u00e6re n\u00f8jagtig til inden for f\u00e5 meter.","descriptionLegal":"Leverand\u00f8rer kan:\n* Indsamle og behandle pr\u00e6cise geoplaceringsoplysninger til underst\u00f8ttelse af et eller flere form\u00e5l.\nNB. Pr\u00e6cis geoplacering betyder, at der ikke er nogen begr\u00e6nsninger p\u00e5 n\u00f8jagtigheden af en brugers placering. Denne kan v\u00e6re n\u00f8jagtig til inden for flere meter.\n"},"2":{"id":2,"name":"Aktivt scanne enhedskarakteristika til identifikation","description":"Din enhed kan identificeres baseret p\u00e5 en scanning af din enheds unikke kombination af karakteristika.","descriptionLegal":"Leverand\u00f8rer kan:\n* Oprette en identifikator ved hj\u00e6lp af oplysninger, der indsamles via aktiv scanning af en enhed for specifikke karakteristika f.eks. installerede skrifttyper eller sk\u00e6rmopl\u00f8sning. \n* Bruge en s\u00e5dan identifikator til at genidentificere en enhed.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Pr\u00e6cise geoplaceringsoplysninger og identifikation gennem enhedsscanning","description":"Pr\u00e6cis geoplacering og oplysninger om enhedskarakteristika kan anvendes."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Basisannoncer og annoncem\u00e5ling","description":"Basisannoncer kan pr\u00e6senteres. Annonceeffektivitet kan m\u00e5les."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Tilpassede annoncer","description":"Annoncer kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af annoncer."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Basisannoncer og annoncem\u00e5ling","description":"Basisannoncer kan pr\u00e6senteres. Annonceeffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Basisannoncer, tilpasset annonceprofil og annoncem\u00e5ling","description":"Basisannoncer kan pr\u00e6senteres. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af annoncer. Annonceeffektivitet kan m\u00e5les."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Visning af tilpassede annoncer og annoncem\u00e5ling","description":"Annoncer kan tilpasses baseret p\u00e5 en profil. Annonceeffektivitet kan m\u00e5les."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Visning af tilpassede annoncer, annoncem\u00e5ling og m\u00e5lgruppeindsigter","description":"Annoncer kan tilpasses baseret p\u00e5 en profil. Annonceeffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Tilpassede annoncer og annoncem\u00e5ling","description":"Annoncer kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af annoncer. Annonceeffektivitet kan m\u00e5les."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Tilpassede annoncer, annoncem\u00e5ling og m\u00e5lgruppeindsigter","description":"Annoncer kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af annoncer. Annonceeffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Tilpasset annonceprofil og visning","description":"Annoncer kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af annoncer."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Tilpasset indhold","description":"Indhold kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af indhold."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Visning af tilpasset indhold og indholdsm\u00e5ling","description":"Indhold kan tilpasses baseret p\u00e5 en profil. Indholdseffektivitet kan m\u00e5les."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Visning af tilpasset indhold, indholdsm\u00e5ling og m\u00e5lgruppeindsigter","description":"Indhold kan tilpasses baseret p\u00e5 en profil. Indholdseffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Tilpasset indhold og indholdsm\u00e5ling","description":"Indhold kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af indhold. Indholdseffektivitet kan m\u00e5les."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Tilpasset indhold, indholdsm\u00e5ling og m\u00e5lgruppeindsigter","description":"Indhold kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af indhold. Indholdseffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Tilpasset indhold, indholdsm\u00e5ling, m\u00e5lgruppeindsigter og produktudvikling","description":"Indhold kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af indhold. Indholdseffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes. Oplysninger kan bruges til at opbygge eller forbedre brugeroplevelse, systemer og software"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Annonce- og indholdsm\u00e5ling og m\u00e5lgruppeindsigter","description":"Annonce- og indholdseffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Annonce- og indholdsm\u00e5ling","description":"Annonce- og indholdseffektivitet kan m\u00e5les."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Annoncem\u00e5ling og m\u00e5lgruppeindsigter","description":"Annonce kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Annonce- og indholdsm\u00e5ling, m\u00e5lgruppeindsigter og produktudvikling","description":"Annonce- og indholdseffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes. Oplysninger kan bruges til at udvikle eller forbedre brugeroplevelse, systemer og software. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Indholdsm\u00e5ling, m\u00e5lgruppeindsigter og produktudvikling","description":"Indholdseffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes. Oplysninger kan bruges til at udvikle eller forbedre brugeroplevelse, systemer og software."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Indholdsm\u00e5ling og produktudvikling","description":"Indholdseffektivitet kan m\u00e5les. Oplysninger kan bruges til at udvikle eller forbedre brugeroplevelse, systemer og software."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Visning af tilpassede annoncer og indhold, annonce- og indholdsm\u00e5ling","description":"Annoncer og indhold kan tilpasses baseret p\u00e5 en profil. Annonce- og indholdseffektivitet kan m\u00e5les."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Visning af tilpassede annoncer og indhold, annonce- og indholdsm\u00e5ling og m\u00e5lgruppeindsigter","description":"Annoncer og indhold kan tilpasses baseret p\u00e5 en profil. Annonce- og indholdseffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes. Oplysninger kan bruges til at udvikle eller forbedre brugeroplevelse, systemer og software."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Tilpassede annoncer og indhold, annonce- og indholdsm\u00e5ling","description":"Annoncer og indhold kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af annoncer og indhold. Annonce- og indholdseffektivitet kan m\u00e5les."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Tilpassede annoncer og indhold, annonce- og indholdsm\u00e5ling og m\u00e5lgruppeindsigter","description":"Annoncer og indhold kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af annoncer og indhold. Annonce- og indholdseffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Tilpassede annoncer og indholdsprofil","description":"Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af annoncer og indhold."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Visning af tilpassede annoncer og indhold","description":"Annoncer og indhold kan tilpasses baseret p\u00e5 en profil."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Basisannoncer, annonce- og indholdsm\u00e5ling og m\u00e5lgruppeindsigter","description":"Basisannoncer kan pr\u00e6senteres. Annonce- og indholdseffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Visning af tilpassede annoncer, tilpasset indhold, annonce- og indholdsm\u00e5ling og m\u00e5lgruppeindsigter","description":"Annoncer og indhold kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af indhold. Annonce- og indholdseffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Visning af tilpassede annoncer, tilpasset indhold, annonce- og indholdsm\u00e5ling, m\u00e5lgruppeindsigter og produktudvikling","description":"Annoncer og indhold kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af indhold. Annonce- og indholdseffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes. Oplysninger kan bruges til at udvikle eller forbedre brugeroplevelse, systemer og software."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Basisannoncer, tilpasset indhold, annonce- og indholdsm\u00e5ling og m\u00e5lgruppeindsigter","description":"Basisannoncer kan pr\u00e6senteres. Indhold kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af indhold. Annonce- og indholdseffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Basisannoncer, tilpasset indhold, annonce- og indholdsm\u00e5ling, m\u00e5lgruppeindsigter og produktudvikling","description":"Basisannoncer kan pr\u00e6senteres. Indhold kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af indhold. Annonce- og indholdseffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes. Oplysninger kan bruges til at udvikle eller forbedre brugeroplevelse, systemer og software."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Basisannoncer, tilpasset indhold, indholdsm\u00e5ling og m\u00e5lgruppeindsigter","description":"Basisannoncer kan pr\u00e6senteres. Indhold kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af indhold. Annonce- og indholdseffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Basisannoncer, tilpasset indhold, indholdsm\u00e5ling, m\u00e5lgruppeindsigter og produktudvikling","description":"Basisannoncer kan pr\u00e6senteres. Indhold kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af indhold. Indholdseffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes. Oplysninger kan bruges til at udvikle eller forbedre brugeroplevelse, systemer og software."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Basisannoncer, tilpasset indhold og annoncem\u00e5ling","description":"Basisannoncer kan pr\u00e6senteres. Indhold kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af indhold. Annonceeffektivitet kan m\u00e5les."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Basisannoncer, tilpasset indhold, annoncem\u00e5ling og produktudvikling","description":"Basisannoncer kan pr\u00e6senteres. Indhold kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af indhold. Annonceeffektivitet kan m\u00e5les. Oplysninger kan bruges til at udvikle eller forbedre brugeroplevelse, systemer og software."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Tilpassede annoncer, annoncem\u00e5ling og produktudvikling","description":"Annoncer kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af annoncer. Annonceeffektivitet kan m\u00e5les. Oplysninger kan bruges til at udvikle eller forbedre brugeroplevelse, systemer og software."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Tilpassede annoncer, annoncem\u00e5ling, m\u00e5lgruppeindsigter og produktudvikling","description":"Annoncer kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af annoncer. Annonceeffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupperne, der s\u00e5 annoncerne og indholdet, kan udledes. Data kan bruges til at udvikle eller forbedre brugeroplevelse, systemer og software."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Tilpassede annoncer, annonce- og indholdsm\u00e5ling, m\u00e5lgruppeindsigter og produktudvikling","description":"Annoncer kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af annoncer. Annonce- og indholdseffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupper, der s\u00e5 annoncerne og indholdet, kan udledes. Data kan bruges til at udvikle eller forbedre brugeroplevelse, systemer og software."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Tilpassede annoncer, tilpasset indhold, annonce- og indholdsm\u00e5ling, m\u00e5lgruppeindsigter og produktudvikling","description":"Annoncer og indhold kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af annoncer. Annonce- og indholdseffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupper, der s\u00e5 annoncerne og indholdet, kan udledes. Data kan bruges til at udvikle eller forbedre brugeroplevelse, systemer og software."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Tilpassede annoncer og tilpasset indhold, annonce- og indholdsm\u00e5ling, m\u00e5lgruppeindsigter og produktudvikling","description":"Annoncer og indhold kan tilpasses baseret p\u00e5 en profil. Flere oplysninger kan tilf\u00f8jes til bedre tilpasning af annoncer og indhold. Annonce- og indholdseffektivitet kan m\u00e5les. Indsigter om m\u00e5lgrupper, der s\u00e5 annoncerne og indholdet, kan udledes. Data kan bruges til at udvikle eller forbedre brugeroplevelse, systemer og software."}}} \ No newline at end of file diff --git a/src/s1/config/2.0/purposes/purposes-de.json b/src/s1/config/2.0/purposes/purposes-de.json index e2524008..a8474aba 100644 --- a/src/s1/config/2.0/purposes/purposes-de.json +++ b/src/s1/config/2.0/purposes/purposes-de.json @@ -1 +1 @@ -{"vendorListVersion":79,"lastUpdated":"2021-02-25T16:36:15Z","purposes":{"1":{"id":1,"name":"Informationen auf einem Ger\u00e4t speichern und/oder abrufen","description":"F\u00fcr die Ihnen angezeigten Verarbeitungszwecke k\u00f6nnen Cookies, Ger\u00e4te-Kennungen oder andere Informationen auf Ihrem Ger\u00e4t gespeichert oder abgerufen werden.","descriptionLegal":"Anbieter k\u00f6nnen:\n* Informationen wie z. B. Cookies und Ger\u00e4te-Kennungen zu den dem Nutzer angezeigten Verarbeitungszwecken auf dem Ger\u00e4t speichern und abrufen.\n"},"2":{"id":2,"name":"Auswahl einfacher Anzeigen","description":"Anzeigen k\u00f6nnen Ihnen basierend auf den Inhalten, die Sie ansehen, der Anwendung, die Sie verwenden und Ihrem ungef\u00e4hren Standort oder Ihrem Ger\u00e4tetyp eingeblendet werden.","descriptionLegal":"F\u00fcr die Auswahl einfacher Anzeigen k\u00f6nnen Anbieter:\n* Echtzeit-Informationen \u00fcber den Kontext, in dem die Anzeige dargestellt wird, verwenden, einschlie\u00dflich Informationen \u00fcber das inhaltliche Umfeld sowie das verwendete Ger\u00e4t, wie z. B. Ger\u00e4tetyp und -funktionen, Browser-Kennung, URL, IP-Adresse; \n* die ungef\u00e4hren Standortdaten eines Nutzers verwenden;\n* die H\u00e4ufigkeit der Anzeige-Einblendungen steuern\n* die Reihenfolge der Anzeige-Einblendungen steuern;\n* verhindern, dass eine Anzeige in einem ungeeigneten redaktionellen Umfeld (brand-unsafe) eingeblendet wird.\nAnbieter d\u00fcrfen nicht:\n* Mit diesen Informationen ein personalisiertes Anzeigen-Profil f\u00fcr die Auswahl zuk\u00fcnftiger Anzeigen erstellen, ohne eine eigene Rechtsgrundlage f\u00fcr die Erstellung eines personalisierten Anzeigenprofils zu haben.\nAnmerkung: ungef\u00e4hr bedeutet, dass nur eine grobe Standortbestimmung mit einem Radius von mindestens 500 Metern erlaubt ist."},"3":{"id":3,"name":"Ein personalisiertes Anzeigen-Profil erstellen","description":"\u00dcber Sie und Ihre Interessen kann ein Profil erstellt werden, um Ihnen f\u00fcr Sie relevante personalisierte Anzeigen einzublenden.","descriptionLegal":"Um ein personalisiertes Anzeigen-Profil zu erstellen, k\u00f6nnen Anbieter:\n* Informationen \u00fcber einen Nutzer sammeln, einschlie\u00dflich dessen Aktivit\u00e4ten, Interessen, den Besuchen auf Webseiten oder der Verwendung von Anwendungen, demographischen Informationen oder Standorts, um ein Nutzer-Profil f\u00fcr die Personalisierung von Anzeigen zu erstellen oder zu bearbeiten.\n* Diese Informationen mit anderen zuvor gesammelten Informationen, einschlie\u00dflich von Websites und Apps, kombinieren, um ein Benutzerprofil f\u00fcr die Verwendung in personalisierter Werbung zu erstellen oder zu bearbeiten."},"4":{"id":4,"name":"Personalisierte Anzeigen ausw\u00e4hlen","description":"Personalisierte Anzeigen k\u00f6nnen Ihnen basierend auf einem \u00fcber Sie erstellten Profil eingeblendet werden.","descriptionLegal":"F\u00fcr die Auswahl personalisierter Anzeigen k\u00f6nnen Anbieter:\n* Personalisierte Anzeigen, basierend auf einem Nutzer-Profil oder anderen historischen Nutzungsdaten, einschlie\u00dflich der fr\u00fcheren Aktivit\u00e4ten, der Interessen, den Besuchen auf Webseiten oder der Verwendung von Anwendungen, des Standorts oder demografischen Informationen, ausw\u00e4hlen."},"5":{"id":5,"name":"Ein personalisiertes Inhalts-Profil erstellen","description":"\u00dcber Sie und Ihre Interessen kann ein Profil erstellt werden, um Ihnen f\u00fcr Sie relevante personalisierte Inhalte anzuzeigen.","descriptionLegal":"Um ein personalisiertes Inhalts-Profil zu erstellen, k\u00f6nnen Anbieter:\n* Informationen \u00fcber einen Nutzer sammeln, einschlie\u00dflich dessen Aktivit\u00e4ten, Interessen, Besuchen auf Webseiten oder der Verwendung von Anwendungen, demographischen \n* Informationen oder Standorts, um ein Nutzer-Profil f\u00fcr die Personalisierung von Inhalten zu erstellen oder zu bearbeiten."},"6":{"id":6,"name":"Personalisierte Inhalte ausw\u00e4hlen","description":"Personalisierte Inhalte k\u00f6nnen Ihnen basierend auf einem \u00fcber Sie erstellten Profil angezeigt werden.","descriptionLegal":"Um personalisierte Inhalte auszuw\u00e4hlen, k\u00f6nnen Anbieter:\n* Personalisierte Inhalte, basierend auf einem Nutzer-Profil oder anderen historischen Nutzungsdaten, einschlie\u00dflich der fr\u00fcheren Aktivit\u00e4ten, der Interessen, den Besuchen auf Webseiten oder der Verwendung von Anwendungen, des Standorts oder demografischen Informationen, ausw\u00e4hlen.\n"},"7":{"id":7,"name":"Anzeigen-Leistung messen","description":"Die Leistung und Wirksamkeit von Anzeigen, die Sie sehen oder mit denen Sie interagieren, kann gemessen werden.","descriptionLegal":"Um die Anzeigen-Leistung zu messen, k\u00f6nnen Anbieter:\n* messen, ob und wie Anzeigen bei einem Nutzer eingeblendet wurden und wie dieser mit ihnen interagiert hat;\n* Berichte \u00fcber Anzeigen, einschlie\u00dflich ihrer Wirksamkeit und Leistung, bereitstellen;\n* Berichte \u00fcber die Interaktion von Nutzern mit Anzeigen bereitstellen, und zwar anhand von Daten, die im Laufe der Interaktion des Nutzers mit dieser Anzeige gemessen wurden;\n* Berichte f\u00fcr Diensteanbieter \u00fcber die Anzeigen, die auf ihren Diensten eingeblendet werden, bereitstellen;\n* messen, ob eine Anzeige in einem ungeeigneten redaktionellen Umfeld (brand-unsafe) eingeblendet wird;\n* den Prozentsatz bestimmen, zu welchem die Anzeige h\u00e4tte wahrgenommen werden k\u00f6nnen, einschlie\u00dflich der Dauer (Werbewahrnehmungschance). \nAnbieter d\u00fcrfen nicht:\n* \u00dcber Befragungspanels oder \u00e4hnliche Verfahren erhobene Daten \u00fcber Zielgruppen zusammen mit Anzeigen-Messungsdaten verwenden, ohne daf\u00fcr eine eigene Rechtsgrundlage f\u00fcr den Einsatz von Marktforschung zur Gewinnung von Erkenntnissen \u00fcber Zielgruppen zu haben.\n"},"8":{"id":8,"name":"Inhalte-Leistung messen","description":"Die Leistung und Wirksamkeit von Inhalten, die Sie sehen oder mit denen Sie interagieren, kann gemessen werden.","descriptionLegal":"Um die Leistung von Inhalten zu messen, k\u00f6nnen Anbieter:\n* messen und dar\u00fcber berichten, wie Inhalte an Nutzer ausgeliefert wurden und wie diese mit ihnen interagiert haben;\n* Berichte \u00fcber direkt messbare oder bereits bekannte Informationen von Nutzern, die mit den Inhalten interagiert haben, bereitstellen.\nAnbieter k\u00f6nnen nicht:\n* messen, ob und wie Anzeigen (einschlie\u00dflich nativer Anzeigen) an einen Benutzer ausgeliefert wurden und wie dieser mit ihnen interagiert hat;\n* \u00dcber Befragungspanels oder \u00e4hnliche Verfahren erhobene Daten \u00fcber Zielgruppen zusammen mit Inhalts-Messungsdaten verwenden, ohne daf\u00fcr eine eigene Rechtsgrundlage f\u00fcr den Einsatz von Marktforschung zur Gewinnung von Erkenntnissen \u00fcber Zielgruppen zu haben.\n"},"9":{"id":9,"name":"Marktforschung einsetzen, um Erkenntnisse \u00fcber Zielgruppen zu gewinnen","description":"Marktforschung kann verwendet werden, um mehr \u00fcber die Zielgruppen zu erfahren, die Dienste oder Anwendungen verwenden und sich Anzeigen ansehen.","descriptionLegal":"Beim Einsatz von Marktforschung zur Gewinnung von Erkenntnissen \u00fcber Zielgruppen k\u00f6nnen Anbieter:\n* aggregierte Berichte f\u00fcr Werbetreibende oder deren Repr\u00e4sentanten \u00fcber die Zielgruppen, die durch ihre Anzeigen erreicht werden, und welche auf der Grundlage von Befragungspanels oder \u00e4hnlichen Verfahren gewonnen wurden, bereitstellen;\n* aggregierte Berichte f\u00fcr Diensteanbieter \u00fcber die Zielgruppen, die durch die Inhalte und/oder Anzeigen auf ihren Diensten erreicht wurden bzw. mit diesen interagiert haben, und welche \u00fcber Befragungspanels oder \u00e4hnliche Verfahren ermittelt wurden, bereitstellen;\n* f\u00fcr Zwecke der Marktforschung Offline-Daten zu einem Online-Benutzer zuordnen, um Erkenntnisse \u00fcber Zielgruppen zu gewinnen, soweit Anbieter erkl\u00e4rt haben, Offline-Datenquellen abzugleichen und zusammenzuf\u00fchren (Weitere Verarbeitungsm\u00f6glichkeit 1).\n\n\nAnbieter k\u00f6nnen nicht: \n* die Leistung und Wirksamkeit von Anzeigen, die einem bestimmten Nutzer eingeblendet wurden oder mit denen dieser interagiert hat, messen, ohne eine eigene Rechtsgrundlage f\u00fcr die Messung der Anzeigen-Leistung zu haben;\n* messen, welche Inhalte f\u00fcr einen bestimmten Nutzer geliefert wurden und wie dieser mit ihnen interagiert hat, ohne eine eigene Rechtsgrundlage f\u00fcr die Messung der Inhalte-Leistung zu haben\n"},"10":{"id":10,"name":"Produkte entwickeln und verbessern","description":"Ihre Daten k\u00f6nnen verwendet werden, um bestehende Systeme und Software zu verbessern und neue Produkte zu entwickeln.","descriptionLegal":"Um Produkte zu entwickeln und zu verbessern, k\u00f6nnen Anbieter:\n* Informationen verwenden, um ihre bestehenden Produkte durch neue Funktionen zu verbessern und neue Produkte zu entwickeln;\n* neue Rechenmodelle und Algorithmen mit Hilfe maschinellen Lernens erstellen.\nAnbieter k\u00f6nnen nicht:\n* Datenverarbeitungen durchf\u00fchren, die in einem der anderen Verarbeitungszwecke definiert sind.\n"}},"specialPurposes":{"1":{"id":1,"name":"Sicherheit gew\u00e4hrleisten, Betrug verhindern und Fehler beheben","description":"Ihre Daten k\u00f6nnen verwendet werden, um betr\u00fcgerische Aktivit\u00e4ten zu identifizieren und zu verhindern, und um sicherzustellen, dass Systeme und Prozesse ordnungsgem\u00e4\u00df und sicher funktionieren.","descriptionLegal":"Zur Gew\u00e4hrleistung von Sicherheit, Verhinderung von Betrug und Behebung von Fehlern k\u00f6nnen Anbieter:\n* sicherstellen, dass Daten sicher \u00fcbermittelt werden; \n* sch\u00e4dliche, betr\u00fcgerische, ung\u00fcltige oder illegale Aktivit\u00e4ten ausfindig machen und verhindern;\n* den korrekten und effizienten Betrieb von Systemen und Prozessen - einschlie\u00dflich der \u00dcberwachung und Verbesserung der Leistung von Systemen und Prozessen - im Rahmen der erlaubten Verarbeitungszwecke sicherstellen.\nAnbieter k\u00f6nnen nicht:\n* Datenverarbeitungen durchf\u00fchren, die in einem der anderen Verarbeitungszwecke definiert sind.\nHinweis: Daten, die gesammelt und verwendet werden, um die Sicherheit zu gew\u00e4hrleisten, Betrug zu verhindern und Fehler zu beseitigen.\nk\u00f6nnen automatisch gesendete Ger\u00e4teeigenschaften zur Identifizierung beinhalten, pr\u00e4zise Geolokalisierungsdaten und Daten, die durch aktive Abtastung der Vorrichtung erhalten werden. Merkmale zur Identifizierung ohne gesonderte Offenlegung und/oder Opt-in.\n"},"2":{"id":2,"name":"Anzeigen oder Inhalte technisch bereitstellen","description":"Ihr Ger\u00e4t kann Informationen empfangen und senden die notwendig sind, damit Sie Inhalte und Anzeigen sehen und nutzen k\u00f6nnen.","descriptionLegal":"Zur Bereitstellung von Informationsdaten und um auf technische Anfragen zu reagieren k\u00f6nnen Anbieter:\n* die IP-Adresse eines Benutzers verwenden, um \u00fcber das Internet eine Anzeige einzublenden;\n* auf die Interaktion eines Benutzers mit einer Anzeige reagieren, indem sie den Benutzer zu einer Zielseite weiterleiten;\n* die IP-Adresse eines Benutzers verwenden, um Inhalte \u00fcber das Internet bereitzustellen;\n* auf die Interaktion eines Benutzers mit Inhalten reagieren, indem sie den Benutzer zu einer Zielseite weiterleiten;\n* Informationen zum Ger\u00e4tetyp und seinen M\u00f6glichkeiten zur Darstellung von Anzeigen oder Inhalten verwenden, z. B. um Werbemittel oder Videodateien in der richtigen Gr\u00f6\u00dfe und in einem vom Ger\u00e4t unterst\u00fctzten Format bereitzustellen.\n\nAnbieter k\u00f6nnen nicht:\n* Datenverarbeitungen durchf\u00fchren, die in einem der anderen Verarbeitungszwecke definiert sind.\n"}},"features":{"1":{"id":1,"name":"Mit Offline-Datenquellen zusammenf\u00fchren","description":"* Daten aus Offline-Datenquellen k\u00f6nnen mit Daten aus Ihren Online-Aktivit\u00e4ten zusammengef\u00fchrt werden, um sie f\u00fcr einen oder mehrere Verarbeitungszwecke bzw. besondere Verarbeitungszwecke nutzen zu k\u00f6nnen.\n* Daten aus Ihren Online-Aktivit\u00e4ten k\u00f6nnen mit Offline-Daten zusammengef\u00fchrt werden, um sie f\u00fcr einen oder mehrere Verarbeitungszwecke oder besondere Verarbeitungszwecke erg\u00e4nzend zu nutzen.","descriptionLegal":"Anbieter k\u00f6nnen: \n\n* Daten, die offline erhoben wurden, mit Daten, die online erhoben wurden, zusammenf\u00fchren, um sie f\u00fcr einen oder mehrere Verarbeitungszwecke oder besondere Verarbeitungszwecke erg\u00e4nzend zu nutzen."},"2":{"id":2,"name":"Verschiedene Ger\u00e4te verkn\u00fcpfen","description":"Zur Nutzung f\u00fcr einen oder mehrere Verarbeitungszwecke kann ermittelt werden, ob unterschiedliche Ger\u00e4te zu Ihnen oder Ihrem Haushalt geh\u00f6ren.","descriptionLegal":"Anbieter k\u00f6nnen:\n* deterministisch ermitteln, dass zwei oder mehr Ger\u00e4te zum gleichen Benutzer oder Haushalt geh\u00f6ren;\n* probabilistisch ermitteln, dass zwei oder mehr Ger\u00e4te zum gleichen Benutzer oder Haushalt geh\u00f6ren;\n* Ger\u00e4teeigenschaften zur probabilistischen Identifikation aktiv abfragen, wenn Nutzer Anbietern die aktive Abfrage von Ger\u00e4teeigenschaften erlaubt haben. (Besondere Verarbeitungsm\u00f6glichkeit 2).\n"},"3":{"id":3,"name":"Empfangen und Verwenden automatisch gesendeter Ger\u00e4teeigenschaften f\u00fcr die Identifikation","description":"Ihr Ger\u00e4t kann aufgrund von Informationen, die es automatisch sendet wie z.B. IP-Adresse oder Browsertyp von anderen Ger\u00e4ten unterschieden werden.","descriptionLegal":"Anbieter k\u00f6nnen:\n* eine Kennung unter Verwendung automatisch \u00fcbertragener Ger\u00e4teeigenschaften wie z.B. IP-Adresse oder Browser-Kennung.\n* Eine solche Kennung benutzen, um zu versuchen, ein Ger\u00e4t wiederzuerkennen\nAnbieter d\u00fcrfen nicht:\n* aus Daten, die aus der aktiven Abfrage bestimmter Eigenschaften eines Ger\u00e4ts - z. B. der installierten Schriftarten oder der Bildschirmaufl\u00f6sung - gewonnen wurden, eine Kennung erstellen;\n* eine solche Kennung verwenden, um ein Ger\u00e4t erneut zu identifizieren.\n"}},"specialFeatures":{"1":{"id":1,"name":"Genaue Standortdaten verwenden","description":"Ihre genauen Standortdaten k\u00f6nnen f\u00fcr einen oder mehrere Verarbeitungszwecke genutzt werden. Das bedeutet, dass Ihr Standort bis auf wenige Meter pr\u00e4zise bestimmt werden kann","descriptionLegal":"Anbieter k\u00f6nnen:\n* genaue Standortdaten verarbeiten, um sie f\u00fcr einen oder mehrere Verarbeitungszwecke zu nutzen.\nAnmerkung: \u201cGenaue Standortdaten\u201d bedeutet, dass es hinsichtlich der Genauigkeit des Standortes keine Einschr\u00e4nkungen gibt; diese kann bis auf wenige Meter genau sein.\n"},"2":{"id":2,"name":"Ger\u00e4teeigenschaften zur Identifikation aktiv abfragen","description":"Ihr Ger\u00e4t kann \u00fcber eine Abfrage seiner spezifischen Merkmale erkannt werden.","descriptionLegal":"Anbieter k\u00f6nnen:\n* aus Daten, die aus der aktiven Abfrage bestimmter Eigenschaften eines Ger\u00e4ts - z. B. der installierten Schriftarten oder der Bildschirmaufl\u00f6sung - gewonnen wurden, eine Kennung erstellen;\n* eine solche Kennung verwenden, um ein Ger\u00e4t erneut zu identifizieren.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Genaue Standortdaten und Abfrage von Ger\u00e4teeigenschaften zur Identifikation","description":"Es k\u00f6nnen genaue Standortdaten und Informationen \u00fcber Ger\u00e4temerkmale verwendet werden."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Einfache Anzeigen und Anzeigenmessung","description":"Einfache Anzeigen k\u00f6nnen eingeblendet werden. Die Anzeigen-Leistung kann gemessen werden."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Personalisierte Anzeigen","description":"Anzeigen k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen Daten hinzugef\u00fcgt werden, um Anzeigen besser zu personalisieren."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Basisanzeigen und Anzeigenmessung","description":"Es k\u00f6nnen Basisanzeigen geschaltet werden. Die Anzeigen-Performance kann gemessen werden. Erkenntnisse \u00fcber die Zielgruppen, die die Anzeigen und Inhalte betrachtet haben, k\u00f6nnen abgeleitet werden."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Einfache Anzeigen, personalisiertes Anzeigenprofil und Anzeigenmessung","description":"Einfache Anzeigen k\u00f6nnen eingeblendet werden. Es k\u00f6nnen Daten hinzugef\u00fcgt werden, um Anzeigen besser zu personalisieren. Die Anzeigen-Leistung kann gemessen werden."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Einblendung personalisierter Anzeigen und Anzeigenmessung","description":"Anzeigen k\u00f6nnen basierend auf einem Profil personalisiert werden. Die Anzeigen-Leistung kann gemessen werden."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Einblendung personalisierter Anzeigen, Anzeigenmessung und Erkenntnisse \u00fcber Zielgruppen","description":"Anzeigen k\u00f6nnen basierend auf einem Profil personalisiert werden. Die Anzeigen-Leistung kann gemessen werden. Erkenntnisse \u00fcber Zielgruppen, die die Anzeigen und Inhalte gesehen haben, k\u00f6nnen abgeleitet werden."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Personalisierte Anzeigen und Anzeigenmessung","description":"Anzeigen k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen mehr Daten hinzugef\u00fcgt werden, um Anzeigen besser zu personalisieren. Die Anzeigen-Leistung kann gemessen werden."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Personalisierte Anzeigen, Anzeigenmessung und Erkenntnisse \u00fcber Zielgruppen","description":"Anzeigen k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen mehr Daten hinzugef\u00fcgt werden, um Anzeigen besser zu personalisieren. Die Anzeigen-Leistung kann gemessen werden. Erkenntnisse \u00fcber Zielgruppen, die die Anzeigen und Inhalte gesehen haben, k\u00f6nnen abgeleitet werden."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Personalisiertes Anzeigenprofil und Einblendung","description":"Anzeigen k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen Daten hinzugef\u00fcgt werden, um Anzeigen besser zu personalisieren."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Personalisierte Inhalte","description":"Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen Daten hinzugef\u00fcgt werden, um Inhalte besser zu personalisieren."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Anzeige personalisierter Inhalte und Inhaltemessung","description":"Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Die Leistung von Inhalten kann gemessen werden."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Anzeige personalisierter Inhalte, Inhaltemessung und Erkenntnisse \u00fcber Zielgruppen","description":"Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Die Leistung von Inhalten kann gemessen werden. Erkenntnisse \u00fcber Zielgruppen, die die Anzeigen und Inhalte gesehen haben, k\u00f6nnen abgeleitet werden."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Personalisierte Inhalte und Inhaltemessung","description":"Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen Daten hinzugef\u00fcgt werden, um Inhalte besser zu personalisieren. Die Leistung von Inhalten kann gemessen werden."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Personalisierte Inhalte, Inhaltemessung und Erkenntnisse \u00fcber Zielgruppen","description":"Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen Daten hinzugef\u00fcgt werden, um Inhalte besser zu personalisieren. Die Leistung von Inhalten kann gemessen werden. Erkenntnisse \u00fcber die Zielgruppen, die die Anzeigen und Inhalte betrachtet haben, k\u00f6nnen abgeleitet werden."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Personalisierte Inhalte, Inhaltemessung, Erkenntnisse \u00fcber Zielgruppen und Produktentwicklung","description":"Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen Daten hinzugef\u00fcgt werden, um Inhalte besser zu personalisieren. Die Leistung von Inhalten kann gemessen werden. Erkenntnisse \u00fcber Zielgruppen, die die Anzeigen und Inhalte gesehen haben, k\u00f6nnen abgeleitet werden. Daten k\u00f6nnen verwendet werden, um die Benutzerfreundlichkeit zu verbessern und Systeme und Software zu entwickeln."},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Anzeigenmessung, Inhaltemessung und Erkenntnisse \u00fcber Zielgruppen","description":"Die Leistung von Anzeigen und Inhalten kann gemessen werden. Erkenntnisse \u00fcber die Zielgruppen, die die Anzeigen und Inhalte gesehen haben, k\u00f6nnen abgeleitet werden."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Anzeigenmessung und Inhaltemessung","description":"Die Leistung von Anzeigen und Inhalten kann gemessen werden."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Anzeigenmessung und Erkenntnisse \u00fcber Zielgruppen","description":"Die Anzeige kann gemessen werden. Erkenntnisse \u00fcber die Zielgruppen, die die Anzeigen und Inhalte gesehen haben, k\u00f6nnen abgeleitet werden."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Anzeigenmessung, Inhaltemessung, Erkenntnisse \u00fcber Zielgruppen und Produktentwicklung","description":"Die Leistung von Anzeigen und Inhalten kann gemessen werden. Erkenntnisse \u00fcber die Zielgruppen, die die Anzeigen und Inhalte gesehen haben, k\u00f6nnen abgeleitet werden. Erkenntnisse \u00fcber die Zielgruppen, die die Anzeigen und Inhalte betrachtet haben, k\u00f6nnen abgeleitet werden. Daten k\u00f6nnen verwendet werden, um die Benutzerfreundlichkeit zu verbessern und Systeme und Software zu entwickeln."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Inhaltemessung, Erkenntnisse \u00fcber Zielgruppen und Produktentwicklung","description":"Die Leistung von Inhalten kann gemessen werden. Erkenntnisse \u00fcber die Zielgruppen, die die Anzeigen und Inhalte gesehen haben, k\u00f6nnen abgeleitet werden. Daten k\u00f6nnen verwendet werden, um die Benutzerfreundlichkeit zu verbessern und Systeme und Software zu entwickeln."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Inhaltemessung und Produktentwicklung","description":"Die Leistung von Inhalten kann gemessen werden. Daten k\u00f6nnen verwendet werden, um die Benutzerfreundlichkeit zu verbessern und Systeme und Software zu entwickeln."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Einblendung und Anzeige personalisierter Anzeigen und Inhalte, Anzeigenmessung und Inhaltemessung","description":"Anzeigen und Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Die Leistung von Anzeigen und Inhalten kann gemessen werden."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Anzeige von personalisierten Anzeigen und Inhalten, Anzeigenmessung und Inhalten und Erkenntnisse \u00fcber Zielgruppen","description":"Anzeigen und Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Die Leistung von Anzeigen und Inhalten kann gemessen werden. Erkenntnisse \u00fcber die Zielgruppen, die die Anzeigen und Inhalte gesehen haben, k\u00f6nnen abgeleitet werden."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Personalisierte Anzeigen und Inhalte, Anzeigenmessung und Inhaltemessung","description":"Anzeigen und Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen Daten hinzugef\u00fcgt werden, um Anzeigen und Inhalte besser zu personalisieren. Die Leistung von Anzeigen und Inhalten kann gemessen werden."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Personalisierte Anzeigen und Inhalte, Anzeigen- und Inhaltemessung und Erkenntnisse \u00fcber Zielgruppen\n\n","description":"Anzeigen und Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen Daten hinzugef\u00fcgt werden, um Anzeigen und Inhalte besser zu personalisieren. Die Leistung von Anzeigen und Inhalten kann gemessen werden. Erkenntnisse \u00fcber die Zielgruppen, die die Anzeigen und Inhalte gesehen haben, k\u00f6nnen abgeleitet werden."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Personalisierte Anzeigen und Inhaltsprofil","description":"Es k\u00f6nnen Daten hinzugef\u00fcgt werden, um Anzeigen und Inhalte zu personalisieren."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Einblendung und Anzeige von personalisierten Anzeigen und Inhalten","description":"Anzeigen und Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden"},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Einfache Anzeigen, Anzeigenmessung, Inhaltemessung und Erkenntnisse \u00fcber Zielgruppen","description":"Einfache Anzeigen k\u00f6nnen eingeblendet werden. Die Leistung von Anzeigen und Inhalten kann gemessen werden. Erkenntnisse \u00fcber die Zielgruppen, die die Anzeigen und Inhalte gesehen haben, k\u00f6nnen abgeleitet werden."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Einblendung personalisierter Anzeigen, personalisierte Inhalte, Anzeigenmessung, Inhaltemessung und Erkenntnisse \u00fcber Zielgruppen","description":"Anzeigen und Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen Daten hinzugef\u00fcgt werden, um Inhalte besser zu personalisieren. Die Leistung von Anzeigen und Inhalten kann gemessen werden. Erkenntnisse \u00fcber die Zielgruppen, die die Anzeigen und Inhalte gesehen haben, k\u00f6nnen abgeleitet werden."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Einfache Anzeigen, personalisierte Inhalte, Anzeigenmessung, Inhaltemessung und Erkenntnisse \u00fcber Zielgruppen","description":"Einfache Anzeigen k\u00f6nnen eingeblendet werden. Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen Daten hinzugef\u00fcgt werden, um Inhalte besser zu personalisieren. Die Leistung von Anzeigen und Inhalten kann gemessen werden. Erkenntnisse \u00fcber die Zielgruppen, die die Anzeigen und Inhalte gesehen haben, k\u00f6nnen abgeleitet werden. Daten k\u00f6nnen verwendet werden, um Benutzerfreundlichkeit, Systeme und Software aufzubauen oder zu verbessern."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Einfache Anzeigen, personalisierte Inhalte, Anzeigenmessung, Inhaltemessung und Erkenntnisse \u00fcber Zielgruppen","description":"Einfache Anzeigen k\u00f6nnen eingeblendet werden. Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen Daten hinzugef\u00fcgt werden, um Inhalte besser zu personalisieren. Die Leistung von Anzeigen und Inhalten kann gemessen werden. Erkenntnisse \u00fcber die Zielgruppen, die die Anzeigen und Inhalte gesehen haben, k\u00f6nnen abgeleitet werden."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Einfache Anzeigen, personalisierte Inhalte, Anzeigenmessung, Inhaltemessung, Erkenntnisse \u00fcber Zielgruppen und Produktentwicklung","description":"Einfache Anzeigen k\u00f6nnen eingeblendet werden. Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen Daten hinzugef\u00fcgt werden, um Inhalte besser zu personalisieren. Die Leistung von Anzeigen und Inhalten kann gemessen werden. Erkenntnisse \u00fcber die Zielgruppen, die die Anzeigen und Inhalte gesehen haben, k\u00f6nnen abgeleitet werden. Daten k\u00f6nnen verwendet werden, um die Benutzerfreundlichkeit zu verbessern und Systeme und Software zu entwickeln."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Einfache Anzeigen, personalisierte Inhalte, Inhaltemessung und Erkenntnisse \u00fcber Zielgruppen","description":"Einfache Anzeigen k\u00f6nnen eingeblendet werden. Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen Daten hinzugef\u00fcgt werden, um Inhalte besser zu personalisieren. Die Leistung von Anzeigen und Inhalten kann gemessen werden. Erkenntnisse \u00fcber die Zielgruppen, die die Anzeigen und Inhalte gesehen haben, k\u00f6nnen abgeleitet werden."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Einfache Anzeigen, personalisierte Inhalte, Inhaltemessung, Erkenntnisse \u00fcber Zielgruppen und Produktentwicklung","description":"Einfache Anzeigen k\u00f6nnen eingeblendet werden. Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen Daten hinzugef\u00fcgt werden, um Inhalte besser zu personalisieren. Die Leistung von Inhalten kann gemessen werden. Erkenntnisse \u00fcber die Zielgruppen, die die Anzeigen und Inhalte gesehen haben, k\u00f6nnen abgeleitet werden. Daten k\u00f6nnen verwendet werden, um die Benutzerfreundlichkeit zu verbessern und Systeme und Software zu entwickeln."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Einfache Anzeigen, personalisierte Inhalte und Anzeigenmessung","description":"Einfache Anzeigen k\u00f6nnen eingeblendet werden. Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen Daten hinzugef\u00fcgt werden, um Inhalte besser zu personalisieren. Die Anzeigen-Leistung kann gemessen werden."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Einfache Anzeigen, personalisierte Inhalte, Anzeigenmessung und Produktentwicklung","description":"Einfache Anzeigen k\u00f6nnen eingeblendet werden. Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Die Anzeigen-Leistung kann gemessen werden. Daten k\u00f6nnen verwendet werden, um die Benutzerfreundlichkeit zu verbessern und Systeme und Software zu entwickeln."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Personalisierte Anzeigen, Anzeigenmessung und Produktentwicklung","description":"Anzeigen k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen mehrere Daten hinzugef\u00fcgt werden, um Anzeigen besser zu personalisieren. Die Anzeigen-Performance kann gemessen werden. Daten k\u00f6nnen verwendet werden, um Benutzerfreundlichkeit, Systeme und Software aufzubauen oder zu verbessern."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Personalisierte Anzeigen, Anzeigenmessung, Erkenntnisse \u00fcber Zielgruppen und Produktentwicklung","description":"Anzeigen k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen mehrere Daten hinzugef\u00fcgt werden, um Anzeigen besser zu personalisieren. Die Anzeigen-Performance kann gemessen werden. Erkenntnisse \u00fcber die Zielgruppen, die die Anzeigen und Inhalte betrachtet haben, k\u00f6nnen abgeleitet werden. Daten k\u00f6nnen verwendet werden, um Benutzerfreundlichkeit, Systeme und Software aufzubauen oder zu verbessern."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Personalisierte Anzeigen, Anzeigen- und Inhaltsmessung, Erkenntnisse \u00fcber Zielgruppen und Produktentwicklung","description":"Anzeigen k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen mehrere Daten hinzugef\u00fcgt werden, um Anzeigen besser zu personalisieren. Die Performance von Anzeigen und Inhalten kann gemessen werden. Erkenntnisse \u00fcber Zielgruppen, die die Anzeigen und Inhalte betrachtet haben, k\u00f6nnen abgeleitet werden. Daten k\u00f6nnen verwendet werden, um Benutzerfreundlichkeit, Systeme und Software aufzubauen oder zu verbessern."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Personalisierte Anzeigen, Anzeige personalisierter Inhalte, Anzeigen- und Inhaltsmessung, Erkenntnisse \u00fcber Zielgruppen und Produktentwicklung","description":"Anzeigen und Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen mehrere Daten hinzugef\u00fcgt werden, um Anzeigen besser zu personalisieren. Die Performance von Anzeigen und Inhalten kann gemessen werden. Erkenntnisse \u00fcber Zielgruppen, die die Anzeigen und Inhalte betrachtet haben, k\u00f6nnen abgeleitet werden. Daten k\u00f6nnen verwendet werden, um Benutzerfreundlichkeit, Systeme und Software aufzubauen oder zu verbessern."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Personalisierte Anzeigen und Inhalte, Anzeigen- und Inhaltsmessungen, Erkenntnisse \u00fcber Zielgruppen und Produktentwicklungen","description":"Anzeigen und Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen mehr Daten hinzugef\u00fcgt werden, um Anzeigen und Inhalte besser zu personalisieren. Die Performance von Anzeigen und Inhalten kann gemessen werden. Erkenntnisse \u00fcber Zielgruppen, die die Anzeigen und Inhalte betrachtet haben, k\u00f6nnen abgeleitet werden. Daten k\u00f6nnen verwendet werden, um Benutzerfreundlichkeit, Systeme und Software aufzubauen oder zu verbessern."}}} \ No newline at end of file +{"vendorListVersion":94,"lastUpdated":"2021-06-10T16:43:55Z","purposes":{"1":{"id":1,"name":"Informationen auf einem Ger\u00e4t speichern und/oder abrufen","description":"F\u00fcr die Ihnen angezeigten Verarbeitungszwecke k\u00f6nnen Cookies, Ger\u00e4te-Kennungen oder andere Informationen auf Ihrem Ger\u00e4t gespeichert oder abgerufen werden.","descriptionLegal":"Anbieter k\u00f6nnen:\n* Informationen wie z. B. Cookies und Ger\u00e4te-Kennungen zu den dem Nutzer angezeigten Verarbeitungszwecken auf dem Ger\u00e4t speichern und abrufen.\n"},"2":{"id":2,"name":"Auswahl einfacher Anzeigen","description":"Anzeigen k\u00f6nnen Ihnen basierend auf den Inhalten, die Sie ansehen, der Anwendung, die Sie verwenden und Ihrem ungef\u00e4hren Standort oder Ihrem Ger\u00e4tetyp eingeblendet werden.","descriptionLegal":"F\u00fcr die Auswahl einfacher Anzeigen k\u00f6nnen Anbieter:\n* Echtzeit-Informationen \u00fcber den Kontext, in dem die Anzeige dargestellt wird, verwenden, einschlie\u00dflich Informationen \u00fcber das inhaltliche Umfeld sowie das verwendete Ger\u00e4t, wie z. B. Ger\u00e4tetyp und -funktionen, Browser-Kennung, URL, IP-Adresse; \n* die ungef\u00e4hren Standortdaten eines Nutzers verwenden;\n* die H\u00e4ufigkeit der Anzeige-Einblendungen steuern\n* die Reihenfolge der Anzeige-Einblendungen steuern;\n* verhindern, dass eine Anzeige in einem ungeeigneten redaktionellen Umfeld (brand-unsafe) eingeblendet wird.\nAnbieter d\u00fcrfen nicht:\n* Mit diesen Informationen ein personalisiertes Anzeigen-Profil f\u00fcr die Auswahl zuk\u00fcnftiger Anzeigen erstellen, ohne eine eigene Rechtsgrundlage f\u00fcr die Erstellung eines personalisierten Anzeigenprofils zu haben.\nAnmerkung: ungef\u00e4hr bedeutet, dass nur eine grobe Standortbestimmung mit einem Radius von mindestens 500 Metern erlaubt ist."},"3":{"id":3,"name":"Ein personalisiertes Anzeigen-Profil erstellen","description":"\u00dcber Sie und Ihre Interessen kann ein Profil erstellt werden, um Ihnen f\u00fcr Sie relevante personalisierte Anzeigen einzublenden.","descriptionLegal":"Um ein personalisiertes Anzeigen-Profil zu erstellen, k\u00f6nnen Anbieter:\n* Informationen \u00fcber einen Nutzer sammeln, einschlie\u00dflich dessen Aktivit\u00e4ten, Interessen, den Besuchen auf Webseiten oder der Verwendung von Anwendungen, demographischen Informationen oder Standorts, um ein Nutzer-Profil f\u00fcr die Personalisierung von Anzeigen zu erstellen oder zu bearbeiten.\n* Diese Informationen mit anderen zuvor gesammelten Informationen, einschlie\u00dflich von Websites und Apps, kombinieren, um ein Benutzerprofil f\u00fcr die Verwendung in personalisierter Werbung zu erstellen oder zu bearbeiten."},"4":{"id":4,"name":"Personalisierte Anzeigen ausw\u00e4hlen","description":"Personalisierte Anzeigen k\u00f6nnen Ihnen basierend auf einem \u00fcber Sie erstellten Profil eingeblendet werden.","descriptionLegal":"F\u00fcr die Auswahl personalisierter Anzeigen k\u00f6nnen Anbieter:\n* Personalisierte Anzeigen, basierend auf einem Nutzer-Profil oder anderen historischen Nutzungsdaten, einschlie\u00dflich der fr\u00fcheren Aktivit\u00e4ten, der Interessen, den Besuchen auf Webseiten oder der Verwendung von Anwendungen, des Standorts oder demografischen Informationen, ausw\u00e4hlen."},"5":{"id":5,"name":"Ein personalisiertes Inhalts-Profil erstellen","description":"\u00dcber Sie und Ihre Interessen kann ein Profil erstellt werden, um Ihnen f\u00fcr Sie relevante personalisierte Inhalte anzuzeigen.","descriptionLegal":"Um ein personalisiertes Inhalts-Profil zu erstellen, k\u00f6nnen Anbieter:\n* Informationen \u00fcber einen Nutzer sammeln, einschlie\u00dflich dessen Aktivit\u00e4ten, Interessen, Besuchen auf Webseiten oder der Verwendung von Anwendungen, demographischen \n* Informationen oder Standorts, um ein Nutzer-Profil f\u00fcr die Personalisierung von Inhalten zu erstellen oder zu bearbeiten."},"6":{"id":6,"name":"Personalisierte Inhalte ausw\u00e4hlen","description":"Personalisierte Inhalte k\u00f6nnen Ihnen basierend auf einem \u00fcber Sie erstellten Profil angezeigt werden.","descriptionLegal":"Um personalisierte Inhalte auszuw\u00e4hlen, k\u00f6nnen Anbieter:\n* Personalisierte Inhalte, basierend auf einem Nutzer-Profil oder anderen historischen Nutzungsdaten, einschlie\u00dflich der fr\u00fcheren Aktivit\u00e4ten, der Interessen, den Besuchen auf Webseiten oder der Verwendung von Anwendungen, des Standorts oder demografischen Informationen, ausw\u00e4hlen.\n"},"7":{"id":7,"name":"Anzeigen-Leistung messen","description":"Die Leistung und Wirksamkeit von Anzeigen, die Sie sehen oder mit denen Sie interagieren, kann gemessen werden.","descriptionLegal":"Um die Anzeigen-Leistung zu messen, k\u00f6nnen Anbieter:\n* messen, ob und wie Anzeigen bei einem Nutzer eingeblendet wurden und wie dieser mit ihnen interagiert hat;\n* Berichte \u00fcber Anzeigen, einschlie\u00dflich ihrer Wirksamkeit und Leistung, bereitstellen;\n* Berichte \u00fcber die Interaktion von Nutzern mit Anzeigen bereitstellen, und zwar anhand von Daten, die im Laufe der Interaktion des Nutzers mit dieser Anzeige gemessen wurden;\n* Berichte f\u00fcr Diensteanbieter \u00fcber die Anzeigen, die auf ihren Diensten eingeblendet werden, bereitstellen;\n* messen, ob eine Anzeige in einem ungeeigneten redaktionellen Umfeld (brand-unsafe) eingeblendet wird;\n* den Prozentsatz bestimmen, zu welchem die Anzeige h\u00e4tte wahrgenommen werden k\u00f6nnen, einschlie\u00dflich der Dauer (Werbewahrnehmungschance). \nAnbieter d\u00fcrfen nicht:\n* \u00dcber Befragungspanels oder \u00e4hnliche Verfahren erhobene Daten \u00fcber Zielgruppen zusammen mit Anzeigen-Messungsdaten verwenden, ohne daf\u00fcr eine eigene Rechtsgrundlage f\u00fcr den Einsatz von Marktforschung zur Gewinnung von Erkenntnissen \u00fcber Zielgruppen zu haben.\n"},"8":{"id":8,"name":"Inhalte-Leistung messen","description":"Die Leistung und Wirksamkeit von Inhalten, die Sie sehen oder mit denen Sie interagieren, kann gemessen werden.","descriptionLegal":"Um die Leistung von Inhalten zu messen, k\u00f6nnen Anbieter:\n* messen und dar\u00fcber berichten, wie Inhalte an Nutzer ausgeliefert wurden und wie diese mit ihnen interagiert haben;\n* Berichte \u00fcber direkt messbare oder bereits bekannte Informationen von Nutzern, die mit den Inhalten interagiert haben, bereitstellen.\nAnbieter k\u00f6nnen nicht:\n* messen, ob und wie Anzeigen (einschlie\u00dflich nativer Anzeigen) an einen Benutzer ausgeliefert wurden und wie dieser mit ihnen interagiert hat;\n* \u00dcber Befragungspanels oder \u00e4hnliche Verfahren erhobene Daten \u00fcber Zielgruppen zusammen mit Inhalts-Messungsdaten verwenden, ohne daf\u00fcr eine eigene Rechtsgrundlage f\u00fcr den Einsatz von Marktforschung zur Gewinnung von Erkenntnissen \u00fcber Zielgruppen zu haben.\n"},"9":{"id":9,"name":"Marktforschung einsetzen, um Erkenntnisse \u00fcber Zielgruppen zu gewinnen","description":"Marktforschung kann verwendet werden, um mehr \u00fcber die Zielgruppen zu erfahren, die Dienste oder Anwendungen verwenden und sich Anzeigen ansehen.","descriptionLegal":"Beim Einsatz von Marktforschung zur Gewinnung von Erkenntnissen \u00fcber Zielgruppen k\u00f6nnen Anbieter:\n* aggregierte Berichte f\u00fcr Werbetreibende oder deren Repr\u00e4sentanten \u00fcber die Zielgruppen, die durch ihre Anzeigen erreicht werden, und welche auf der Grundlage von Befragungspanels oder \u00e4hnlichen Verfahren gewonnen wurden, bereitstellen;\n* aggregierte Berichte f\u00fcr Diensteanbieter \u00fcber die Zielgruppen, die durch die Inhalte und/oder Anzeigen auf ihren Diensten erreicht wurden bzw. mit diesen interagiert haben, und welche \u00fcber Befragungspanels oder \u00e4hnliche Verfahren ermittelt wurden, bereitstellen;\n* f\u00fcr Zwecke der Marktforschung Offline-Daten zu einem Online-Benutzer zuordnen, um Erkenntnisse \u00fcber Zielgruppen zu gewinnen, soweit Anbieter erkl\u00e4rt haben, Offline-Datenquellen abzugleichen und zusammenzuf\u00fchren (Weitere Verarbeitungsm\u00f6glichkeit 1).\n\n\nAnbieter k\u00f6nnen nicht: \n* die Leistung und Wirksamkeit von Anzeigen, die einem bestimmten Nutzer eingeblendet wurden oder mit denen dieser interagiert hat, messen, ohne eine eigene Rechtsgrundlage f\u00fcr die Messung der Anzeigen-Leistung zu haben;\n* messen, welche Inhalte f\u00fcr einen bestimmten Nutzer geliefert wurden und wie dieser mit ihnen interagiert hat, ohne eine eigene Rechtsgrundlage f\u00fcr die Messung der Inhalte-Leistung zu haben\n"},"10":{"id":10,"name":"Produkte entwickeln und verbessern","description":"Ihre Daten k\u00f6nnen verwendet werden, um bestehende Systeme und Software zu verbessern und neue Produkte zu entwickeln.","descriptionLegal":"Um Produkte zu entwickeln und zu verbessern, k\u00f6nnen Anbieter:\n* Informationen verwenden, um ihre bestehenden Produkte durch neue Funktionen zu verbessern und neue Produkte zu entwickeln;\n* neue Rechenmodelle und Algorithmen mit Hilfe maschinellen Lernens erstellen.\nAnbieter k\u00f6nnen nicht:\n* Datenverarbeitungen durchf\u00fchren, die in einem der anderen Verarbeitungszwecke definiert sind.\n"}},"specialPurposes":{"1":{"id":1,"name":"Sicherheit gew\u00e4hrleisten, Betrug verhindern und Fehler beheben","description":"Ihre Daten k\u00f6nnen verwendet werden, um betr\u00fcgerische Aktivit\u00e4ten zu identifizieren und zu verhindern, und um sicherzustellen, dass Systeme und Prozesse ordnungsgem\u00e4\u00df und sicher funktionieren.","descriptionLegal":"Zur Gew\u00e4hrleistung von Sicherheit, Verhinderung von Betrug und Behebung von Fehlern k\u00f6nnen Anbieter:\n* sicherstellen, dass Daten sicher \u00fcbermittelt werden; \n* sch\u00e4dliche, betr\u00fcgerische, ung\u00fcltige oder illegale Aktivit\u00e4ten ausfindig machen und verhindern;\n* den korrekten und effizienten Betrieb von Systemen und Prozessen - einschlie\u00dflich der \u00dcberwachung und Verbesserung der Leistung von Systemen und Prozessen - im Rahmen der erlaubten Verarbeitungszwecke sicherstellen.\nAnbieter k\u00f6nnen nicht:\n* Datenverarbeitungen durchf\u00fchren, die in einem der anderen Verarbeitungszwecke definiert sind.\nHinweis: Daten, die gesammelt und verwendet werden, um die Sicherheit zu gew\u00e4hrleisten, Betrug zu verhindern und Fehler zu beseitigen.\nk\u00f6nnen automatisch gesendete Ger\u00e4teeigenschaften zur Identifizierung beinhalten, pr\u00e4zise Geolokalisierungsdaten und Daten, die durch aktive Abtastung der Vorrichtung erhalten werden. Merkmale zur Identifizierung ohne gesonderte Offenlegung und/oder Opt-in.\n"},"2":{"id":2,"name":"Anzeigen oder Inhalte technisch bereitstellen","description":"Ihr Ger\u00e4t kann Informationen empfangen und senden die notwendig sind, damit Sie Inhalte und Anzeigen sehen und nutzen k\u00f6nnen.","descriptionLegal":"Zur Bereitstellung von Informationsdaten und um auf technische Anfragen zu reagieren k\u00f6nnen Anbieter:\n* die IP-Adresse eines Benutzers verwenden, um \u00fcber das Internet eine Anzeige einzublenden;\n* auf die Interaktion eines Benutzers mit einer Anzeige reagieren, indem sie den Benutzer zu einer Zielseite weiterleiten;\n* die IP-Adresse eines Benutzers verwenden, um Inhalte \u00fcber das Internet bereitzustellen;\n* auf die Interaktion eines Benutzers mit Inhalten reagieren, indem sie den Benutzer zu einer Zielseite weiterleiten;\n* Informationen zum Ger\u00e4tetyp und seinen M\u00f6glichkeiten zur Darstellung von Anzeigen oder Inhalten verwenden, z. B. um Werbemittel oder Videodateien in der richtigen Gr\u00f6\u00dfe und in einem vom Ger\u00e4t unterst\u00fctzten Format bereitzustellen.\n\nAnbieter k\u00f6nnen nicht:\n* Datenverarbeitungen durchf\u00fchren, die in einem der anderen Verarbeitungszwecke definiert sind.\n"}},"features":{"1":{"id":1,"name":"Mit Offline-Datenquellen zusammenf\u00fchren","description":"* Daten aus Offline-Datenquellen k\u00f6nnen mit Daten aus Ihren Online-Aktivit\u00e4ten zusammengef\u00fchrt werden, um sie f\u00fcr einen oder mehrere Verarbeitungszwecke bzw. besondere Verarbeitungszwecke nutzen zu k\u00f6nnen.\n* Daten aus Ihren Online-Aktivit\u00e4ten k\u00f6nnen mit Offline-Daten zusammengef\u00fchrt werden, um sie f\u00fcr einen oder mehrere Verarbeitungszwecke oder besondere Verarbeitungszwecke erg\u00e4nzend zu nutzen.","descriptionLegal":"Anbieter k\u00f6nnen: \n\n* Daten, die offline erhoben wurden, mit Daten, die online erhoben wurden, zusammenf\u00fchren, um sie f\u00fcr einen oder mehrere Verarbeitungszwecke oder besondere Verarbeitungszwecke erg\u00e4nzend zu nutzen."},"2":{"id":2,"name":"Verschiedene Ger\u00e4te verkn\u00fcpfen","description":"Zur Nutzung f\u00fcr einen oder mehrere Verarbeitungszwecke kann ermittelt werden, ob unterschiedliche Ger\u00e4te zu Ihnen oder Ihrem Haushalt geh\u00f6ren.","descriptionLegal":"Anbieter k\u00f6nnen:\n* deterministisch ermitteln, dass zwei oder mehr Ger\u00e4te zum gleichen Benutzer oder Haushalt geh\u00f6ren;\n* probabilistisch ermitteln, dass zwei oder mehr Ger\u00e4te zum gleichen Benutzer oder Haushalt geh\u00f6ren;\n* Ger\u00e4teeigenschaften zur probabilistischen Identifikation aktiv abfragen, wenn Nutzer Anbietern die aktive Abfrage von Ger\u00e4teeigenschaften erlaubt haben. (Besondere Verarbeitungsm\u00f6glichkeit 2).\n"},"3":{"id":3,"name":"Empfangen und Verwenden automatisch gesendeter Ger\u00e4teeigenschaften f\u00fcr die Identifikation","description":"Ihr Ger\u00e4t kann aufgrund von Informationen, die es automatisch sendet wie z.B. IP-Adresse oder Browsertyp von anderen Ger\u00e4ten unterschieden werden.","descriptionLegal":"Anbieter k\u00f6nnen:\n* eine Kennung unter Verwendung automatisch \u00fcbertragener Ger\u00e4teeigenschaften wie z.B. IP-Adresse oder Browser-Kennung.\n* Eine solche Kennung benutzen, um zu versuchen, ein Ger\u00e4t wiederzuerkennen\nAnbieter d\u00fcrfen nicht:\n* aus Daten, die aus der aktiven Abfrage bestimmter Eigenschaften eines Ger\u00e4ts - z. B. der installierten Schriftarten oder der Bildschirmaufl\u00f6sung - gewonnen wurden, eine Kennung erstellen;\n* eine solche Kennung verwenden, um ein Ger\u00e4t erneut zu identifizieren.\n"}},"specialFeatures":{"1":{"id":1,"name":"Genaue Standortdaten verwenden","description":"Ihre genauen Standortdaten k\u00f6nnen f\u00fcr einen oder mehrere Verarbeitungszwecke genutzt werden. Das bedeutet, dass Ihr Standort bis auf wenige Meter pr\u00e4zise bestimmt werden kann","descriptionLegal":"Anbieter k\u00f6nnen:\n* genaue Standortdaten verarbeiten, um sie f\u00fcr einen oder mehrere Verarbeitungszwecke zu nutzen.\nAnmerkung: \u201cGenaue Standortdaten\u201d bedeutet, dass es hinsichtlich der Genauigkeit des Standortes keine Einschr\u00e4nkungen gibt; diese kann bis auf wenige Meter genau sein.\n"},"2":{"id":2,"name":"Ger\u00e4teeigenschaften zur Identifikation aktiv abfragen","description":"Ihr Ger\u00e4t kann \u00fcber eine Abfrage seiner spezifischen Merkmale erkannt werden.","descriptionLegal":"Anbieter k\u00f6nnen:\n* aus Daten, die aus der aktiven Abfrage bestimmter Eigenschaften eines Ger\u00e4ts - z. B. der installierten Schriftarten oder der Bildschirmaufl\u00f6sung - gewonnen wurden, eine Kennung erstellen;\n* eine solche Kennung verwenden, um ein Ger\u00e4t erneut zu identifizieren.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Genaue Standortdaten und Abfrage von Ger\u00e4teeigenschaften zur Identifikation","description":"Es k\u00f6nnen genaue Standortdaten und Informationen \u00fcber Ger\u00e4temerkmale verwendet werden."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Einfache Anzeigen und Anzeigenmessung","description":"Einfache Anzeigen k\u00f6nnen eingeblendet werden. Die Anzeigen-Leistung kann gemessen werden."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Personalisierte Anzeigen","description":"Anzeigen k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen Daten hinzugef\u00fcgt werden, um Anzeigen besser zu personalisieren."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Basisanzeigen und Anzeigenmessung","description":"Es k\u00f6nnen Basisanzeigen geschaltet werden. Die Anzeigen-Performance kann gemessen werden. Erkenntnisse \u00fcber die Zielgruppen, die die Anzeigen und Inhalte betrachtet haben, k\u00f6nnen abgeleitet werden."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Einfache Anzeigen, personalisiertes Anzeigenprofil und Anzeigenmessung","description":"Einfache Anzeigen k\u00f6nnen eingeblendet werden. Es k\u00f6nnen Daten hinzugef\u00fcgt werden, um Anzeigen besser zu personalisieren. Die Anzeigen-Leistung kann gemessen werden."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Einblendung personalisierter Anzeigen und Anzeigenmessung","description":"Anzeigen k\u00f6nnen basierend auf einem Profil personalisiert werden. Die Anzeigen-Leistung kann gemessen werden."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Einblendung personalisierter Anzeigen, Anzeigenmessung und Erkenntnisse \u00fcber Zielgruppen","description":"Anzeigen k\u00f6nnen basierend auf einem Profil personalisiert werden. Die Anzeigen-Leistung kann gemessen werden. Erkenntnisse \u00fcber Zielgruppen, die die Anzeigen und Inhalte gesehen haben, k\u00f6nnen abgeleitet werden."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Personalisierte Anzeigen und Anzeigenmessung","description":"Anzeigen k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen mehr Daten hinzugef\u00fcgt werden, um Anzeigen besser zu personalisieren. Die Anzeigen-Leistung kann gemessen werden."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Personalisierte Anzeigen, Anzeigenmessung und Erkenntnisse \u00fcber Zielgruppen","description":"Anzeigen k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen mehr Daten hinzugef\u00fcgt werden, um Anzeigen besser zu personalisieren. Die Anzeigen-Leistung kann gemessen werden. Erkenntnisse \u00fcber Zielgruppen, die die Anzeigen und Inhalte gesehen haben, k\u00f6nnen abgeleitet werden."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Personalisiertes Anzeigenprofil und Einblendung","description":"Anzeigen k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen Daten hinzugef\u00fcgt werden, um Anzeigen besser zu personalisieren."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Personalisierte Inhalte","description":"Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen Daten hinzugef\u00fcgt werden, um Inhalte besser zu personalisieren."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Anzeige personalisierter Inhalte und Inhaltemessung","description":"Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Die Leistung von Inhalten kann gemessen werden."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Anzeige personalisierter Inhalte, Inhaltemessung und Erkenntnisse \u00fcber Zielgruppen","description":"Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Die Leistung von Inhalten kann gemessen werden. Erkenntnisse \u00fcber Zielgruppen, die die Anzeigen und Inhalte gesehen haben, k\u00f6nnen abgeleitet werden."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Personalisierte Inhalte und Inhaltemessung","description":"Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen Daten hinzugef\u00fcgt werden, um Inhalte besser zu personalisieren. Die Leistung von Inhalten kann gemessen werden."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Personalisierte Inhalte, Inhaltemessung und Erkenntnisse \u00fcber Zielgruppen","description":"Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen Daten hinzugef\u00fcgt werden, um Inhalte besser zu personalisieren. Die Leistung von Inhalten kann gemessen werden. Erkenntnisse \u00fcber die Zielgruppen, die die Anzeigen und Inhalte betrachtet haben, k\u00f6nnen abgeleitet werden."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Personalisierte Inhalte, Inhaltemessung, Erkenntnisse \u00fcber Zielgruppen und Produktentwicklung","description":"Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen Daten hinzugef\u00fcgt werden, um Inhalte besser zu personalisieren. Die Leistung von Inhalten kann gemessen werden. Erkenntnisse \u00fcber Zielgruppen, die die Anzeigen und Inhalte gesehen haben, k\u00f6nnen abgeleitet werden. Daten k\u00f6nnen verwendet werden, um die Benutzerfreundlichkeit zu verbessern und Systeme und Software zu entwickeln."},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Anzeigenmessung, Inhaltemessung und Erkenntnisse \u00fcber Zielgruppen","description":"Die Leistung von Anzeigen und Inhalten kann gemessen werden. Erkenntnisse \u00fcber die Zielgruppen, die die Anzeigen und Inhalte gesehen haben, k\u00f6nnen abgeleitet werden."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Anzeigenmessung und Inhaltemessung","description":"Die Leistung von Anzeigen und Inhalten kann gemessen werden."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Anzeigenmessung und Erkenntnisse \u00fcber Zielgruppen","description":"Die Anzeige kann gemessen werden. Erkenntnisse \u00fcber die Zielgruppen, die die Anzeigen und Inhalte gesehen haben, k\u00f6nnen abgeleitet werden."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Anzeigenmessung, Inhaltemessung, Erkenntnisse \u00fcber Zielgruppen und Produktentwicklung","description":"Die Leistung von Anzeigen und Inhalten kann gemessen werden. Erkenntnisse \u00fcber die Zielgruppen, die die Anzeigen und Inhalte gesehen haben, k\u00f6nnen abgeleitet werden. Erkenntnisse \u00fcber die Zielgruppen, die die Anzeigen und Inhalte betrachtet haben, k\u00f6nnen abgeleitet werden. Daten k\u00f6nnen verwendet werden, um die Benutzerfreundlichkeit zu verbessern und Systeme und Software zu entwickeln."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Inhaltemessung, Erkenntnisse \u00fcber Zielgruppen und Produktentwicklung","description":"Die Leistung von Inhalten kann gemessen werden. Erkenntnisse \u00fcber die Zielgruppen, die die Anzeigen und Inhalte gesehen haben, k\u00f6nnen abgeleitet werden. Daten k\u00f6nnen verwendet werden, um die Benutzerfreundlichkeit zu verbessern und Systeme und Software zu entwickeln."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Inhaltemessung und Produktentwicklung","description":"Die Leistung von Inhalten kann gemessen werden. Daten k\u00f6nnen verwendet werden, um die Benutzerfreundlichkeit zu verbessern und Systeme und Software zu entwickeln."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Einblendung und Anzeige personalisierter Anzeigen und Inhalte, Anzeigenmessung und Inhaltemessung","description":"Anzeigen und Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Die Leistung von Anzeigen und Inhalten kann gemessen werden."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Anzeige von personalisierten Anzeigen und Inhalten, Anzeigenmessung und Inhalten und Erkenntnisse \u00fcber Zielgruppen","description":"Anzeigen und Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Die Leistung von Anzeigen und Inhalten kann gemessen werden. Erkenntnisse \u00fcber die Zielgruppen, die die Anzeigen und Inhalte gesehen haben, k\u00f6nnen abgeleitet werden."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Personalisierte Anzeigen und Inhalte, Anzeigenmessung und Inhaltemessung","description":"Anzeigen und Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen Daten hinzugef\u00fcgt werden, um Anzeigen und Inhalte besser zu personalisieren. Die Leistung von Anzeigen und Inhalten kann gemessen werden."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Personalisierte Anzeigen und Inhalte, Anzeigen- und Inhaltemessung und Erkenntnisse \u00fcber Zielgruppen\n\n","description":"Anzeigen und Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen Daten hinzugef\u00fcgt werden, um Anzeigen und Inhalte besser zu personalisieren. Die Leistung von Anzeigen und Inhalten kann gemessen werden. Erkenntnisse \u00fcber die Zielgruppen, die die Anzeigen und Inhalte gesehen haben, k\u00f6nnen abgeleitet werden."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Personalisierte Anzeigen und Inhaltsprofil","description":"Es k\u00f6nnen Daten hinzugef\u00fcgt werden, um Anzeigen und Inhalte zu personalisieren."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Einblendung und Anzeige von personalisierten Anzeigen und Inhalten","description":"Anzeigen und Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden"},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Einfache Anzeigen, Anzeigenmessung, Inhaltemessung und Erkenntnisse \u00fcber Zielgruppen","description":"Einfache Anzeigen k\u00f6nnen eingeblendet werden. Die Leistung von Anzeigen und Inhalten kann gemessen werden. Erkenntnisse \u00fcber die Zielgruppen, die die Anzeigen und Inhalte gesehen haben, k\u00f6nnen abgeleitet werden."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Einblendung personalisierter Anzeigen, personalisierte Inhalte, Anzeigenmessung, Inhaltemessung und Erkenntnisse \u00fcber Zielgruppen","description":"Anzeigen und Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen Daten hinzugef\u00fcgt werden, um Inhalte besser zu personalisieren. Die Leistung von Anzeigen und Inhalten kann gemessen werden. Erkenntnisse \u00fcber die Zielgruppen, die die Anzeigen und Inhalte gesehen haben, k\u00f6nnen abgeleitet werden."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Einfache Anzeigen, personalisierte Inhalte, Anzeigenmessung, Inhaltemessung und Erkenntnisse \u00fcber Zielgruppen","description":"Einfache Anzeigen k\u00f6nnen eingeblendet werden. Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen Daten hinzugef\u00fcgt werden, um Inhalte besser zu personalisieren. Die Leistung von Anzeigen und Inhalten kann gemessen werden. Erkenntnisse \u00fcber die Zielgruppen, die die Anzeigen und Inhalte gesehen haben, k\u00f6nnen abgeleitet werden. Daten k\u00f6nnen verwendet werden, um Benutzerfreundlichkeit, Systeme und Software aufzubauen oder zu verbessern."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Einfache Anzeigen, personalisierte Inhalte, Anzeigenmessung, Inhaltemessung und Erkenntnisse \u00fcber Zielgruppen","description":"Einfache Anzeigen k\u00f6nnen eingeblendet werden. Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen Daten hinzugef\u00fcgt werden, um Inhalte besser zu personalisieren. Die Leistung von Anzeigen und Inhalten kann gemessen werden. Erkenntnisse \u00fcber die Zielgruppen, die die Anzeigen und Inhalte gesehen haben, k\u00f6nnen abgeleitet werden."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Einfache Anzeigen, personalisierte Inhalte, Anzeigenmessung, Inhaltemessung, Erkenntnisse \u00fcber Zielgruppen und Produktentwicklung","description":"Einfache Anzeigen k\u00f6nnen eingeblendet werden. Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen Daten hinzugef\u00fcgt werden, um Inhalte besser zu personalisieren. Die Leistung von Anzeigen und Inhalten kann gemessen werden. Erkenntnisse \u00fcber die Zielgruppen, die die Anzeigen und Inhalte gesehen haben, k\u00f6nnen abgeleitet werden. Daten k\u00f6nnen verwendet werden, um die Benutzerfreundlichkeit zu verbessern und Systeme und Software zu entwickeln."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Einfache Anzeigen, personalisierte Inhalte, Inhaltemessung und Erkenntnisse \u00fcber Zielgruppen","description":"Einfache Anzeigen k\u00f6nnen eingeblendet werden. Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen Daten hinzugef\u00fcgt werden, um Inhalte besser zu personalisieren. Die Leistung von Anzeigen und Inhalten kann gemessen werden. Erkenntnisse \u00fcber die Zielgruppen, die die Anzeigen und Inhalte gesehen haben, k\u00f6nnen abgeleitet werden."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Einfache Anzeigen, personalisierte Inhalte, Inhaltemessung, Erkenntnisse \u00fcber Zielgruppen und Produktentwicklung","description":"Einfache Anzeigen k\u00f6nnen eingeblendet werden. Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen Daten hinzugef\u00fcgt werden, um Inhalte besser zu personalisieren. Die Leistung von Inhalten kann gemessen werden. Erkenntnisse \u00fcber die Zielgruppen, die die Anzeigen und Inhalte gesehen haben, k\u00f6nnen abgeleitet werden. Daten k\u00f6nnen verwendet werden, um die Benutzerfreundlichkeit zu verbessern und Systeme und Software zu entwickeln."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Einfache Anzeigen, personalisierte Inhalte und Anzeigenmessung","description":"Einfache Anzeigen k\u00f6nnen eingeblendet werden. Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen Daten hinzugef\u00fcgt werden, um Inhalte besser zu personalisieren. Die Anzeigen-Leistung kann gemessen werden."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Einfache Anzeigen, personalisierte Inhalte, Anzeigenmessung und Produktentwicklung","description":"Einfache Anzeigen k\u00f6nnen eingeblendet werden. Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Die Anzeigen-Leistung kann gemessen werden. Daten k\u00f6nnen verwendet werden, um die Benutzerfreundlichkeit zu verbessern und Systeme und Software zu entwickeln."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Personalisierte Anzeigen, Anzeigenmessung und Produktentwicklung","description":"Anzeigen k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen mehrere Daten hinzugef\u00fcgt werden, um Anzeigen besser zu personalisieren. Die Anzeigen-Performance kann gemessen werden. Daten k\u00f6nnen verwendet werden, um Benutzerfreundlichkeit, Systeme und Software aufzubauen oder zu verbessern."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Personalisierte Anzeigen, Anzeigenmessung, Erkenntnisse \u00fcber Zielgruppen und Produktentwicklung","description":"Anzeigen k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen mehrere Daten hinzugef\u00fcgt werden, um Anzeigen besser zu personalisieren. Die Anzeigen-Performance kann gemessen werden. Erkenntnisse \u00fcber die Zielgruppen, die die Anzeigen und Inhalte betrachtet haben, k\u00f6nnen abgeleitet werden. Daten k\u00f6nnen verwendet werden, um Benutzerfreundlichkeit, Systeme und Software aufzubauen oder zu verbessern."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Personalisierte Anzeigen, Anzeigen- und Inhaltsmessung, Erkenntnisse \u00fcber Zielgruppen und Produktentwicklung","description":"Anzeigen k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen mehrere Daten hinzugef\u00fcgt werden, um Anzeigen besser zu personalisieren. Die Performance von Anzeigen und Inhalten kann gemessen werden. Erkenntnisse \u00fcber Zielgruppen, die die Anzeigen und Inhalte betrachtet haben, k\u00f6nnen abgeleitet werden. Daten k\u00f6nnen verwendet werden, um Benutzerfreundlichkeit, Systeme und Software aufzubauen oder zu verbessern."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Personalisierte Anzeigen, Anzeige personalisierter Inhalte, Anzeigen- und Inhaltsmessung, Erkenntnisse \u00fcber Zielgruppen und Produktentwicklung","description":"Anzeigen und Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen mehrere Daten hinzugef\u00fcgt werden, um Anzeigen besser zu personalisieren. Die Performance von Anzeigen und Inhalten kann gemessen werden. Erkenntnisse \u00fcber Zielgruppen, die die Anzeigen und Inhalte betrachtet haben, k\u00f6nnen abgeleitet werden. Daten k\u00f6nnen verwendet werden, um Benutzerfreundlichkeit, Systeme und Software aufzubauen oder zu verbessern."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Personalisierte Anzeigen und Inhalte, Anzeigen- und Inhaltsmessungen, Erkenntnisse \u00fcber Zielgruppen und Produktentwicklungen","description":"Anzeigen und Inhalte k\u00f6nnen basierend auf einem Profil personalisiert werden. Es k\u00f6nnen mehr Daten hinzugef\u00fcgt werden, um Anzeigen und Inhalte besser zu personalisieren. Die Performance von Anzeigen und Inhalten kann gemessen werden. Erkenntnisse \u00fcber Zielgruppen, die die Anzeigen und Inhalte betrachtet haben, k\u00f6nnen abgeleitet werden. Daten k\u00f6nnen verwendet werden, um Benutzerfreundlichkeit, Systeme und Software aufzubauen oder zu verbessern."}}} \ No newline at end of file diff --git a/src/s1/config/2.0/purposes/purposes-el.json b/src/s1/config/2.0/purposes/purposes-el.json index e81ed7ab..4c83c6de 100644 --- a/src/s1/config/2.0/purposes/purposes-el.json +++ b/src/s1/config/2.0/purposes/purposes-el.json @@ -1 +1 @@ -{"vendorListVersion":79,"lastUpdated":"2021-02-25T16:36:16Z","purposes":{"1":{"id":1,"name":"\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03ae/\u03ba\u03b1\u03b9 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03bc\u03b9\u03b1\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2","description":"\u039c\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03b5\u03c4\u03b5 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03ac\u03c4\u03b5 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b1 cookies, \u03c4\u03b1 \u03b1\u03bd\u03b1\u03b3\u03bd\u03c9\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2 \u03ba\u03b1\u03b9 \u03ac\u03bb\u03bb\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c4\u03b7\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2 \u03c3\u03b1\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf\u03c5\u03c2 \u03c3\u03ba\u03bf\u03c0\u03bf\u03cd\u03c2 \u03c0\u03bf\u03c5 \u03c3\u03b1\u03c2 \u03c0\u03b1\u03c1\u03bf\u03c5\u03c3\u03b9\u03ac\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9","descriptionLegal":"\u039f\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03bf\u03c5\u03bd \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03bf\u03cd\u03bd \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c4\u03b7\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2, \u03cc\u03c0\u03c9\u03c2 \u03c3\u03c4\u03b1 cookies \u03ba\u03b1\u03b9 \u03c4\u03b1 \u03b1\u03bd\u03b1\u03b3\u03bd\u03c9\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2 \u03c0\u03bf\u03c5 \u03c0\u03b1\u03c1\u03bf\u03c5\u03c3\u03b9\u03ac\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c3\u03b5 \u03ba\u03ac\u03c0\u03bf\u03b9\u03bf\u03bd \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\n"},"2":{"id":2,"name":"\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03b2\u03b1\u03c3\u03b9\u03ba\u03ce\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd","description":"\u039f\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c3\u03b5 \u03b5\u03c3\u03ac\u03c2 \u03bc\u03b5 \u03b2\u03ac\u03c3\u03b7 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03c0\u03bf\u03c5 \u03b2\u03bb\u03ad\u03c0\u03b5\u03c4\u03b5, \u03c4\u03b7\u03bd \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03bf\u03c5 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b5\u03af\u03c4\u03b5, \u03c4\u03b7\u03bd \u03ba\u03b1\u03c4\u03ac \u03c0\u03c1\u03bf\u03c3\u03ad\u03b3\u03b3\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1 \u03c3\u03b1\u03c2 \u03ae \u03c4\u03bf\u03bd \u03c4\u03cd\u03c0\u03bf \u03c4\u03b7\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2 \u03c3\u03b1\u03c2.","descriptionLegal":"\u0393\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03c0\u03b9\u03bb\u03ad\u03b3\u03bf\u03c5\u03bd \u03b2\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03bf\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c3\u03b5 \u03c0\u03c1\u03b1\u03b3\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc \u03c7\u03c1\u03cc\u03bd\u03bf \u03b3\u03b9\u03b1 \u03c4\u03bf \u03c0\u03bb\u03b1\u03af\u03c3\u03b9\u03bf \u03b5\u03bd\u03c4\u03cc\u03c2 \u03c4\u03bf\u03c5 \u03bf\u03c0\u03bf\u03af\u03bf\u03c5 \u03b8\u03b1 \u03c0\u03c1\u03bf\u03b2\u03ac\u03bb\u03bb\u03b5\u03c4\u03b1\u03b9 \u03b7 \u03b4\u03b9\u03b1\u03c6\u03ae\u03bc\u03b9\u03c3\u03b7, \u03cc\u03c0\u03c9\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03c3\u03c7\u03b5\u03c4\u03b9\u03ba\u03ac \u03bc\u03b5 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03ba\u03b1\u03b9 \u03c4\u03b7 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae (\u03c0.\u03c7. \u03c4\u03cd\u03c0\u03bf \u03ba\u03b1\u03b9 \u03b4\u03c5\u03bd\u03b1\u03c4\u03cc\u03c4\u03b7\u03c4\u03b5\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2, \u03c0\u03b1\u03c1\u03ac\u03b3\u03bf\u03bd\u03c4\u03b1 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7, \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 URL, \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 IP), \u03ce\u03c3\u03c4\u03b5 \u03bd\u03b1 \u03c0\u03c1\u03bf\u03b2\u03ac\u03bb\u03bf\u03c5\u03bd \u03c4\u03b7 \u03b4\u03b9\u03b1\u03c6\u03ae\u03bc\u03b9\u03c3\u03b7 \n* \u039d\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd \u03c4\u03b1 \u03bc\u03b7 \u03b1\u03ba\u03c1\u03b9\u03b2\u03ae \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b5\u03c9-\u03b5\u03bd\u03c4\u03bf\u03c0\u03b9\u03c3\u03bc\u03bf\u03cd \u03b5\u03bd\u03cc\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\n* \u039d\u03b1 \u03b5\u03bb\u03ad\u03b3\u03c7\u03bf\u03c5\u03bd \u03c4\u03b7 \u03c3\u03c5\u03c7\u03bd\u03cc\u03c4\u03b7\u03c4\u03b1 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03c0\u03bf\u03c5 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c3\u03b5 \u03ad\u03bd\u03b1\u03bd \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\n* \u039d\u03b1 \u03b5\u03c0\u03b9\u03bb\u03ad\u03b3\u03bf\u03c5\u03bd \u03c4\u03b7 \u03c3\u03b5\u03b9\u03c1\u03ac \u03bc\u03b5 \u03c4\u03b7\u03bd \u03bf\u03c0\u03bf\u03af\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03bf\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03c3\u03b5 \u03ad\u03bd\u03b1\u03bd \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\n* \u039d\u03b1 \u03b1\u03c0\u03bf\u03c4\u03c1\u03ad\u03c0\u03bf\u03c5\u03bd \u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03bc\u03b9\u03b1\u03c2 \u03b4\u03b9\u03b1\u03c6\u03ae\u03bc\u03b9\u03c3\u03b7\u03c2 \u03c3\u03b5 \u03b1\u03ba\u03b1\u03c4\u03ac\u03bb\u03bb\u03b7\u03bb\u03bf (\u03bc\u03b7 \u03b1\u03c3\u03c6\u03b1\u03bb\u03ad\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd) \u03c3\u03c5\u03bd\u03c4\u03b1\u03ba\u03c4\u03b9\u03ba\u03cc \u03c0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd\n\u039f\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03bf\u03cd\u03bd \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ce\u03bd\u03c4\u03b1\u03c2 \u03b1\u03c5\u03c4\u03ac \u03c4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 (\u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2) \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03bc\u03b5\u03bb\u03bb\u03bf\u03bd\u03c4\u03b9\u03ba\u03ce\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd\n\u03a3\u03b7\u03bc\u03b5\u03af\u03c9\u03c3\u03b7: \u00ab\u039c\u03b7 \u03b1\u03ba\u03c1\u03b9\u03b2\u03ae\u03c2\u00bb \u03c3\u03b7\u03bc\u03b1\u03af\u03bd\u03b5\u03b9 \u03cc\u03c4\u03b9 \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03b5\u03c4\u03b1\u03b9 \u03bc\u03cc\u03bd\u03bf \u03b7 \u03ba\u03b1\u03c4\u03ac \u03c0\u03c1\u03bf\u03c3\u03ad\u03b3\u03b3\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1 \u03c3\u03b5 \u03b1\u03ba\u03c4\u03af\u03bd\u03b1 \u03c4\u03bf\u03c5\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf\u03bd 500 \u03bc\u03ad\u03c4\u03c1\u03c9\u03bd.\n"},"3":{"id":3,"name":"\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03b7\u03b8\u03b5\u03af \u03ad\u03bd\u03b1 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03b3\u03b9\u03b1 \u03b5\u03c3\u03ac\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03b1 \u03b5\u03bd\u03b4\u03b9\u03b1\u03c6\u03ad\u03c1\u03bf\u03bd\u03c4\u03ac \u03c3\u03b1\u03c2, \u03ce\u03c3\u03c4\u03b5 \u03bd\u03b1 \u03c3\u03b1\u03c2 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03c0\u03bf\u03c5 \u03c3\u03b1\u03c2 \u03b1\u03c6\u03bf\u03c1\u03bf\u03cd\u03bd.","descriptionLegal":"\u0393\u03b9\u03b1 \u03bd\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03bf\u03cd\u03bd \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd, \u03bf\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03c3\u03c5\u03bb\u03bb\u03ad\u03b3\u03bf\u03c5\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03c3\u03c7\u03b5\u03c4\u03b9\u03ba\u03ac \u03bc\u03b5 \u03ad\u03bd\u03b1\u03bd \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7, \u03cc\u03c0\u03c9\u03c2 \u03b7 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03ac \u03c4\u03bf\u03c5, \u03c4\u03b1 \u03b5\u03bd\u03b4\u03b9\u03b1\u03c6\u03ad\u03c1\u03bf\u03bd\u03c4\u03ac \u03c4\u03bf\u03c5, \u03b5\u03c0\u03b9\u03c3\u03ba\u03ad\u03c8\u03b5\u03b9\u03c2 \u03c3\u03b5 \u03b9\u03c3\u03c4\u03cc\u03c4\u03bf\u03c0\u03bf\u03c5\u03c2 \u03ae \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ad\u03c2, \u03b4\u03b7\u03bc\u03bf\u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03ad\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03ae \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1 \u03b3\u03b9\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ae \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03c0\u03c1\u03bf\u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5 \u03bd\u03b1 \u03c0\u03b1\u03c1\u03b1\u03b4\u03ce\u03c3\u03bf\u03c5\u03bd \u03bc\u03b9\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03b7 \u03b4\u03b9\u03b1\u03c6\u03ae\u03bc\u03b9\u03c3\u03b7.\n* \u039d\u03b1 \u03c3\u03c5\u03bd\u03b4\u03c5\u03ac\u03b6\u03bf\u03c5\u03bd \u03b1\u03c5\u03c4\u03ad\u03c2 \u03c4\u03b9\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03bc\u03b5 \u03ac\u03bb\u03bb\u03b5\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03c0\u03bf\u03c5 \u03c3\u03c5\u03bb\u03bb\u03ad\u03c7\u03b8\u03b7\u03ba\u03b1\u03bd \u03c0\u03c1\u03bf\u03b7\u03b3\u03bf\u03c5\u03bc\u03ad\u03bd\u03c9\u03c2, \u03b1\u03c0\u03cc \u03b9\u03c3\u03c4\u03cc\u03c4\u03bf\u03c0\u03bf\u03c5\u03c2 \u03ba\u03b1\u03b9 \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ad\u03c2, \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ae \u03c4\u03b7\u03bd \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03b5\u03bd\u03cc\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03b3\u03b9\u03b1 \u03c7\u03c1\u03ae\u03c3\u03b7 \u03c3\u03b5 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03b7 \u03b4\u03b9\u03b1\u03c6\u03ae\u03bc\u03b9\u03c3\u03b7.\n"},"4":{"id":4,"name":"\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03b9\u03c3\u03c4\u03bf\u03cd\u03bd \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03b1\u03bd\u03ac\u03bb\u03bf\u03b3\u03b1 \u03bc\u03b5 \u03c4\u03bf \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03c3\u03b1\u03c2.","descriptionLegal":"\u0393\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03c0\u03b9\u03bb\u03ad\u03b3\u03bf\u03c5\u03bd \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03bf\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03b2\u03b1\u03c3\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c3\u03b5 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03ae \u03c3\u03b5 \u03ac\u03bb\u03bb\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03c4\u03bf\u03c5 \u03b9\u03c3\u03c4\u03bf\u03c1\u03b9\u03ba\u03bf\u03cd, \u03c3\u03c5\u03bc\u03c0\u03b5\u03c1\u03b9\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03bf\u03bc\u03ad\u03bd\u03b7\u03c2 \u03c4\u03b7\u03c2 \u03c0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03b7\u03c2 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2, \u03c4\u03c9\u03bd \u03b5\u03bd\u03b4\u03b9\u03b1\u03c6\u03b5\u03c1\u03cc\u03bd\u03c4\u03c9\u03bd, \u03c4\u03c9\u03bd \u03b5\u03c0\u03b9\u03c3\u03ba\u03ad\u03c8\u03b5\u03c9\u03bd \u03c3\u03b5 \u03b9\u03c3\u03c4\u03cc\u03c4\u03bf\u03c0\u03bf\u03c5\u03c2 \u03ae \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ad\u03c2, \u03c4\u03b7\u03c2 \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1\u03c2 \u03ae \u03c4\u03c9\u03bd \u03b4\u03b7\u03bc\u03bf\u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03ce\u03bd \u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03c9\u03bd \u03c4\u03bf\u03c5 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7.\n"},"5":{"id":5,"name":"\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03b7\u03b8\u03b5\u03af \u03ad\u03bd\u03b1 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03b3\u03b9\u03b1 \u03b5\u03c3\u03ac\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03b1 \u03b5\u03bd\u03b4\u03b9\u03b1\u03c6\u03ad\u03c1\u03bf\u03bd\u03c4\u03ac \u03c3\u03b1\u03c2, \u03ce\u03c3\u03c4\u03b5 \u03bd\u03b1 \u03c3\u03b1\u03c2 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03c0\u03bf\u03c5 \u03c3\u03b1\u03c2 \u03b1\u03c6\u03bf\u03c1\u03ac. \n\u03a3\u03c5\u03bd\u03b4\u03c5\u03ac\u03c3\u03c4\u03b5 \u03b1\u03c5\u03c4\u03ad\u03c2 \u03c4\u03b9\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03bc\u03b5 \u03ac\u03bb\u03bb\u03b5\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03c0\u03bf\u03c5 \u03c3\u03c5\u03bb\u03bb\u03ad\u03c7\u03b8\u03b7\u03ba\u03b1\u03bd \u03c0\u03c1\u03bf\u03b7\u03b3\u03bf\u03c5\u03bc\u03ad\u03bd\u03c9\u03c2, \u03b1\u03c0\u03cc \u03b5\u03c0\u03b9\u03c3\u03ba\u03ad\u03c8\u03b5\u03b9\u03c2 \u03c3\u03b5 \u03b9\u03c3\u03c4\u03cc\u03c4\u03bf\u03c0\u03bf\u03c5\u03c2 \u03ba\u03b1\u03b9 \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ad\u03c2, \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ae \u03c4\u03b7\u03bd \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03b5\u03bd\u03cc\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\n\u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03b3\u03b9\u03b1 \u03c7\u03c1\u03ae\u03c3\u03b7 \u03c3\u03c4\u03bf \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf.\n","descriptionLegal":"\u0393\u03b9\u03b1 \u03bd\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03bf\u03cd\u03bd \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03bf\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03c3\u03c5\u03bb\u03bb\u03ad\u03b3\u03bf\u03c5\u03bd \u03c4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b5\u03bd\u03cc\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7, \u03cc\u03c0\u03c9\u03c2 \u03c4\u03b7 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1, \u03c4\u03b1 \u03b5\u03bd\u03b4\u03b9\u03b1\u03c6\u03ad\u03c1\u03bf\u03bd\u03c4\u03b1, \u03c4\u03b9\u03c2 \u03b5\u03c0\u03b9\u03c3\u03ba\u03ad\u03c8\u03b5\u03b9\u03c2 \u03c3\u03b5 \u03b9\u03c3\u03c4\u03cc\u03c4\u03bf\u03c0\u03bf\u03c5\u03c2 \u03ae \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ad\u03c2, \u03c4\u03b1 \u03b4\u03b7\u03bc\u03bf\u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03ac \u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03b1 \u03ae \u03c4\u03b7\u03bd \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1 \u03c4\u03bf\u03c5, \u03ce\u03c3\u03c4\u03b5 \u03bd\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03bf\u03cd\u03bd \u03ae \u03bd\u03b1 \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03ac\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03b3\u03b9\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf\n* \u039d\u03b1 \u03c3\u03c5\u03bd\u03b4\u03c5\u03ac\u03b6\u03bf\u03c5\u03bd \u03c4\u03b7\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b1 \u03bc\u03b5 \u03ac\u03bb\u03bb\u03b5\u03c2 \u03c0\u03bf\u03c5 \u03c3\u03c5\u03bb\u03bb\u03ad\u03b3\u03b7\u03c3\u03b1\u03bd \u03c0\u03c1\u03c9\u03b8\u03cd\u03c3\u03c4\u03b5\u03c1\u03b1 \u03c3\u03c5\u03bc\u03c0\u03b5\u03c1\u03b9\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c3\u03c4\u03b1\u03c5\u03c1\u03bf\u03cd\u03bc\u03b5\u03bd\u03c9\u03bd sites \u03ba\u03b1\u03b9 \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ce\u03bd, \u03c0\u03c1\u03bf\u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5 \u03bd\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03c3\u03bf\u03c5\u03bd \u03ae \u03bd\u03b1 \u03b4\u03b9\u03b1\u03bc\u03bf\u03c1\u03c6\u03ce\u03c3\u03bf\u03c5\u03bd \u03ad\u03bd\u03b1 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03b3\u03b9\u03b1 \u03c7\u03c1\u03ae\u03c3\u03b7 \u03c3\u03b5 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf. \n"},"6":{"id":6,"name":"\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03b9\u03c3\u03c4\u03b5\u03af \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b1\u03bd\u03ac\u03bb\u03bf\u03b3\u03b1 \u03bc\u03b5 \u03c4\u03bf \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03c3\u03b1\u03c2.","descriptionLegal":"\u0393\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03c0\u03b9\u03bb\u03ad\u03b3\u03bf\u03c5\u03bd \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf, \u03bf\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03b2\u03b1\u03c3\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c3\u03b5 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03ae \u03c3\u03b5 \u03ac\u03bb\u03bb\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03c4\u03bf\u03c5 \u03b9\u03c3\u03c4\u03bf\u03c1\u03b9\u03ba\u03bf\u03cd, \u03cc\u03c0\u03c9\u03c2 \u03c3\u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03b7 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1, \u03c4\u03b1 \u03b5\u03bd\u03b4\u03b9\u03b1\u03c6\u03ad\u03c1\u03bf\u03bd\u03c4\u03b1, \u03c4\u03b9\u03c2 \u03b5\u03c0\u03b9\u03c3\u03ba\u03ad\u03c8\u03b5\u03b9\u03c2 \u03c3\u03b5 \u03b9\u03c3\u03c4\u03cc\u03c4\u03bf\u03c0\u03bf\u03c5\u03c2 \u03ae \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ad\u03c2, \u03c4\u03b7\u03bd \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1 \u03ae \u03c4\u03b1 \u03b4\u03b7\u03bc\u03bf\u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03ac \u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03b1 \u03c4\u03bf\u03c5 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\n"},"7":{"id":7,"name":"\u039c\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd","description":"\u0397 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03ba\u03b1\u03b9 \u03b7 \u03b1\u03c0\u03bf\u03c4\u03b5\u03bb\u03b5\u03c3\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc\u03c4\u03b7\u03c4\u03b1 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03c0\u03bf\u03c5 \u03b2\u03bb\u03ad\u03c0\u03b5\u03c4\u03b5 \u03ae \u03b1\u03c5\u03c4\u03ce\u03bd \u03bc\u03b5 \u03c4\u03b9\u03c2 \u03bf\u03c0\u03bf\u03af\u03b5\u03c2 \u03b1\u03bb\u03bb\u03b7\u03bb\u03b5\u03c0\u03b9\u03b4\u03c1\u03ac\u03c4\u03b5 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03bf\u03cd\u03bd","descriptionLegal":"\u0393\u03b9\u03b1 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03bf\u03cd\u03bd \u03c4\u03b7\u03bd \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd, \u03bf\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03bc\u03b5\u03c4\u03c1\u03bf\u03cd\u03bd \u03b5\u03ac\u03bd \u03ba\u03b1\u03b9 \u03c0\u03ce\u03c2 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03c3\u03c4\u03b7\u03ba\u03b1\u03bd \u03bf\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03c3\u03b5 \u03ad\u03bd\u03b1\u03bd \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7, \u03ba\u03b1\u03b8\u03ce\u03c2 \u03ba\u03b1\u03b9 \u03c0\u03ce\u03c2 \u03b1\u03c5\u03c4\u03cc\u03c2 \u03b1\u03bb\u03bb\u03b7\u03bb\u03b5\u03c0\u03af\u03b4\u03c1\u03b1\u03c3\u03b5 \u03bc\u03b5 \u03b1\u03c5\u03c4\u03ad\u03c2\n* \u039d\u03b1 \u03c0\u03b1\u03c1\u03ad\u03c7\u03bf\u03c5\u03bd \u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ad\u03c2 \u03c3\u03c7\u03b5\u03c4\u03b9\u03ba\u03ac \u03bc\u03b5 \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03c0\u03bf\u03c5 \u03b8\u03b1 \u03c0\u03b5\u03c1\u03b9\u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03bf\u03c5\u03bd \u03c4\u03b7\u03bd \u03b1\u03c0\u03bf\u03c4\u03b5\u03bb\u03b5\u03c3\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc\u03c4\u03b7\u03c4\u03b1 \u03ba\u03b1\u03b9 \u03c4\u03b7\u03bd \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03ae \u03c4\u03bf\u03c5\u03c2\n* \u039d\u03b1 \u03c0\u03b1\u03c1\u03ad\u03c7\u03bf\u03c5\u03bd \u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ad\u03c2 \u03c3\u03c7\u03b5\u03c4\u03b9\u03ba\u03ac \u03bc\u03b5 \u03c4\u03bf\u03c5\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2 \u03c0\u03bf\u03c5 \u03ad\u03c7\u03bf\u03c5\u03bd \u03b1\u03bb\u03bb\u03b7\u03bb\u03b5\u03c0\u03b9\u03b4\u03c1\u03ac\u03c3\u03b5\u03b9 \u03bc\u03b5 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ce\u03bd\u03c4\u03b1\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c0\u03bf\u03c5 \u03c0\u03c1\u03bf\u03ba\u03cd\u03c0\u03c4\u03bf\u03c5\u03bd \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7 \u03b4\u03b9\u03ac\u03c1\u03ba\u03b5\u03b9\u03b1 \u03c4\u03b7\u03c2 \u03b1\u03bb\u03bb\u03b7\u03bb\u03b5\u03c0\u03af\u03b4\u03c1\u03b1\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03bc\u03b5 \u03bc\u03b9\u03b1 \u03c3\u03c5\u03b3\u03ba\u03b5\u03ba\u03c1\u03b9\u03bc\u03ad\u03bd\u03b7 \u03b4\u03b9\u03b1\u03c6\u03ae\u03bc\u03b9\u03c3\u03b7\n* \u039d\u03b1 \u03c0\u03b1\u03c1\u03ad\u03c7\u03bf\u03c5\u03bd \u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ad\u03c2 \u03c3\u03c4\u03bf\u03c5\u03c2 \u03b5\u03ba\u03b4\u03cc\u03c4\u03b5\u03c2 \u03c3\u03c7\u03b5\u03c4\u03b9\u03ba\u03ac \u03bc\u03b5 \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03c0\u03bf\u03c5 \u03c0\u03c1\u03bf\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c3\u03c4\u03bf\u03bd \u03b9\u03c3\u03c4\u03cc\u03c4\u03bf\u03c0\u03cc \u03c4\u03bf\u03c5\u03c2\n* \u039d\u03b1 \u03bc\u03b5\u03c4\u03c1\u03bf\u03cd\u03bd \u03b5\u03ac\u03bd \u03bc\u03b9\u03b1 \u03b4\u03b9\u03b1\u03c6\u03ae\u03bc\u03b9\u03c3\u03b7 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03c3\u03b5 \u03ba\u03b1\u03c4\u03ac\u03bb\u03bb\u03b7\u03bb\u03bf (\u03b1\u03c3\u03c6\u03b1\u03bb\u03ad\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd) \u03c3\u03c5\u03bd\u03c4\u03b1\u03ba\u03c4\u03b9\u03ba\u03cc \u03c0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd\n* \u039d\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b4\u03b9\u03bf\u03c1\u03af\u03b6\u03bf\u03c5\u03bd \u03c4\u03bf \u03c0\u03bf\u03c3\u03bf\u03c3\u03c4\u03cc \u03c4\u03b7\u03c2 \u03b4\u03b9\u03b1\u03c6\u03ae\u03bc\u03b9\u03c3\u03b7\u03c2 \u03c0\u03bf\u03c5 \u03ba\u03b1\u03c4\u03ac\u03c6\u03b5\u03c1\u03b5 \u03bd\u03b1 \u03c0\u03c1\u03bf\u03b2\u03bb\u03b7\u03b8\u03b5\u03af, \u03ba\u03b1\u03b8\u03ce\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03b7 \u03b4\u03b9\u03ac\u03c1\u03ba\u03b5\u03b9\u03b1 \u03c4\u03b7\u03c2 \u03c0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae\u03c2 \u03b1\u03c5\u03c4\u03ae\u03c2 \n\u039f\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03b5\u03c6\u03b1\u03c1\u03bc\u03cc\u03b6\u03bf\u03c5\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc, \u03c0\u03bf\u03c5 \u03c0\u03c1\u03bf\u03ad\u03c1\u03c7\u03bf\u03bd\u03c4\u03b1\u03b9 \u03b1\u03c0\u03cc \u03c0\u03af\u03bd\u03b1\u03ba\u03b5\u03c2 \u03ae \u03c0\u03b1\u03c1\u03b5\u03bc\u03c6\u03b5\u03c1\u03b5\u03af\u03c2 \u03c0\u03b7\u03b3\u03ad\u03c2, \u03c3\u03b5 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd, \u03c7\u03c9\u03c1\u03af\u03c2 \u03bd\u03cc\u03bc\u03b9\u03bc\u03bf \u03bb\u03cc\u03b3\u03bf, \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03c0\u03c1\u03b1\u03b3\u03bc\u03b1\u03c4\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd \u03ad\u03c1\u03b5\u03c5\u03bd\u03b1 \u03b1\u03b3\u03bf\u03c1\u03ac\u03c2 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc (\u03a3\u03ba\u03bf\u03c0\u03cc\u03c2 9)\n"},"8":{"id":8,"name":"\u039c\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7\u03c2 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5","description":"\u0397 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03ba\u03b1\u03b9 \u03b7 \u03b1\u03c0\u03bf\u03c4\u03b5\u03bb\u03b5\u03c3\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc\u03c4\u03b7\u03c4\u03b1 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03c0\u03bf\u03c5 \u03b2\u03bb\u03ad\u03c0\u03b5\u03c4\u03b5 \u03ae \u03b1\u03c5\u03c4\u03bf\u03cd \u03bc\u03b5 \u03c4\u03bf \u03bf\u03c0\u03bf\u03af\u03bf \u03b1\u03bb\u03bb\u03b7\u03bb\u03b5\u03c0\u03b9\u03b4\u03c1\u03ac\u03c4\u03b5 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03bf\u03cd\u03bd.","descriptionLegal":"\u0393\u03b9\u03b1 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03bf\u03cd\u03bd \u03c4\u03b7\u03bd \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03bf\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03bc\u03b5\u03c4\u03c1\u03bf\u03cd\u03bd \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03bd\u03b1\u03c6\u03ad\u03c1\u03bf\u03c5\u03bd \u03c0\u03ce\u03c2 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03c3\u03c4\u03b7\u03ba\u03b5 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03c3\u03c4\u03bf\u03c5\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2, \u03ba\u03b1\u03b8\u03ce\u03c2 \u03ba\u03b1\u03b9 \u03c0\u03ce\u03c2 \u03b1\u03bb\u03bb\u03b7\u03bb\u03b5\u03c0\u03af\u03b4\u03c1\u03b1\u03c3\u03b1\u03bd \u03bc\u03b5 \u03b1\u03c5\u03c4\u03cc\n* \u039d\u03b1 \u03c0\u03b1\u03c1\u03ad\u03c7\u03bf\u03c5\u03bd \u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ad\u03c2, \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ce\u03bd\u03c4\u03b1\u03c2 \u03ac\u03bc\u03b5\u03c3\u03b1 \u03bc\u03b5\u03c4\u03c1\u03ae\u03c3\u03b9\u03bc\u03b1 \u03ae \u03b3\u03bd\u03c9\u03c3\u03c4\u03ac \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c3\u03c7\u03b5\u03c4\u03b9\u03ba\u03ac \u03bc\u03b5 \u03c4\u03bf\u03c5\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2 \u03c0\u03bf\u03c5 \u03b1\u03bb\u03bb\u03b7\u03bb\u03b5\u03c0\u03af\u03b4\u03c1\u03b1\u03c3\u03b1\u03bd \u03bc\u03b5 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf\n\u039f\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03bc\u03b5\u03c4\u03c1\u03bf\u03cd\u03bd \u03b5\u03ac\u03bd \u03ba\u03b1\u03b9 \u03c0\u03ce\u03c2 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03c3\u03c4\u03b7\u03ba\u03b1\u03bd \u03bf\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 (\u03c3\u03c5\u03bc\u03c0\u03b5\u03c1\u03b9\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c4\u03c9\u03bd native \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd) \u03c3\u03b5 \u03ad\u03bd\u03b1\u03bd \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7, \u03ba\u03b1\u03b8\u03ce\u03c2 \u03ba\u03b1\u03b9 \u03c0\u03ce\u03c2 \u03b1\u03c5\u03c4\u03cc\u03c2 \u03b1\u03bb\u03bb\u03b7\u03bb\u03b5\u03c0\u03af\u03b4\u03c1\u03b1\u03c3\u03b5 \u03bc\u03b5 \u03b1\u03c5\u03c4\u03ad\u03c2.\n* \u039d\u03b1 \u03b5\u03c6\u03b1\u03c1\u03bc\u03cc\u03b6\u03bf\u03c5\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc, \u03c0\u03bf\u03c5 \u03c0\u03c1\u03bf\u03ad\u03c1\u03c7\u03bf\u03bd\u03c4\u03b1\u03b9 \u03b1\u03c0\u03cc \u03c0\u03af\u03bd\u03b1\u03ba\u03b5\u03c2 \u03ae \u03c0\u03b1\u03c1\u03b5\u03bc\u03c6\u03b5\u03c1\u03b5\u03af\u03c2 \u03c0\u03b7\u03b3\u03ad\u03c2, \u03c3\u03b5 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd, \u03c7\u03c9\u03c1\u03af\u03c2 \u03bd\u03cc\u03bc\u03b9\u03bc\u03bf \u03bb\u03cc\u03b3\u03bf, \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03c0\u03c1\u03b1\u03b3\u03bc\u03b1\u03c4\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd \u03ad\u03c1\u03b5\u03c5\u03bd\u03b1 \u03b1\u03b3\u03bf\u03c1\u03ac\u03c2 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc (\u03a3\u03ba\u03bf\u03c0\u03cc\u03c2 9)\n"},"9":{"id":9,"name":"\u03a0\u03c1\u03b1\u03b3\u03bc\u03b1\u03c4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03ad\u03c1\u03b5\u03c5\u03bd\u03b1\u03c2 \u03b1\u03b3\u03bf\u03c1\u03ac\u03c2 \u03ba\u03b1\u03b9 \u03ac\u03bd\u03c4\u03bb\u03b7\u03c3\u03b7 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03b9\u03ce\u03bd \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03b5\u03af \u03ad\u03c1\u03b5\u03c5\u03bd\u03b1 \u03b1\u03b3\u03bf\u03c1\u03ac\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ac\u03bd\u03c4\u03bb\u03b7\u03c3\u03b7 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03b9\u03ce\u03bd \u03c3\u03c7\u03b5\u03c4\u03b9\u03ba\u03ac \u03bc\u03b5 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03c0\u03b9\u03c3\u03ba\u03ad\u03c0\u03c4\u03bf\u03bd\u03c4\u03b1\u03b9 \u03b9\u03c3\u03c4\u03cc\u03c4\u03bf\u03c0\u03bf\u03c5\u03c2 \u03ae \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ad\u03c2 \u03ba\u03b1\u03b9 \u03b2\u03bb\u03ad\u03c0\u03bf\u03c5\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2.","descriptionLegal":"\u0393\u03b9\u03b1 \u03bd\u03b1 \u03c0\u03c1\u03b1\u03b3\u03bc\u03b1\u03c4\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd \u03ad\u03c1\u03b5\u03c5\u03bd\u03b5\u03c2 \u03b1\u03b3\u03bf\u03c1\u03ac\u03c2 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc, \u03bf\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03c0\u03b1\u03c1\u03ad\u03c7\u03bf\u03c5\u03bd \u03c3\u03c5\u03b3\u03ba\u03b5\u03bd\u03c4\u03c1\u03c9\u03c4\u03b9\u03ba\u03ad\u03c2 \u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ad\u03c2 \u03c3\u03c4\u03bf\u03c5\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03b9\u03b6\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5\u03c2 \u03ae \u03c4\u03bf\u03c5\u03c2 \u03b1\u03bd\u03c4\u03b9\u03c0\u03c1\u03bf\u03c3\u03ce\u03c0\u03bf\u03c5\u03c2 \u03c4\u03bf\u03c5\u03c2 \u03c3\u03c7\u03b5\u03c4\u03b9\u03ba\u03ac \u03bc\u03b5 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03c0\u03c1\u03bf\u03c3\u03ad\u03b3\u03b3\u03b9\u03c3\u03b1\u03bd \u03bf\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03c4\u03bf\u03c5\u03c2, \u03bc\u03ad\u03c3\u03c9 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03b9\u03ce\u03bd \u03c0\u03bf\u03c5 \u03c0\u03c1\u03bf\u03ad\u03c1\u03c7\u03bf\u03bd\u03c4\u03b1\u03b9 \u03b1\u03c0\u03cc \u03c0\u03af\u03bd\u03b1\u03ba\u03b5\u03c2 \u03ae \u03c0\u03b1\u03c1\u03b5\u03bc\u03c6\u03b5\u03c1\u03b5\u03af\u03c2 \u03c0\u03b7\u03b3\u03ad\u03c2.\n* \u039d\u03b1 \u03c0\u03b1\u03c1\u03ad\u03c7\u03bf\u03c5\u03bd \u03c3\u03c5\u03b3\u03ba\u03b5\u03bd\u03c4\u03c1\u03c9\u03c4\u03b9\u03ba\u03ad\u03c2 \u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ad\u03c2 \u03c3\u03c4\u03bf\u03c5\u03c2 \u03b5\u03ba\u03b4\u03cc\u03c4\u03b5\u03c2 \u03c3\u03c7\u03b5\u03c4\u03b9\u03ba\u03ac \u03bc\u03b5 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c3\u03c4\u03b1 \u03bf\u03c0\u03bf\u03af\u03b1 \u03c0\u03c1\u03bf\u03b2\u03bb\u03ae\u03b8\u03b7\u03ba\u03b5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf/\u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ae \u03c4\u03b1 \u03bf\u03c0\u03bf\u03af\u03b1 \u03b1\u03bb\u03bb\u03b7\u03bb\u03b5\u03c0\u03af\u03b4\u03c1\u03b1\u03c3\u03b1\u03bd \u03bc\u03b5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf/\u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03c4\u03bf\u03c5 \u03b9\u03c3\u03c4\u03cc\u03c4\u03bf\u03c0\u03bf\u03cd \u03c4\u03bf\u03c5\u03c2, \u03b1\u03be\u03b9\u03bf\u03c0\u03bf\u03b9\u03ce\u03bd\u03c4\u03b1\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03c0\u03bf\u03c5 \u03c0\u03c1\u03bf\u03ad\u03c1\u03c7\u03bf\u03bd\u03c4\u03b1\u03b9 \u03b1\u03c0\u03cc \u03c0\u03af\u03bd\u03b1\u03ba\u03b5\u03c2 \u03ae \u03c0\u03b1\u03c1\u03b5\u03bc\u03c6\u03b5\u03c1\u03b5\u03af\u03c2 \u03c0\u03b7\u03b3\u03ad\u03c2. \n* \u039d\u03b1 \u03c3\u03c5\u03bd\u03b4\u03ad\u03bf\u03c5\u03bd \u03bc\u03b7 \u03b7\u03bb\u03b5\u03ba\u03c4\u03c1\u03bf\u03bd\u03b9\u03ba\u03ac \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03bc\u03b5 \u03ad\u03bd\u03b1\u03bd \u03b4\u03b9\u03b1\u03b4\u03b9\u03ba\u03c4\u03c5\u03b1\u03ba\u03cc \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03b3\u03b9\u03b1 \u03c3\u03ba\u03bf\u03c0\u03bf\u03cd\u03c2 \u03ad\u03c1\u03b5\u03c5\u03bd\u03b1\u03c2 \u03b1\u03b3\u03bf\u03c1\u03ac\u03c2 \u03ba\u03b1\u03b9 \u03ac\u03bd\u03c4\u03bb\u03b7\u03c3\u03b7 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03b9\u03ce\u03bd \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc, \u03b5\u03ac\u03bd \u03bf\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03ad\u03c7\u03bf\u03c5\u03bd \u03b4\u03b7\u03bb\u03ce\u03c3\u03b5\u03b9 \u03cc\u03c4\u03b9 \u03b1\u03bd\u03c4\u03b9\u03c3\u03c4\u03bf\u03b9\u03c7\u03af\u03b6\u03bf\u03c5\u03bd \u03ba\u03b1\u03b9 \u03c3\u03c5\u03bd\u03b4\u03c5\u03ac\u03b6\u03bf\u03c5\u03bd \u03bc\u03b7 \u03b7\u03bb\u03b5\u03ba\u03c4\u03c1\u03bf\u03bd\u03b9\u03ba\u03ad\u03c2 \u03c0\u03b7\u03b3\u03ad\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd (\u03a7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc 1)\n\u039f\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd: \n* \u039d\u03b1 \u03bc\u03b5\u03c4\u03c1\u03bf\u03cd\u03bd \u03c4\u03b7\u03bd \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03ba\u03b1\u03b9 \u03c4\u03b7\u03bd \u03b1\u03c0\u03bf\u03c4\u03b5\u03bb\u03b5\u03c3\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc\u03c4\u03b7\u03c4\u03b1 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03c0\u03bf\u03c5 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03c3\u03c4\u03b7\u03ba\u03b1\u03bd \u03c3\u03b5 \u03ad\u03bd\u03b1\u03bd \u03c3\u03c5\u03b3\u03ba\u03b5\u03ba\u03c1\u03b9\u03bc\u03ad\u03bd\u03bf \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03ae \u03c0\u03bf\u03c5 \u03b1\u03bb\u03bb\u03b7\u03bb\u03b5\u03c0\u03af\u03b4\u03c1\u03b1\u03c3\u03b5 \u03bc\u03b5 \u03b1\u03c5\u03c4\u03ac, \u03c7\u03c9\u03c1\u03af\u03c2 \u03bd\u03cc\u03bc\u03b9\u03bc\u03bf \u03bb\u03cc\u03b3\u03bf, \u03bc\u03b5 \u03c3\u03ba\u03bf\u03c0\u03cc \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03bf\u03cd\u03bd \u03c4\u03b7\u03bd \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd.\n* \u039d\u03b1 \u03bc\u03b5\u03c4\u03c1\u03bf\u03cd\u03bd \u03c0\u03bf\u03b9\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03c3\u03c4\u03b7\u03ba\u03b5 \u03c3\u03b5 \u03ad\u03bd\u03b1\u03bd \u03c3\u03c5\u03b3\u03ba\u03b5\u03ba\u03c1\u03b9\u03bc\u03ad\u03bd\u03bf \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03ba\u03b1\u03b9 \u03c0\u03ce\u03c2 \u03b1\u03c5\u03c4\u03cc\u03c2 \u03b1\u03bb\u03bb\u03b7\u03bb\u03b5\u03c0\u03af\u03b4\u03c1\u03b1\u03c3\u03b5 \u03bc\u03b5 \u03b1\u03c5\u03c4\u03cc, \u03c7\u03c9\u03c1\u03af\u03c2 \u03bd\u03cc\u03bc\u03b9\u03bc\u03bf \u03bb\u03cc\u03b3\u03bf, \u03bc\u03b5 \u03c3\u03ba\u03bf\u03c0\u03cc \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03bf\u03cd\u03bd \u03c4\u03b7\u03bd \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \n"},"10":{"id":10,"name":"\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ba\u03b1\u03b9 \u03b2\u03b5\u03bb\u03c4\u03af\u03c9\u03c3\u03b7 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd","description":"\u03a4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c3\u03b1\u03c2 \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b2\u03b5\u03bb\u03c4\u03af\u03c9\u03c3\u03b7 \u03c4\u03c9\u03bd \u03c5\u03c0\u03b1\u03c1\u03c7\u03cc\u03bd\u03c4\u03c9\u03bd \u03c3\u03c5\u03c3\u03c4\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03ba\u03b1\u03b9 \u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03b9\u03ba\u03bf\u03cd, \u03ba\u03b1\u03b8\u03ce\u03c2 \u03ba\u03b1\u03b9 \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03bd\u03ad\u03c9\u03bd \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd.","descriptionLegal":"\u0393\u03b9\u03b1 \u03bd\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03bf\u03cd\u03bd \u03bd\u03ad\u03b1 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03b1 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b2\u03b5\u03bb\u03c4\u03b9\u03ce\u03bd\u03bf\u03c5\u03bd \u03c4\u03b1 \u03c5\u03c0\u03ac\u03c1\u03c7\u03bf\u03bd\u03c4\u03b1, \u03bf\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b2\u03b5\u03bb\u03c4\u03b9\u03ce\u03bd\u03bf\u03c5\u03bd \u03c4\u03b1 \u03c5\u03c0\u03ac\u03c1\u03c7\u03bf\u03bd\u03c4\u03b1 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03b1 \u03c4\u03bf\u03c5\u03c2 \u03bc\u03b5 \u03bd\u03ad\u03b1 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03bf\u03cd\u03bd \u03ba\u03b1\u03b9\u03bd\u03bf\u03cd\u03c1\u03b3\u03b9\u03b1 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03b1\n* \u039d\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03bf\u03cd\u03bd \u03bd\u03ad\u03b1 \u03bc\u03bf\u03bd\u03c4\u03ad\u03bb\u03b1 \u03ba\u03b1\u03b9 \u03b1\u03bb\u03b3\u03cc\u03c1\u03b9\u03b8\u03bc\u03bf\u03c5\u03c2 \u03bc\u03ad\u03c3\u03c9 \u03bc\u03b7\u03c7\u03b1\u03bd\u03b9\u03ba\u03ae\u03c2 \u03bc\u03ac\u03b8\u03b7\u03c3\u03b7\u03c2\n\u039f\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03b4\u03b9\u03b5\u03be\u03ac\u03b3\u03bf\u03c5\u03bd \u03b3\u03b9\u03b1 \u03b1\u03c5\u03c4\u03cc\u03bd \u03c4\u03bf\u03bd \u03c3\u03ba\u03bf\u03c0\u03cc \u03ac\u03bb\u03bb\u03b5\u03c2 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2 \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c0\u03bf\u03c5 \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03bf\u03bd\u03c4\u03b1\u03b9 \u03b3\u03b9\u03b1 \u03b4\u03b9\u03b1\u03c6\u03bf\u03c1\u03b5\u03c4\u03b9\u03ba\u03cc \u03c3\u03ba\u03bf\u03c0\u03cc\n"}},"specialPurposes":{"1":{"id":1,"name":"\u0395\u03be\u03b1\u03c3\u03c6\u03ac\u03bb\u03b9\u03c3\u03b7 \u03b1\u03c3\u03c6\u03ac\u03bb\u03b5\u03b9\u03b1\u03c2, \u03c0\u03c1\u03cc\u03bb\u03b7\u03c8\u03b7 \u03b1\u03c0\u03ac\u03c4\u03b7\u03c2 \u03ba\u03b1\u03b9 \u03b5\u03bd\u03c4\u03bf\u03c0\u03b9\u03c3\u03bc\u03cc\u03c2 \u03c3\u03c6\u03b1\u03bb\u03bc\u03ac\u03c4\u03c9\u03bd","description":"\u03a4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c3\u03b1\u03c2 \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03c0\u03b1\u03c1\u03b1\u03ba\u03bf\u03bb\u03bf\u03cd\u03b8\u03b7\u03c3\u03b7 \u03ba\u03b1\u03b9 \u03c0\u03c1\u03cc\u03bb\u03b7\u03c8\u03b7 \u03c0\u03b1\u03c1\u03ac\u03bd\u03bf\u03bc\u03b7\u03c2 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2, \u03ba\u03b1\u03b8\u03ce\u03c2 \u03ba\u03b1\u03b9 \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b4\u03b9\u03b1\u03c3\u03c6\u03ac\u03bb\u03b9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03bf\u03c1\u03b8\u03ae\u03c2 \u03ba\u03b1\u03b9 \u03b1\u03c3\u03c6\u03b1\u03bb\u03bf\u03cd\u03c2 \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03af\u03b1\u03c2 \u03c4\u03c9\u03bd \u03c3\u03c5\u03c3\u03c4\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03b4\u03b9\u03ba\u03b1\u03c3\u03b9\u03ce\u03bd.","descriptionLegal":"\u0393\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c3\u03c6\u03b1\u03bb\u03af\u03b6\u03bf\u03c5\u03bd \u03c4\u03b7\u03bd \u03b1\u03c3\u03c6\u03ac\u03bb\u03b5\u03b9\u03b1, \u03bd\u03b1 \u03c0\u03c1\u03bf\u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03bf\u03c5\u03bd \u03c4\u03b9\u03c2 \u03b1\u03c0\u03ac\u03c4\u03b5\u03c2 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03bd\u03c4\u03bf\u03c0\u03af\u03b6\u03bf\u03c5\u03bd \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1\u03c4\u03b1, \u03bf\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03b4\u03b9\u03b1\u03c3\u03c6\u03b1\u03bb\u03af\u03b6\u03bf\u03c5\u03bd \u03cc\u03c4\u03b9 \u03c4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b4\u03b9\u03b1\u03b2\u03b9\u03b2\u03ac\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03bc\u03b5 \u03b1\u03c3\u03c6\u03ac\u03bb\u03b5\u03b9\u03b1 \n* \u039d\u03b1 \u03b5\u03bd\u03c4\u03bf\u03c0\u03af\u03b6\u03bf\u03c5\u03bd \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03c4\u03c1\u03ad\u03c0\u03bf\u03c5\u03bd \u03ba\u03b1\u03ba\u03cc\u03b2\u03bf\u03c5\u03bb\u03b5\u03c2, \u03b4\u03cc\u03bb\u03b9\u03b5\u03c2, \u03bc\u03b7 \u03ad\u03b3\u03ba\u03c5\u03c1\u03b5\u03c2 \u03ba\u03b1\u03b9 \u03c0\u03b1\u03c1\u03ac\u03bd\u03bf\u03bc\u03b5\u03c2 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b5\u03c2.\n* \u039d\u03b1 \u03c6\u03c1\u03bf\u03bd\u03c4\u03af\u03b6\u03bf\u03c5\u03bd \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03c3\u03c9\u03c3\u03c4\u03ae \u03ba\u03b1\u03b9 \u03b1\u03c0\u03bf\u03c4\u03b5\u03bb\u03b5\u03c3\u03bc\u03b1\u03c4\u03b9\u03ba\u03ae \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c4\u03c9\u03bd \u03c3\u03c5\u03c3\u03c4\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03b4\u03b9\u03ba\u03b1\u03c3\u03b9\u03ce\u03bd, \u03c3\u03c5\u03bc\u03c0\u03b5\u03c1\u03b9\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03bf\u03bc\u03ad\u03bd\u03b7\u03c2 \u03c4\u03b7\u03c2 \u03c0\u03b1\u03c1\u03b1\u03ba\u03bf\u03bb\u03bf\u03cd\u03b8\u03b7\u03c3\u03b7\u03c2 \u03ba\u03b1\u03b9 \u03b5\u03bd\u03af\u03c3\u03c7\u03c5\u03c3\u03b7\u03c2 \u03c4\u03b7\u03c2 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7\u03c2 \u03c4\u03c9\u03bd \u03c3\u03c5\u03c3\u03c4\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03b4\u03b9\u03ba\u03b1\u03c3\u03b9\u03ce\u03bd \u03c0\u03bf\u03c5 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd\u03c4\u03b1\u03b9 \u03b3\u03b9\u03b1 \u03b5\u03c0\u03b9\u03c4\u03c1\u03b5\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5\u03c2 \u03c3\u03ba\u03bf\u03c0\u03bf\u03cd\u03c2\n\u039f\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03b4\u03b9\u03b5\u03be\u03ac\u03b3\u03bf\u03c5\u03bd \u03b3\u03b9\u03b1 \u03b1\u03c5\u03c4\u03cc\u03bd \u03c4\u03bf\u03bd \u03c3\u03ba\u03bf\u03c0\u03cc \u03ac\u03bb\u03bb\u03b5\u03c2 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2 \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c0\u03bf\u03c5 \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03bf\u03bd\u03c4\u03b1\u03b9 \u03b3\u03b9\u03b1 \u03b4\u03b9\u03b1\u03c6\u03bf\u03c1\u03b5\u03c4\u03b9\u03ba\u03cc \u03c3\u03ba\u03bf\u03c0\u03cc.\n\u03a3\u03b7\u03bc\u03b5\u03af\u03c9\u03c3\u03b7: \u03a4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c0\u03bf\u03c5 \u03c3\u03c5\u03bb\u03bb\u03ad\u03b3\u03bf\u03bd\u03c4\u03b1\u03b9 \u03ba\u03b1\u03b9 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd\u03c4\u03b1\u03b9 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03b1\u03c3\u03c6\u03ac\u03bb\u03b5\u03b9\u03b1, \u03c4\u03b7\u03bd \u03c0\u03c1\u03cc\u03bb\u03b7\u03c8\u03b7 \u03c4\u03b7\u03c2 \u03b1\u03c0\u03ac\u03c4\u03b7\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf\u03bd \u03b5\u03bd\u03c4\u03bf\u03c0\u03b9\u03c3\u03bc\u03cc \u03ba\u03b1\u03b9 \u03b1\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03c3\u03c6\u03b1\u03bb\u03bc\u03ac\u03c4\u03c9\u03bd \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u03c5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03c4\u03ae \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c0\u03b5\u03c1\u03b9\u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03bf\u03c5\u03bd \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2 \u03c0\u03bf\u03c5 \u03b1\u03c0\u03bf\u03c3\u03c4\u03ad\u03bb\u03bb\u03bf\u03bd\u03c4\u03b1\u03b9 \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b1 \u03b3\u03b9\u03b1 \u03b1\u03bd\u03b1\u03b3\u03bd\u03ce\u03c1\u03b9\u03c3\u03b7, \u03b1\u03ba\u03c1\u03b9\u03b2\u03ae \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b5\u03c9\u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03ae\u03c2 \u03ba\u03b1\u03c4\u03b1\u03bd\u03bf\u03bc\u03ae\u03c2 \u03ba\u03b1\u03b9 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c0\u03bf\u03c5 \u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03bf\u03bd\u03c4\u03b1\u03b9 \u03bc\u03b5 \u03b5\u03bd\u03b5\u03c1\u03b3\u03ae \u03c3\u03ac\u03c1\u03c9\u03c3\u03b7 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ce\u03bd \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2 \u03b3\u03b9\u03b1 \u03b1\u03bd\u03b1\u03b3\u03bd\u03ce\u03c1\u03b9\u03c3\u03b7 \u03c7\u03c9\u03c1\u03af\u03c2 \u03be\u03b5\u03c7\u03c9\u03c1\u03b9\u03c3\u03c4\u03ae \u03b1\u03c0\u03bf\u03ba\u03ac\u03bb\u03c5\u03c8\u03b7 \u03ae /opt in.\n"},"2":{"id":2,"name":"\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5","description":"\u0397 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae \u03c3\u03b1\u03c2 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03b5\u03b9 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03c3\u03c4\u03ad\u03bb\u03bd\u03b5\u03b9 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c0\u03bf\u03c5 \u03c3\u03b1\u03c2 \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03bf\u03c5\u03bd \u03bd\u03b1 \u03b2\u03bb\u03ad\u03c0\u03b5\u03c4\u03b5 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03bb\u03bb\u03b7\u03bb\u03b5\u03c0\u03b9\u03b4\u03c1\u03ac\u03c4\u03b5 \u03bc\u03b5 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf.","descriptionLegal":"\u0393\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03b6\u03bf\u03c5\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03bd\u03c4\u03b1\u03c0\u03bf\u03ba\u03c1\u03af\u03bd\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c3\u03b5 \u03c4\u03b5\u03c7\u03bd\u03b9\u03ba\u03ac \u03b1\u03b9\u03c4\u03ae\u03bc\u03b1\u03c4\u03b1, \u03bf\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd \u03c4\u03b7 \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 IP \u03b5\u03bd\u03cc\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03c3\u03bf\u03c5\u03bd \u03bc\u03b9\u03b1 \u03b4\u03b9\u03b1\u03c6\u03ae\u03bc\u03b9\u03c3\u03b7 \u03bc\u03ad\u03c3\u03c9 \u03b4\u03b9\u03b1\u03b4\u03b9\u03ba\u03c4\u03cd\u03bf\u03c5\n* \u039d\u03b1 \u03b1\u03c0\u03b1\u03bd\u03c4\u03bf\u03cd\u03bd \u03c3\u03c4\u03b7\u03bd \u03b1\u03bb\u03bb\u03b7\u03bb\u03b5\u03c0\u03af\u03b4\u03c1\u03b1\u03c3\u03b7 \u03b5\u03bd\u03cc\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03bc\u03b5 \u03bc\u03b9\u03b1 \u03b4\u03b9\u03b1\u03c6\u03ae\u03bc\u03b9\u03c3\u03b7 \u03c3\u03c4\u03ad\u03bb\u03bd\u03bf\u03bd\u03c4\u03ac\u03c2 \u03c4\u03bf\u03bd \u03c3\u03b5 \u03bc\u03b9\u03b1 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1 \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd\n* \u039d\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd \u03c4\u03b7 \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 IP \u03b5\u03bd\u03cc\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03c3\u03bf\u03c5\u03bd \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03bc\u03ad\u03c3\u03c9 \u03b4\u03b9\u03b1\u03b4\u03b9\u03ba\u03c4\u03cd\u03bf\u03c5\n* \u039d\u03b1 \u03b1\u03c0\u03b1\u03bd\u03c4\u03bf\u03cd\u03bd \u03c3\u03c4\u03b7\u03bd \u03b1\u03bb\u03bb\u03b7\u03bb\u03b5\u03c0\u03af\u03b4\u03c1\u03b1\u03c3\u03b7 \u03b5\u03bd\u03cc\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03bc\u03b5 \u03c3\u03c5\u03b3\u03ba\u03b5\u03ba\u03c1\u03b9\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03c3\u03c4\u03ad\u03bb\u03bd\u03bf\u03bd\u03c4\u03ac\u03c2 \u03c4\u03bf\u03bd \u03c3\u03b5 \u03bc\u03b9\u03b1 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1 \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd\n* \u039d\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c3\u03c7\u03b5\u03c4\u03b9\u03ba\u03ac \u03bc\u03b5 \u03c4\u03bf\u03bd \u03c4\u03cd\u03c0\u03bf \u03c4\u03b7\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03b7\u03bd \u03b9\u03ba\u03b1\u03bd\u03cc\u03c4\u03b7\u03c4\u03ac \u03c4\u03b7\u03c2 \u03bd\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03b6\u03b5\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ae \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf (\u03c0.\u03c7. \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03c0\u03c1\u03bf\u03b2\u03ac\u03bb\u03bf\u03c5\u03bd \u03c4\u03bf \u03ba\u03b1\u03c4\u03ac\u03bb\u03bb\u03b7\u03bb\u03bf \u03bc\u03ad\u03b3\u03b5\u03b8\u03bf\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03b9\u03c3\u03c4\u03b9\u03ba\u03bf\u03cd \u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ae \u03c4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03c4\u03bf\u03c5 \u03b2\u03af\u03bd\u03c4\u03b5\u03bf \u03c3\u03b5 \u03bc\u03bf\u03c1\u03c6\u03ae \u03c0\u03bf\u03c5 \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03b1\u03c0\u03cc \u03c4\u03b7 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae)\n\u039f\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03b4\u03b9\u03b5\u03be\u03ac\u03b3\u03bf\u03c5\u03bd \u03b3\u03b9\u03b1 \u03b1\u03c5\u03c4\u03cc\u03bd \u03c4\u03bf\u03bd \u03c3\u03ba\u03bf\u03c0\u03cc \u03ac\u03bb\u03bb\u03b5\u03c2 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2 \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c0\u03bf\u03c5 \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03bf\u03bd\u03c4\u03b1\u03b9 \u03b3\u03b9\u03b1 \u03b4\u03b9\u03b1\u03c6\u03bf\u03c1\u03b5\u03c4\u03b9\u03ba\u03cc \u03c3\u03ba\u03bf\u03c0\u03cc\n"}},"features":{"1":{"id":1,"name":"\u0391\u03bd\u03c4\u03b9\u03c3\u03c4\u03bf\u03b9\u03c7\u03ae\u03c3\u03c4\u03b5 \u03ba\u03b1\u03b9 \u03c4\u03b1\u03b9\u03c1\u03b9\u03ac\u03be\u03c4\u03b5 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 offline \u03c0\u03b7\u03b3\u03ce\u03bd","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c3\u03c5\u03bd\u03b4\u03c5\u03b1\u03c3\u03c4\u03bf\u03cd\u03bd \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b1\u03c0\u03cc \u03bc\u03b7 \u03b7\u03bb\u03b5\u03ba\u03c4\u03c1\u03bf\u03bd\u03b9\u03ba\u03ad\u03c2 \u03c0\u03b7\u03b3\u03ad\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03bc\u03b5 \u03c4\u03b7 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03ac \u03c3\u03b1\u03c2 \u03c3\u03c4\u03bf \u03b4\u03b9\u03b1\u03b4\u03af\u03ba\u03c4\u03c5\u03bf \u03c0\u03c1\u03bf\u03c2 \u03c5\u03c0\u03bf\u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7 \u03b5\u03bd\u03cc\u03c2 \u03ae \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03c9\u03bd \u03c3\u03ba\u03bf\u03c0\u03ce\u03bd.","descriptionLegal":"\u039f\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd: \n* \u039d\u03b1 \u03c3\u03c5\u03bd\u03b4\u03c5\u03ac\u03b6\u03bf\u03c5\u03bd \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c0\u03bf\u03c5 \u03b1\u03c0\u03bf\u03ba\u03c4\u03ae\u03b8\u03b7\u03ba\u03b1\u03bd \u03b5\u03ba\u03c4\u03cc\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7\u03c2 \u03bc\u03b5 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c0\u03bf\u03c5 \u03c3\u03c5\u03bb\u03bb\u03ad\u03c7\u03b8\u03b7\u03ba\u03b1\u03bd \u03b7\u03bb\u03b5\u03ba\u03c4\u03c1\u03bf\u03bd\u03b9\u03ba\u03ac \u03c0\u03c1\u03bf\u03c2 \u03c5\u03c0\u03bf\u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7 \u03b5\u03bd\u03cc\u03c2 \u03ae \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03c9\u03bd \u03c3\u03ba\u03bf\u03c0\u03ce\u03bd \u03ae \u03b5\u03b9\u03b4\u03b9\u03ba\u03ce\u03bd \u03c3\u03ba\u03bf\u03c0\u03ce\u03bd\n"},"2":{"id":2,"name":"\u03a3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03bf\u03c1\u03b5\u03c4\u03b9\u03ba\u03ce\u03bd \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ce\u03bd","description":"\u0394\u03b9\u03b1\u03c6\u03bf\u03c1\u03b5\u03c4\u03b9\u03ba\u03ad\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ad\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03c5\u03bd\u03b1\u03c4\u03cc\u03bd \u03bd\u03b1 \u03ba\u03b1\u03b8\u03bf\u03c1\u03b9\u03c3\u03c4\u03bf\u03cd\u03bd \u03cc\u03c4\u03b9 \u03b1\u03bd\u03ae\u03ba\u03bf\u03c5\u03bd \u03c3\u03b5 \u03b5\u03c3\u03ac\u03c2 \u03ae \u03c4\u03bf \u03bd\u03bf\u03b9\u03ba\u03bf\u03ba\u03c5\u03c1\u03b9\u03cc \u03c3\u03b1\u03c2 \u03bc\u03b5 \u03c3\u03c4\u03b7 \u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7 \u03b5\u03bd\u03cc\u03c2 \u03ae \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03bf\u03c4\u03ad\u03c1\u03c9\u03bd \u03c3\u03ba\u03bf\u03c0\u03ce\u03bd","descriptionLegal":"\u039f\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03c3\u03c5\u03bc\u03c0\u03b5\u03c1\u03b1\u03af\u03bd\u03bf\u03c5\u03bd \u03cc\u03c4\u03b9 \u03b4\u03cd\u03bf \u03ae \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b5\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ad\u03c2 \u03b1\u03bd\u03ae\u03ba\u03bf\u03c5\u03bd \u03c3\u03c4\u03bf\u03bd \u03af\u03b4\u03b9\u03bf \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03ae \u03c4\u03bf \u03af\u03b4\u03b9\u03bf \u03bd\u03bf\u03b9\u03ba\u03bf\u03ba\u03c5\u03c1\u03b9\u03cc\n* \u039d\u03b1 \u03c0\u03b9\u03b8\u03b1\u03bd\u03bf\u03bb\u03bf\u03b3\u03bf\u03cd\u03bd \u03cc\u03c4\u03b9 \u03b4\u03cd\u03bf \u03ae \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b5\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ad\u03c2 \u03b1\u03bd\u03ae\u03ba\u03bf\u03c5\u03bd \u03c3\u03c4\u03bf\u03bd \u03af\u03b4\u03b9\u03bf \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03ae \u03c4\u03bf \u03af\u03b4\u03b9\u03bf \u03bd\u03bf\u03b9\u03ba\u03bf\u03ba\u03c5\u03c1\u03b9\u03cc\n* \u039d\u03b1 \u03c3\u03b1\u03c1\u03ce\u03bd\u03bf\u03c5\u03bd \u03b5\u03bd\u03b5\u03c1\u03b3\u03ac \u03c4\u03b1 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03bc\u03b9\u03b1\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b1\u03bd\u03b1\u03b3\u03bd\u03c9\u03c1\u03af\u03b6\u03bf\u03c5\u03bd \u03c4\u03b7\u03bd \u03c4\u03b1\u03c5\u03c4\u03cc\u03c4\u03b7\u03c4\u03ac \u03c4\u03b7\u03c2 \u03bc\u03b5 \u03b1\u03ba\u03c1\u03af\u03b2\u03b5\u03b9\u03b1 \u03ae \u03ba\u03b1\u03c4\u03ac \u03c0\u03c1\u03bf\u03c3\u03ad\u03b3\u03b3\u03b9\u03c3\u03b7, \u03c3\u03b5 \u03c0\u03b5\u03c1\u03af\u03c0\u03c4\u03c9\u03c3\u03b7 \u03c0\u03bf\u03c5 \u03bf\u03b9 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2 \u03c4\u03bf\u03c5\u03c2 \u03ad\u03c7\u03bf\u03c5\u03bd \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c8\u03b5\u03b9 \u03c4\u03b7 \u03b4\u03b9\u03b1\u03b4\u03b9\u03ba\u03b1\u03c3\u03af\u03b1 \u03b1\u03c5\u03c4\u03ae (\u0395\u03b9\u03b4\u03b9\u03ba\u03cc \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc 2)\n"},"3":{"id":3,"name":"\u039b\u03ae\u03c8\u03b7 \u03ba\u03b1\u03b9 \u03c7\u03c1\u03ae\u03c3\u03b7 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ce\u03bd \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ce\u03bd \u03c0\u03bf\u03c5 \u03b1\u03c0\u03b5\u03c3\u03c4\u03ac\u03bb\u03b7\u03c3\u03b1\u03bd \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b1\u03c5\u03c4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7","description":"\u0397 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae \u03c3\u03b1\u03c2 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b4\u03b9\u03b1\u03ba\u03c1\u03af\u03bd\u03b5\u03c4\u03b1\u03b9 \u03b1\u03c0\u03cc \u03ac\u03bb\u03bb\u03b5\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ad\u03c2 \u03b2\u03ac\u03c3\u03b5\u03b9 \u03c4\u03c9\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03b9\u03ce\u03bd \u03c0\u03bf\u03c5 \u03b1\u03c0\u03bf\u03c3\u03c4\u03ad\u03bb\u03bb\u03b5\u03b9 \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b1, \u03cc\u03c0\u03c9\u03c2 \u03b7 \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 IP \u03ae \u03bf \u03c4\u03cd\u03c0\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03c0\u03c1\u03bf\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c0\u03b5\u03c1\u03b9\u03ae\u03b3\u03b7\u03c3\u03b7\u03c2.","descriptionLegal":"\u039b\u03ae\u03c8\u03b7 \u03ba\u03b1\u03b9 \u03c7\u03c1\u03ae\u03c3\u03b7 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ce\u03bd \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ce\u03bd \u03c0\u03bf\u03c5 \u03b1\u03c0\u03b5\u03c3\u03c4\u03ac\u03bb\u03b7\u03c3\u03b1\u03bd \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b1\u03c5\u03c4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\n* \u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03c3\u03c4\u03b5 \u03ad\u03bd\u03b1 \u03b1\u03bd\u03b1\u03b3\u03bd\u03c9\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ce\u03bd\u03c4\u03b1\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c0\u03bf\u03c5 \u03c3\u03c5\u03bb\u03bb\u03ad\u03b3\u03bf\u03bd\u03c4\u03b1\u03b9 \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b1 \u03b1\u03c0\u03cc \u03bc\u03b9\u03b1 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae \u03b3\u03b9\u03b1 \u03c3\u03c5\u03b3\u03ba\u03b5\u03ba\u03c1\u03b9\u03bc\u03ad\u03bd\u03b1 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac, \u03c0.\u03c7. \u0394\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 IP, \u03c3\u03c5\u03bc\u03b2\u03bf\u03bb\u03bf\u03c3\u03b5\u03b9\u03c1\u03ac \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7-\u03c0\u03b1\u03c1\u03ac\u03b3\u03bf\u03bd\u03c4\u03b1.\n* \u03a7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03c4\u03b5 \u03ad\u03bd\u03b1 \u03c4\u03ad\u03c4\u03bf\u03b9\u03bf \u03b1\u03bd\u03b1\u03b3\u03bd\u03c9\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03c0\u03b9\u03c7\u03b5\u03b9\u03c1\u03ae\u03c3\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b5\u03c0\u03b1\u03bd\u03b1\u03c0\u03c1\u03bf\u03c3\u03b4\u03b9\u03bf\u03c1\u03af\u03c3\u03b5\u03c4\u03b5 \u03bc\u03b9\u03b1 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae.\n\u039f\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03c3\u03bf\u03c5\u03bd \u03ad\u03bd\u03b1 \u03b1\u03bd\u03b1\u03b3\u03bd\u03c9\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ce\u03bd\u03c4\u03b1\u03c2 \u03c4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c0\u03bf\u03c5 \u03c3\u03c5\u03bb\u03bb\u03ad\u03b3\u03bf\u03bd\u03c4\u03b1\u03b9 \u03bc\u03ad\u03c3\u03c9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03ae\u03c2 \u03c3\u03ac\u03c1\u03c9\u03c3\u03b7\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae \u03b3\u03b9\u03b1 \u03b5\u03b9\u03b4\u03b9\u03ba\u03ac \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac, \u03c0.\u03c7. \u03b5\u03b3\u03ba\u03b1\u03c4\u03b5\u03c3\u03c4\u03b7\u03bc\u03ad\u03bd\u03b7 \u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03bf\u03c3\u03b5\u03b9\u03c1\u03ac \u03ae \u03bf\u03b8\u03cc\u03bd\u03b7 \u03c7\u03c9\u03c1\u03af\u03c2 \u03c7\u03c9\u03c1\u03b9\u03c3\u03c4\u03ae \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03c3\u03c5\u03bc\u03bc\u03b5\u03c4\u03bf\u03c7\u03ae\u03c2 \u03c4\u03c9\u03bd \u03c7\u03c1\u03b7\u03c3\u03c4\u03ce\u03bd \u03b3\u03b9\u03b1 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03b1\u03bd\u03b1\u03b3\u03bd\u03ce\u03c1\u03b9\u03c3\u03b7\u03c2 \u03bc\u03b5 \u03b5\u03bd\u03b5\u03c1\u03b3\u03ae \u03c3\u03ac\u03c1\u03c9\u03c3\u03b7 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2.\n* \u039d\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03bf\u03c5\u03bd \u03ad\u03bd\u03b1 \u03c4\u03ad\u03c4\u03bf\u03b9\u03bf \u03b1\u03bd\u03b1\u03b3\u03bd\u03c9\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03c0\u03b1\u03bd\u03b1\u03c0\u03c1\u03bf\u03c3\u03b4\u03b9\u03bf\u03c1\u03af\u03c3\u03b5\u03c4\u03b5 \u03bc\u03b9\u03b1 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae.\n"}},"specialFeatures":{"1":{"id":1,"name":"\u03a7\u03c1\u03ae\u03c3\u03b7 \u03b1\u03ba\u03c1\u03b9\u03b2\u03ce\u03bd \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03b3\u03b5\u03c9-\u03b5\u03bd\u03c4\u03bf\u03c0\u03b9\u03c3\u03bc\u03bf\u03cd","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03c4\u03b1 \u03b1\u03ba\u03c1\u03b9\u03b2\u03ae \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b5\u03c9-\u03b5\u03bd\u03c4\u03bf\u03c0\u03b9\u03c3\u03bc\u03bf\u03cd \u03c3\u03b1\u03c2 \u03c0\u03c1\u03bf\u03c2 \u03c5\u03c0\u03bf\u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7 \u03b5\u03bd\u03cc\u03c2 \u03ae \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03c9\u03bd \u03c3\u03ba\u03bf\u03c0\u03ce\u03bd. \u0391\u03c5\u03c4\u03cc \u03c3\u03b7\u03bc\u03b1\u03af\u03bd\u03b5\u03b9 \u03cc\u03c4\u03b9 \u03b7 \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1 \u03c3\u03b1\u03c2 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b1\u03ba\u03c1\u03b9\u03b2\u03ae\u03c2 \u03c3\u03b5 \u03b1\u03ba\u03c4\u03af\u03bd\u03b1 \u03bb\u03af\u03b3\u03c9\u03bd \u03bc\u03ad\u03c4\u03c1\u03c9\u03bd. ","descriptionLegal":"\u039f\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03c3\u03c5\u03bb\u03bb\u03ad\u03b3\u03bf\u03c5\u03bd \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03ac\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03b1\u03ba\u03c1\u03b9\u03b2\u03ae \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b5\u03c9\u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03bf\u03cd \u03b5\u03bd\u03c4\u03bf\u03c0\u03b9\u03c3\u03bc\u03bf\u03cd \u03c0\u03c1\u03bf\u03c2 \u03c5\u03c0\u03bf\u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7 \u03b5\u03bd\u03cc\u03c2 \u03ae \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03c9\u03bd \u03c3\u03ba\u03bf\u03c0\u03ce\u03bd\n\u03a3\u03b7\u03bc\u03b5\u03af\u03c9\u03c3\u03b7: \u00ab\u0391\u03ba\u03c1\u03b9\u03b2\u03ae\u03c2 \u03b3\u03b5\u03c9-\u03b5\u03bd\u03c4\u03bf\u03c0\u03b9\u03c3\u03bc\u03cc\u03c2\u00bb \u03c3\u03b7\u03bc\u03b1\u03af\u03bd\u03b5\u03b9 \u03cc\u03c4\u03b9 \u03b4\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03bf\u03c5\u03bd \u03c0\u03b5\u03c1\u03b9\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03af \u03c9\u03c2 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03b7\u03bd \u03b1\u03ba\u03c1\u03af\u03b2\u03b5\u03b9\u03b1 \u03c4\u03b7\u03c2 \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1\u03c2 \u03b5\u03bd\u03cc\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03c3\u03b5 \u03b1\u03ba\u03c4\u03af\u03bd\u03b1 \u03bb\u03af\u03b3\u03c9\u03bd \u03bc\u03ad\u03c4\u03c1\u03c9\u03bd.\n"},"2":{"id":2,"name":"\u0391\u03ba\u03c1\u03b9\u03b2\u03ae\u03c2 \u03c3\u03ac\u03c1\u03c9\u03c3\u03b7 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ce\u03bd \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2 \u03b3\u03b9\u03b1 \u03b1\u03bd\u03b1\u03b3\u03bd\u03ce\u03c1\u03b9\u03c3\u03b7 \u03c4\u03b1\u03c5\u03c4\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2","description":"\u0397 \u03c4\u03b1\u03c5\u03c4\u03cc\u03c4\u03b7\u03c4\u03b1 \u03c4\u03b7\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae \u03c3\u03b1\u03c2 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b1\u03bd\u03b1\u03b3\u03bd\u03c9\u03c1\u03b9\u03c3\u03c4\u03b5\u03af \u03ba\u03b1\u03c4\u03cc\u03c0\u03b9\u03bd \u03c3\u03ac\u03c1\u03c9\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 \u03bc\u03bf\u03bd\u03b1\u03b4\u03b9\u03ba\u03bf\u03cd \u03c3\u03c5\u03bd\u03b4\u03c5\u03b1\u03c3\u03bc\u03bf\u03cd \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ce\u03bd \u03c4\u03b7\u03c2.","descriptionLegal":"\u039f\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03bf\u03cd\u03bd \u03ad\u03bd\u03b1 \u03b1\u03bd\u03b1\u03b3\u03bd\u03c9\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ce\u03bd\u03c4\u03b1\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c0\u03bf\u03c5 \u03c3\u03c5\u03bb\u03bb\u03ad\u03b3\u03bf\u03bd\u03c4\u03b1\u03b9 \u03bc\u03ad\u03c3\u03c9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03cd\u03c2 \u03c3\u03ac\u03c1\u03c9\u03c3\u03b7\u03c2 \u03bc\u03b9\u03b1\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2 \u03b3\u03b9\u03b1 \u03c3\u03c5\u03b3\u03ba\u03b5\u03ba\u03c1\u03b9\u03bc\u03ad\u03bd\u03b1 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac, \u03c0.\u03c7. \u03b5\u03b3\u03ba\u03b1\u03c4\u03b5\u03c3\u03c4\u03b7\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03bf\u03c3\u03b5\u03b9\u03c1\u03ad\u03c2 \u03ae \u03b1\u03bd\u03ac\u03bb\u03c5\u03c3\u03b7 \u03bf\u03b8\u03cc\u03bd\u03b7\u03c2. \n* \u039d\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd \u03ad\u03bd\u03b1 \u03c4\u03ad\u03c4\u03bf\u03b9\u03bf \u03b1\u03bd\u03b1\u03b3\u03bd\u03c9\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03bf\u03c5\u03bd \u03c4\u03b7\u03bd \u03b1\u03bd\u03b1\u03b3\u03bd\u03ce\u03c1\u03b9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03c4\u03b1\u03c5\u03c4\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2 \u03bc\u03b9\u03b1\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"\u0391\u03ba\u03c1\u03b9\u03b2\u03ae \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b5\u03c9-\u03b5\u03bd\u03c4\u03bf\u03c0\u03b9\u03c3\u03bc\u03bf\u03cd \u03ba\u03b1\u03b9 \u03c4\u03b1\u03c5\u03c4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03bc\u03ad\u03c3\u03c9 \u03c3\u03ac\u03c1\u03c9\u03c3\u03b7\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03b5\u03af \u03b1\u03ba\u03c1\u03b9\u03b2\u03ae\u03c2 \u03b3\u03b5\u03c9-\u03b5\u03bd\u03c4\u03bf\u03c0\u03b9\u03c3\u03bc\u03cc\u03c2 \u03ba\u03b1\u03b9 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03c4\u03b7\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"\u0392\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03b9\u03c3\u03c4\u03bf\u03cd\u03bd \u03b2\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"\u0395\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2","description":"\u039f\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03ae \u03c4\u03bf\u03c5\u03c2."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"\u0392\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03b9\u03c3\u03c4\u03bf\u03cd\u03bd \u03b2\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd. \u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"\u0392\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03b9\u03c3\u03c4\u03bf\u03cd\u03bd \u03b2\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03ae \u03c4\u03bf\u03c5\u03c2 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd","description":"\u039f\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc","description":"\u039f\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd. \u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"\u0395\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd","description":"\u039f\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb, \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03ae \u03c4\u03bf\u03c5\u03c2 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"\u0395\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc","description":"\u039f\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c9\u03c0\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03bc\u03b5 \u03b2\u03ac\u03c3\u03b7 \u03ad\u03bd\u03b1 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb. \u039c\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03c0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd. \u0397 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b4\u03b9\u03b1\u03c6\u03ae\u03bc\u03b9\u03c3\u03b7\u03c2 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af. \u039c\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03b5\u03be\u03b1\u03c7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03c3\u03c7\u03b5\u03c4\u03b9\u03ba\u03ac \u03bc\u03b5 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b5 \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"\u03a0\u03c1\u03bf\u03c6\u03af\u03bb \u03ba\u03b1\u03b9 \u03c0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd","description":"\u039f\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03ae \u03c4\u03bf\u03c5\u03c2."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"\u0395\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf","description":"\u03a4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03b8\u03b5\u03af \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03ae \u03c4\u03bf\u03c5"},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5","description":"\u03a4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03b8\u03b5\u03af \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03ae \u03c4\u03bf\u03c5."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc","description":"\u03a4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03b8\u03b5\u03af \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03ae \u03c4\u03bf\u03c5. \u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03bd\u03c4\u03bb\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"\u0395\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03ba\u03b1\u03b9 \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5","description":"\u03a4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03b8\u03b5\u03af \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb, \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03ae \u03c4\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03ae \u03c4\u03bf\u03c5."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"\u0395\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03b5\u03af \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb, \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03ae \u03c4\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03ae \u03c4\u03bf\u03c5. \u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"\u0395\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc \u03ba\u03b1\u03b9 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03b5\u03af \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb, \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03ae \u03c4\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03ae \u03c4\u03bf\u03c5. \u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf. \u03a4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ae \u03c4\u03b7 \u03b2\u03b5\u03bb\u03c4\u03af\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03bc\u03c0\u03b5\u03b9\u03c1\u03af\u03b1\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7, \u03c4\u03c9\u03bd \u03c3\u03c5\u03c3\u03c4\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03b9\u03ba\u03bf\u03cd."},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"\u039c\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03ba\u03b1\u03b9 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5. \u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"\u039c\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"\u039c\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03bc\u03b9\u03b1\u03c2 \u03b4\u03b9\u03b1\u03c6\u03ae\u03bc\u03b9\u03c3\u03b7\u03c2. \u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"\u039c\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc \u03ba\u03b1\u03b9 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5. \u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf. \u03a4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ae \u03c4\u03b7 \u03b2\u03b5\u03bb\u03c4\u03af\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03bc\u03c0\u03b5\u03b9\u03c1\u03af\u03b1\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7, \u03c4\u03c9\u03bd \u03c3\u03c5\u03c3\u03c4\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03b9\u03ba\u03bf\u03cd. \u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"\u039c\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc \u03ba\u03b1\u03b9 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5. \u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf. \u03a4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ae \u03c4\u03b7 \u03b2\u03b5\u03bb\u03c4\u03af\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03bc\u03c0\u03b5\u03b9\u03c1\u03af\u03b1\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7, \u03c4\u03c9\u03bd \u03c3\u03c5\u03c3\u03c4\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03b9\u03ba\u03bf\u03cd."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"\u039c\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5. \u03a4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ae \u03c4\u03b7 \u03b2\u03b5\u03bb\u03c4\u03af\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03bc\u03c0\u03b5\u03b9\u03c1\u03af\u03b1\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7, \u03c4\u03c9\u03bd \u03c3\u03c5\u03c3\u03c4\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03b9\u03ba\u03bf\u03cd."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03ba\u03b1\u03b9 \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd \u03bf\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb, \u03ba\u03b1\u03b8\u03ce\u03c2 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03ae \u03c4\u03bf\u03c5\u03c2."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd \u03bf\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb, \u03ba\u03b1\u03b8\u03ce\u03c2 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03ae \u03c4\u03bf\u03c5\u03c2. \u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf. \u03a4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ae \u03c4\u03b7 \u03b2\u03b5\u03bb\u03c4\u03af\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03bc\u03c0\u03b5\u03b9\u03c1\u03af\u03b1\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7, \u03c4\u03c9\u03bd \u03c3\u03c5\u03c3\u03c4\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03b9\u03ba\u03bf\u03cd."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"\u0395\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03ba\u03b1\u03b9 \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd \u03bf\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb, \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03ae \u03c4\u03bf\u03c5\u03c2, \u03ba\u03b1\u03b8\u03ce\u03c2 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03ae \u03c4\u03bf\u03c5\u03c2."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"\u0395\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd \u03bf\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb, \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03ae \u03c4\u03bf\u03c5\u03c2, \u03ba\u03b1\u03b8\u03ce\u03c2 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03ae \u03c4\u03bf\u03c5\u03c2. \u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"\u0395\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd \u03bf\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb"},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"\u0392\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03ba\u03b1\u03b9 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03b9\u03c3\u03c4\u03bf\u03cd\u03bd \u03b2\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03ae \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5. \u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd, \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd \u03bf\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb, \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03ae \u03c4\u03bf\u03c5\u03c2. \u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd, \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc \u03ba\u03b1\u03b9 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd \u03bf\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb, \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03ae \u03c4\u03bf\u03c5\u03c2. \u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf. \u03a4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ae \u03c4\u03b7 \u03b2\u03b5\u03bb\u03c4\u03af\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03bc\u03c0\u03b5\u03b9\u03c1\u03af\u03b1\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7, \u03c4\u03c9\u03bd \u03c3\u03c5\u03c3\u03c4\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03b9\u03ba\u03bf\u03cd."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"\u0392\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03ba\u03b1\u03b9 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03b9\u03c3\u03c4\u03bf\u03cd\u03bd \u03b2\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03b5\u03af \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb, \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03ae \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"\u0392\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc \u03ba\u03b1\u03b9 \u03b1\u03bd\u03ac\u03c0\u03c4\u03c5\u03be\u03b7 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03b9\u03c3\u03c4\u03bf\u03cd\u03bd \u03b2\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03b5\u03af \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb, \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03ae \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf. \u03a4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ae \u03c4\u03b7 \u03b2\u03b5\u03bb\u03c4\u03af\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03bc\u03c0\u03b5\u03b9\u03c1\u03af\u03b1\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7, \u03c4\u03c9\u03bd \u03c3\u03c5\u03c3\u03c4\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03b9\u03ba\u03bf\u03cd."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"\u0392\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03b9\u03c3\u03c4\u03bf\u03cd\u03bd \u03b2\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03b5\u03af \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb, \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03ae \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"\u0392\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc \u03ba\u03b1\u03b9 \u03b1\u03bd\u03ac\u03c0\u03c4\u03c5\u03be\u03b7 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03b9\u03c3\u03c4\u03bf\u03cd\u03bd \u03b2\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03b5\u03af \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb, \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf. \u03a4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ae \u03c4\u03b7 \u03b2\u03b5\u03bb\u03c4\u03af\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03bc\u03c0\u03b5\u03b9\u03c1\u03af\u03b1\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7, \u03c4\u03c9\u03bd \u03c3\u03c5\u03c3\u03c4\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03b9\u03ba\u03bf\u03cd."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"\u0392\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03ba\u03b1\u03b9 \u03bc\u03b5\u03c4\u03c1\u03ae\u03c3\u03b5\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03b9\u03c3\u03c4\u03bf\u03cd\u03bd \u03b2\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03b5\u03af \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb, \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"\u0392\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03b1\u03bd\u03ac\u03c0\u03c4\u03c5\u03be\u03b7 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03b9\u03c3\u03c4\u03bf\u03cd\u03bd \u03b2\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03b5\u03af \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb, \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd. \u03a4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ae \u03c4\u03b7 \u03b2\u03b5\u03bb\u03c4\u03af\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03bc\u03c0\u03b5\u03b9\u03c1\u03af\u03b1\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7, \u03c4\u03c9\u03bd \u03c3\u03c5\u03c3\u03c4\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03b9\u03ba\u03bf\u03cd."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"\u0395\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd","description":"\u039f\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03ba\u03b1\u03b9 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03ae \u03c4\u03bf\u03c5\u03c2. \u039c\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd. \u03a4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ae \u03c4\u03b7 \u03b2\u03b5\u03bb\u03c4\u03af\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03bc\u03c0\u03b5\u03b9\u03c1\u03af\u03b1\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7, \u03c4\u03c9\u03bd \u03c3\u03c5\u03c3\u03c4\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03b9\u03ba\u03bf\u03cd."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"\u0395\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd, \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc \u03ba\u03b1\u03b9 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd","description":"\u039f\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03ba\u03b1\u03b9 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03ae \u03c4\u03bf\u03c5\u03c2. \u039c\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd. \u039c\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf. \u03a4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ae \u03c4\u03b7 \u03b2\u03b5\u03bb\u03c4\u03af\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03bc\u03c0\u03b5\u03b9\u03c1\u03af\u03b1\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7, \u03c4\u03c9\u03bd \u03c3\u03c5\u03c3\u03c4\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03b9\u03ba\u03bf\u03cd."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"\u0395\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc \u03ba\u03b1\u03b9 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd","description":"\u039f\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03ba\u03b1\u03b9 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03ae \u03c4\u03bf\u03c5\u03c2. \u039c\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03ae \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u039c\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf. \u03a4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ae \u03c4\u03b7 \u03b2\u03b5\u03bb\u03c4\u03af\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03bc\u03c0\u03b5\u03b9\u03c1\u03af\u03b1\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7, \u03c4\u03c9\u03bd \u03c3\u03c5\u03c3\u03c4\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03b9\u03ba\u03bf\u03cd."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"\u0395\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03c0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc \u03ba\u03b1\u03b9 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd","description":"\u039f\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb. \u039c\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03ae \u03c4\u03bf\u03c5\u03c2. \u039c\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03ae \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5. \u039c\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf. \u03a4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ae \u03c4\u03b7 \u03b2\u03b5\u03bb\u03c4\u03af\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03bc\u03c0\u03b5\u03b9\u03c1\u03af\u03b1\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7, \u03c4\u03c9\u03bd \u03c3\u03c5\u03c3\u03c4\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03b9\u03ba\u03bf\u03cd."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"\u0395\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc \u03ba\u03b1\u03b9 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd","description":"\u039f\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb. \u039c\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03ae \u03c4\u03bf\u03c5\u03c2. \u039c\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03ae \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u039c\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf. \u03a4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ae \u03c4\u03b7 \u03b2\u03b5\u03bb\u03c4\u03af\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03bc\u03c0\u03b5\u03b9\u03c1\u03af\u03b1\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7, \u03c4\u03c9\u03bd \u03c3\u03c5\u03c3\u03c4\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03b9\u03ba\u03bf\u03cd."}}} \ No newline at end of file +{"vendorListVersion":94,"lastUpdated":"2021-06-10T16:43:55Z","purposes":{"1":{"id":1,"name":"\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03ae/\u03ba\u03b1\u03b9 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03bc\u03b9\u03b1\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2","description":"\u039c\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03b5\u03c4\u03b5 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03ac\u03c4\u03b5 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b1 cookies, \u03c4\u03b1 \u03b1\u03bd\u03b1\u03b3\u03bd\u03c9\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2 \u03ba\u03b1\u03b9 \u03ac\u03bb\u03bb\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c4\u03b7\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2 \u03c3\u03b1\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf\u03c5\u03c2 \u03c3\u03ba\u03bf\u03c0\u03bf\u03cd\u03c2 \u03c0\u03bf\u03c5 \u03c3\u03b1\u03c2 \u03c0\u03b1\u03c1\u03bf\u03c5\u03c3\u03b9\u03ac\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9","descriptionLegal":"\u039f\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03bf\u03c5\u03bd \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03bf\u03cd\u03bd \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c4\u03b7\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2, \u03cc\u03c0\u03c9\u03c2 \u03c3\u03c4\u03b1 cookies \u03ba\u03b1\u03b9 \u03c4\u03b1 \u03b1\u03bd\u03b1\u03b3\u03bd\u03c9\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2 \u03c0\u03bf\u03c5 \u03c0\u03b1\u03c1\u03bf\u03c5\u03c3\u03b9\u03ac\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c3\u03b5 \u03ba\u03ac\u03c0\u03bf\u03b9\u03bf\u03bd \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\n"},"2":{"id":2,"name":"\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03b2\u03b1\u03c3\u03b9\u03ba\u03ce\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd","description":"\u039f\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c3\u03b5 \u03b5\u03c3\u03ac\u03c2 \u03bc\u03b5 \u03b2\u03ac\u03c3\u03b7 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03c0\u03bf\u03c5 \u03b2\u03bb\u03ad\u03c0\u03b5\u03c4\u03b5, \u03c4\u03b7\u03bd \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03bf\u03c5 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b5\u03af\u03c4\u03b5, \u03c4\u03b7\u03bd \u03ba\u03b1\u03c4\u03ac \u03c0\u03c1\u03bf\u03c3\u03ad\u03b3\u03b3\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1 \u03c3\u03b1\u03c2 \u03ae \u03c4\u03bf\u03bd \u03c4\u03cd\u03c0\u03bf \u03c4\u03b7\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2 \u03c3\u03b1\u03c2.","descriptionLegal":"\u0393\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03c0\u03b9\u03bb\u03ad\u03b3\u03bf\u03c5\u03bd \u03b2\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03bf\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c3\u03b5 \u03c0\u03c1\u03b1\u03b3\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc \u03c7\u03c1\u03cc\u03bd\u03bf \u03b3\u03b9\u03b1 \u03c4\u03bf \u03c0\u03bb\u03b1\u03af\u03c3\u03b9\u03bf \u03b5\u03bd\u03c4\u03cc\u03c2 \u03c4\u03bf\u03c5 \u03bf\u03c0\u03bf\u03af\u03bf\u03c5 \u03b8\u03b1 \u03c0\u03c1\u03bf\u03b2\u03ac\u03bb\u03bb\u03b5\u03c4\u03b1\u03b9 \u03b7 \u03b4\u03b9\u03b1\u03c6\u03ae\u03bc\u03b9\u03c3\u03b7, \u03cc\u03c0\u03c9\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03c3\u03c7\u03b5\u03c4\u03b9\u03ba\u03ac \u03bc\u03b5 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03ba\u03b1\u03b9 \u03c4\u03b7 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae (\u03c0.\u03c7. \u03c4\u03cd\u03c0\u03bf \u03ba\u03b1\u03b9 \u03b4\u03c5\u03bd\u03b1\u03c4\u03cc\u03c4\u03b7\u03c4\u03b5\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2, \u03c0\u03b1\u03c1\u03ac\u03b3\u03bf\u03bd\u03c4\u03b1 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7, \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 URL, \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 IP), \u03ce\u03c3\u03c4\u03b5 \u03bd\u03b1 \u03c0\u03c1\u03bf\u03b2\u03ac\u03bb\u03bf\u03c5\u03bd \u03c4\u03b7 \u03b4\u03b9\u03b1\u03c6\u03ae\u03bc\u03b9\u03c3\u03b7 \n* \u039d\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd \u03c4\u03b1 \u03bc\u03b7 \u03b1\u03ba\u03c1\u03b9\u03b2\u03ae \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b5\u03c9-\u03b5\u03bd\u03c4\u03bf\u03c0\u03b9\u03c3\u03bc\u03bf\u03cd \u03b5\u03bd\u03cc\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\n* \u039d\u03b1 \u03b5\u03bb\u03ad\u03b3\u03c7\u03bf\u03c5\u03bd \u03c4\u03b7 \u03c3\u03c5\u03c7\u03bd\u03cc\u03c4\u03b7\u03c4\u03b1 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03c0\u03bf\u03c5 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c3\u03b5 \u03ad\u03bd\u03b1\u03bd \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\n* \u039d\u03b1 \u03b5\u03c0\u03b9\u03bb\u03ad\u03b3\u03bf\u03c5\u03bd \u03c4\u03b7 \u03c3\u03b5\u03b9\u03c1\u03ac \u03bc\u03b5 \u03c4\u03b7\u03bd \u03bf\u03c0\u03bf\u03af\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03bf\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03c3\u03b5 \u03ad\u03bd\u03b1\u03bd \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\n* \u039d\u03b1 \u03b1\u03c0\u03bf\u03c4\u03c1\u03ad\u03c0\u03bf\u03c5\u03bd \u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03bc\u03b9\u03b1\u03c2 \u03b4\u03b9\u03b1\u03c6\u03ae\u03bc\u03b9\u03c3\u03b7\u03c2 \u03c3\u03b5 \u03b1\u03ba\u03b1\u03c4\u03ac\u03bb\u03bb\u03b7\u03bb\u03bf (\u03bc\u03b7 \u03b1\u03c3\u03c6\u03b1\u03bb\u03ad\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd) \u03c3\u03c5\u03bd\u03c4\u03b1\u03ba\u03c4\u03b9\u03ba\u03cc \u03c0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd\n\u039f\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03bf\u03cd\u03bd \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ce\u03bd\u03c4\u03b1\u03c2 \u03b1\u03c5\u03c4\u03ac \u03c4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 (\u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2) \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03bc\u03b5\u03bb\u03bb\u03bf\u03bd\u03c4\u03b9\u03ba\u03ce\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd\n\u03a3\u03b7\u03bc\u03b5\u03af\u03c9\u03c3\u03b7: \u00ab\u039c\u03b7 \u03b1\u03ba\u03c1\u03b9\u03b2\u03ae\u03c2\u00bb \u03c3\u03b7\u03bc\u03b1\u03af\u03bd\u03b5\u03b9 \u03cc\u03c4\u03b9 \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03b5\u03c4\u03b1\u03b9 \u03bc\u03cc\u03bd\u03bf \u03b7 \u03ba\u03b1\u03c4\u03ac \u03c0\u03c1\u03bf\u03c3\u03ad\u03b3\u03b3\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1 \u03c3\u03b5 \u03b1\u03ba\u03c4\u03af\u03bd\u03b1 \u03c4\u03bf\u03c5\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf\u03bd 500 \u03bc\u03ad\u03c4\u03c1\u03c9\u03bd.\n"},"3":{"id":3,"name":"\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03b7\u03b8\u03b5\u03af \u03ad\u03bd\u03b1 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03b3\u03b9\u03b1 \u03b5\u03c3\u03ac\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03b1 \u03b5\u03bd\u03b4\u03b9\u03b1\u03c6\u03ad\u03c1\u03bf\u03bd\u03c4\u03ac \u03c3\u03b1\u03c2, \u03ce\u03c3\u03c4\u03b5 \u03bd\u03b1 \u03c3\u03b1\u03c2 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03c0\u03bf\u03c5 \u03c3\u03b1\u03c2 \u03b1\u03c6\u03bf\u03c1\u03bf\u03cd\u03bd.","descriptionLegal":"\u0393\u03b9\u03b1 \u03bd\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03bf\u03cd\u03bd \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd, \u03bf\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03c3\u03c5\u03bb\u03bb\u03ad\u03b3\u03bf\u03c5\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03c3\u03c7\u03b5\u03c4\u03b9\u03ba\u03ac \u03bc\u03b5 \u03ad\u03bd\u03b1\u03bd \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7, \u03cc\u03c0\u03c9\u03c2 \u03b7 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03ac \u03c4\u03bf\u03c5, \u03c4\u03b1 \u03b5\u03bd\u03b4\u03b9\u03b1\u03c6\u03ad\u03c1\u03bf\u03bd\u03c4\u03ac \u03c4\u03bf\u03c5, \u03b5\u03c0\u03b9\u03c3\u03ba\u03ad\u03c8\u03b5\u03b9\u03c2 \u03c3\u03b5 \u03b9\u03c3\u03c4\u03cc\u03c4\u03bf\u03c0\u03bf\u03c5\u03c2 \u03ae \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ad\u03c2, \u03b4\u03b7\u03bc\u03bf\u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03ad\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03ae \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1 \u03b3\u03b9\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ae \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03c0\u03c1\u03bf\u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5 \u03bd\u03b1 \u03c0\u03b1\u03c1\u03b1\u03b4\u03ce\u03c3\u03bf\u03c5\u03bd \u03bc\u03b9\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03b7 \u03b4\u03b9\u03b1\u03c6\u03ae\u03bc\u03b9\u03c3\u03b7.\n* \u039d\u03b1 \u03c3\u03c5\u03bd\u03b4\u03c5\u03ac\u03b6\u03bf\u03c5\u03bd \u03b1\u03c5\u03c4\u03ad\u03c2 \u03c4\u03b9\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03bc\u03b5 \u03ac\u03bb\u03bb\u03b5\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03c0\u03bf\u03c5 \u03c3\u03c5\u03bb\u03bb\u03ad\u03c7\u03b8\u03b7\u03ba\u03b1\u03bd \u03c0\u03c1\u03bf\u03b7\u03b3\u03bf\u03c5\u03bc\u03ad\u03bd\u03c9\u03c2, \u03b1\u03c0\u03cc \u03b9\u03c3\u03c4\u03cc\u03c4\u03bf\u03c0\u03bf\u03c5\u03c2 \u03ba\u03b1\u03b9 \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ad\u03c2, \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ae \u03c4\u03b7\u03bd \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03b5\u03bd\u03cc\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03b3\u03b9\u03b1 \u03c7\u03c1\u03ae\u03c3\u03b7 \u03c3\u03b5 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03b7 \u03b4\u03b9\u03b1\u03c6\u03ae\u03bc\u03b9\u03c3\u03b7.\n"},"4":{"id":4,"name":"\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03b9\u03c3\u03c4\u03bf\u03cd\u03bd \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03b1\u03bd\u03ac\u03bb\u03bf\u03b3\u03b1 \u03bc\u03b5 \u03c4\u03bf \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03c3\u03b1\u03c2.","descriptionLegal":"\u0393\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03c0\u03b9\u03bb\u03ad\u03b3\u03bf\u03c5\u03bd \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03bf\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03b2\u03b1\u03c3\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c3\u03b5 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03ae \u03c3\u03b5 \u03ac\u03bb\u03bb\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03c4\u03bf\u03c5 \u03b9\u03c3\u03c4\u03bf\u03c1\u03b9\u03ba\u03bf\u03cd, \u03c3\u03c5\u03bc\u03c0\u03b5\u03c1\u03b9\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03bf\u03bc\u03ad\u03bd\u03b7\u03c2 \u03c4\u03b7\u03c2 \u03c0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03b7\u03c2 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2, \u03c4\u03c9\u03bd \u03b5\u03bd\u03b4\u03b9\u03b1\u03c6\u03b5\u03c1\u03cc\u03bd\u03c4\u03c9\u03bd, \u03c4\u03c9\u03bd \u03b5\u03c0\u03b9\u03c3\u03ba\u03ad\u03c8\u03b5\u03c9\u03bd \u03c3\u03b5 \u03b9\u03c3\u03c4\u03cc\u03c4\u03bf\u03c0\u03bf\u03c5\u03c2 \u03ae \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ad\u03c2, \u03c4\u03b7\u03c2 \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1\u03c2 \u03ae \u03c4\u03c9\u03bd \u03b4\u03b7\u03bc\u03bf\u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03ce\u03bd \u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03c9\u03bd \u03c4\u03bf\u03c5 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7.\n"},"5":{"id":5,"name":"\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03b7\u03b8\u03b5\u03af \u03ad\u03bd\u03b1 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03b3\u03b9\u03b1 \u03b5\u03c3\u03ac\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03b1 \u03b5\u03bd\u03b4\u03b9\u03b1\u03c6\u03ad\u03c1\u03bf\u03bd\u03c4\u03ac \u03c3\u03b1\u03c2, \u03ce\u03c3\u03c4\u03b5 \u03bd\u03b1 \u03c3\u03b1\u03c2 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03c0\u03bf\u03c5 \u03c3\u03b1\u03c2 \u03b1\u03c6\u03bf\u03c1\u03ac. \n\u03a3\u03c5\u03bd\u03b4\u03c5\u03ac\u03c3\u03c4\u03b5 \u03b1\u03c5\u03c4\u03ad\u03c2 \u03c4\u03b9\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03bc\u03b5 \u03ac\u03bb\u03bb\u03b5\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03c0\u03bf\u03c5 \u03c3\u03c5\u03bb\u03bb\u03ad\u03c7\u03b8\u03b7\u03ba\u03b1\u03bd \u03c0\u03c1\u03bf\u03b7\u03b3\u03bf\u03c5\u03bc\u03ad\u03bd\u03c9\u03c2, \u03b1\u03c0\u03cc \u03b5\u03c0\u03b9\u03c3\u03ba\u03ad\u03c8\u03b5\u03b9\u03c2 \u03c3\u03b5 \u03b9\u03c3\u03c4\u03cc\u03c4\u03bf\u03c0\u03bf\u03c5\u03c2 \u03ba\u03b1\u03b9 \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ad\u03c2, \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ae \u03c4\u03b7\u03bd \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03b5\u03bd\u03cc\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\n\u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03b3\u03b9\u03b1 \u03c7\u03c1\u03ae\u03c3\u03b7 \u03c3\u03c4\u03bf \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf.\n","descriptionLegal":"\u0393\u03b9\u03b1 \u03bd\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03bf\u03cd\u03bd \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03bf\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03c3\u03c5\u03bb\u03bb\u03ad\u03b3\u03bf\u03c5\u03bd \u03c4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b5\u03bd\u03cc\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7, \u03cc\u03c0\u03c9\u03c2 \u03c4\u03b7 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1, \u03c4\u03b1 \u03b5\u03bd\u03b4\u03b9\u03b1\u03c6\u03ad\u03c1\u03bf\u03bd\u03c4\u03b1, \u03c4\u03b9\u03c2 \u03b5\u03c0\u03b9\u03c3\u03ba\u03ad\u03c8\u03b5\u03b9\u03c2 \u03c3\u03b5 \u03b9\u03c3\u03c4\u03cc\u03c4\u03bf\u03c0\u03bf\u03c5\u03c2 \u03ae \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ad\u03c2, \u03c4\u03b1 \u03b4\u03b7\u03bc\u03bf\u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03ac \u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03b1 \u03ae \u03c4\u03b7\u03bd \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1 \u03c4\u03bf\u03c5, \u03ce\u03c3\u03c4\u03b5 \u03bd\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03bf\u03cd\u03bd \u03ae \u03bd\u03b1 \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03ac\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03b3\u03b9\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf\n* \u039d\u03b1 \u03c3\u03c5\u03bd\u03b4\u03c5\u03ac\u03b6\u03bf\u03c5\u03bd \u03c4\u03b7\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b1 \u03bc\u03b5 \u03ac\u03bb\u03bb\u03b5\u03c2 \u03c0\u03bf\u03c5 \u03c3\u03c5\u03bb\u03bb\u03ad\u03b3\u03b7\u03c3\u03b1\u03bd \u03c0\u03c1\u03c9\u03b8\u03cd\u03c3\u03c4\u03b5\u03c1\u03b1 \u03c3\u03c5\u03bc\u03c0\u03b5\u03c1\u03b9\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c3\u03c4\u03b1\u03c5\u03c1\u03bf\u03cd\u03bc\u03b5\u03bd\u03c9\u03bd sites \u03ba\u03b1\u03b9 \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ce\u03bd, \u03c0\u03c1\u03bf\u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5 \u03bd\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03c3\u03bf\u03c5\u03bd \u03ae \u03bd\u03b1 \u03b4\u03b9\u03b1\u03bc\u03bf\u03c1\u03c6\u03ce\u03c3\u03bf\u03c5\u03bd \u03ad\u03bd\u03b1 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03b3\u03b9\u03b1 \u03c7\u03c1\u03ae\u03c3\u03b7 \u03c3\u03b5 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf. \n"},"6":{"id":6,"name":"\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03b9\u03c3\u03c4\u03b5\u03af \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b1\u03bd\u03ac\u03bb\u03bf\u03b3\u03b1 \u03bc\u03b5 \u03c4\u03bf \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03c3\u03b1\u03c2.","descriptionLegal":"\u0393\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03c0\u03b9\u03bb\u03ad\u03b3\u03bf\u03c5\u03bd \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf, \u03bf\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03b2\u03b1\u03c3\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c3\u03b5 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03ae \u03c3\u03b5 \u03ac\u03bb\u03bb\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03c4\u03bf\u03c5 \u03b9\u03c3\u03c4\u03bf\u03c1\u03b9\u03ba\u03bf\u03cd, \u03cc\u03c0\u03c9\u03c2 \u03c3\u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03b7 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1, \u03c4\u03b1 \u03b5\u03bd\u03b4\u03b9\u03b1\u03c6\u03ad\u03c1\u03bf\u03bd\u03c4\u03b1, \u03c4\u03b9\u03c2 \u03b5\u03c0\u03b9\u03c3\u03ba\u03ad\u03c8\u03b5\u03b9\u03c2 \u03c3\u03b5 \u03b9\u03c3\u03c4\u03cc\u03c4\u03bf\u03c0\u03bf\u03c5\u03c2 \u03ae \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ad\u03c2, \u03c4\u03b7\u03bd \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1 \u03ae \u03c4\u03b1 \u03b4\u03b7\u03bc\u03bf\u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03ac \u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03b1 \u03c4\u03bf\u03c5 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\n"},"7":{"id":7,"name":"\u039c\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd","description":"\u0397 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03ba\u03b1\u03b9 \u03b7 \u03b1\u03c0\u03bf\u03c4\u03b5\u03bb\u03b5\u03c3\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc\u03c4\u03b7\u03c4\u03b1 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03c0\u03bf\u03c5 \u03b2\u03bb\u03ad\u03c0\u03b5\u03c4\u03b5 \u03ae \u03b1\u03c5\u03c4\u03ce\u03bd \u03bc\u03b5 \u03c4\u03b9\u03c2 \u03bf\u03c0\u03bf\u03af\u03b5\u03c2 \u03b1\u03bb\u03bb\u03b7\u03bb\u03b5\u03c0\u03b9\u03b4\u03c1\u03ac\u03c4\u03b5 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03bf\u03cd\u03bd","descriptionLegal":"\u0393\u03b9\u03b1 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03bf\u03cd\u03bd \u03c4\u03b7\u03bd \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd, \u03bf\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03bc\u03b5\u03c4\u03c1\u03bf\u03cd\u03bd \u03b5\u03ac\u03bd \u03ba\u03b1\u03b9 \u03c0\u03ce\u03c2 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03c3\u03c4\u03b7\u03ba\u03b1\u03bd \u03bf\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03c3\u03b5 \u03ad\u03bd\u03b1\u03bd \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7, \u03ba\u03b1\u03b8\u03ce\u03c2 \u03ba\u03b1\u03b9 \u03c0\u03ce\u03c2 \u03b1\u03c5\u03c4\u03cc\u03c2 \u03b1\u03bb\u03bb\u03b7\u03bb\u03b5\u03c0\u03af\u03b4\u03c1\u03b1\u03c3\u03b5 \u03bc\u03b5 \u03b1\u03c5\u03c4\u03ad\u03c2\n* \u039d\u03b1 \u03c0\u03b1\u03c1\u03ad\u03c7\u03bf\u03c5\u03bd \u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ad\u03c2 \u03c3\u03c7\u03b5\u03c4\u03b9\u03ba\u03ac \u03bc\u03b5 \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03c0\u03bf\u03c5 \u03b8\u03b1 \u03c0\u03b5\u03c1\u03b9\u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03bf\u03c5\u03bd \u03c4\u03b7\u03bd \u03b1\u03c0\u03bf\u03c4\u03b5\u03bb\u03b5\u03c3\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc\u03c4\u03b7\u03c4\u03b1 \u03ba\u03b1\u03b9 \u03c4\u03b7\u03bd \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03ae \u03c4\u03bf\u03c5\u03c2\n* \u039d\u03b1 \u03c0\u03b1\u03c1\u03ad\u03c7\u03bf\u03c5\u03bd \u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ad\u03c2 \u03c3\u03c7\u03b5\u03c4\u03b9\u03ba\u03ac \u03bc\u03b5 \u03c4\u03bf\u03c5\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2 \u03c0\u03bf\u03c5 \u03ad\u03c7\u03bf\u03c5\u03bd \u03b1\u03bb\u03bb\u03b7\u03bb\u03b5\u03c0\u03b9\u03b4\u03c1\u03ac\u03c3\u03b5\u03b9 \u03bc\u03b5 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ce\u03bd\u03c4\u03b1\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c0\u03bf\u03c5 \u03c0\u03c1\u03bf\u03ba\u03cd\u03c0\u03c4\u03bf\u03c5\u03bd \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7 \u03b4\u03b9\u03ac\u03c1\u03ba\u03b5\u03b9\u03b1 \u03c4\u03b7\u03c2 \u03b1\u03bb\u03bb\u03b7\u03bb\u03b5\u03c0\u03af\u03b4\u03c1\u03b1\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03bc\u03b5 \u03bc\u03b9\u03b1 \u03c3\u03c5\u03b3\u03ba\u03b5\u03ba\u03c1\u03b9\u03bc\u03ad\u03bd\u03b7 \u03b4\u03b9\u03b1\u03c6\u03ae\u03bc\u03b9\u03c3\u03b7\n* \u039d\u03b1 \u03c0\u03b1\u03c1\u03ad\u03c7\u03bf\u03c5\u03bd \u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ad\u03c2 \u03c3\u03c4\u03bf\u03c5\u03c2 \u03b5\u03ba\u03b4\u03cc\u03c4\u03b5\u03c2 \u03c3\u03c7\u03b5\u03c4\u03b9\u03ba\u03ac \u03bc\u03b5 \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03c0\u03bf\u03c5 \u03c0\u03c1\u03bf\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c3\u03c4\u03bf\u03bd \u03b9\u03c3\u03c4\u03cc\u03c4\u03bf\u03c0\u03cc \u03c4\u03bf\u03c5\u03c2\n* \u039d\u03b1 \u03bc\u03b5\u03c4\u03c1\u03bf\u03cd\u03bd \u03b5\u03ac\u03bd \u03bc\u03b9\u03b1 \u03b4\u03b9\u03b1\u03c6\u03ae\u03bc\u03b9\u03c3\u03b7 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03c3\u03b5 \u03ba\u03b1\u03c4\u03ac\u03bb\u03bb\u03b7\u03bb\u03bf (\u03b1\u03c3\u03c6\u03b1\u03bb\u03ad\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd) \u03c3\u03c5\u03bd\u03c4\u03b1\u03ba\u03c4\u03b9\u03ba\u03cc \u03c0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd\n* \u039d\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b4\u03b9\u03bf\u03c1\u03af\u03b6\u03bf\u03c5\u03bd \u03c4\u03bf \u03c0\u03bf\u03c3\u03bf\u03c3\u03c4\u03cc \u03c4\u03b7\u03c2 \u03b4\u03b9\u03b1\u03c6\u03ae\u03bc\u03b9\u03c3\u03b7\u03c2 \u03c0\u03bf\u03c5 \u03ba\u03b1\u03c4\u03ac\u03c6\u03b5\u03c1\u03b5 \u03bd\u03b1 \u03c0\u03c1\u03bf\u03b2\u03bb\u03b7\u03b8\u03b5\u03af, \u03ba\u03b1\u03b8\u03ce\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03b7 \u03b4\u03b9\u03ac\u03c1\u03ba\u03b5\u03b9\u03b1 \u03c4\u03b7\u03c2 \u03c0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae\u03c2 \u03b1\u03c5\u03c4\u03ae\u03c2 \n\u039f\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03b5\u03c6\u03b1\u03c1\u03bc\u03cc\u03b6\u03bf\u03c5\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc, \u03c0\u03bf\u03c5 \u03c0\u03c1\u03bf\u03ad\u03c1\u03c7\u03bf\u03bd\u03c4\u03b1\u03b9 \u03b1\u03c0\u03cc \u03c0\u03af\u03bd\u03b1\u03ba\u03b5\u03c2 \u03ae \u03c0\u03b1\u03c1\u03b5\u03bc\u03c6\u03b5\u03c1\u03b5\u03af\u03c2 \u03c0\u03b7\u03b3\u03ad\u03c2, \u03c3\u03b5 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd, \u03c7\u03c9\u03c1\u03af\u03c2 \u03bd\u03cc\u03bc\u03b9\u03bc\u03bf \u03bb\u03cc\u03b3\u03bf, \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03c0\u03c1\u03b1\u03b3\u03bc\u03b1\u03c4\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd \u03ad\u03c1\u03b5\u03c5\u03bd\u03b1 \u03b1\u03b3\u03bf\u03c1\u03ac\u03c2 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc (\u03a3\u03ba\u03bf\u03c0\u03cc\u03c2 9)\n"},"8":{"id":8,"name":"\u039c\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7\u03c2 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5","description":"\u0397 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03ba\u03b1\u03b9 \u03b7 \u03b1\u03c0\u03bf\u03c4\u03b5\u03bb\u03b5\u03c3\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc\u03c4\u03b7\u03c4\u03b1 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03c0\u03bf\u03c5 \u03b2\u03bb\u03ad\u03c0\u03b5\u03c4\u03b5 \u03ae \u03b1\u03c5\u03c4\u03bf\u03cd \u03bc\u03b5 \u03c4\u03bf \u03bf\u03c0\u03bf\u03af\u03bf \u03b1\u03bb\u03bb\u03b7\u03bb\u03b5\u03c0\u03b9\u03b4\u03c1\u03ac\u03c4\u03b5 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03bf\u03cd\u03bd.","descriptionLegal":"\u0393\u03b9\u03b1 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03bf\u03cd\u03bd \u03c4\u03b7\u03bd \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03bf\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03bc\u03b5\u03c4\u03c1\u03bf\u03cd\u03bd \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03bd\u03b1\u03c6\u03ad\u03c1\u03bf\u03c5\u03bd \u03c0\u03ce\u03c2 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03c3\u03c4\u03b7\u03ba\u03b5 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03c3\u03c4\u03bf\u03c5\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2, \u03ba\u03b1\u03b8\u03ce\u03c2 \u03ba\u03b1\u03b9 \u03c0\u03ce\u03c2 \u03b1\u03bb\u03bb\u03b7\u03bb\u03b5\u03c0\u03af\u03b4\u03c1\u03b1\u03c3\u03b1\u03bd \u03bc\u03b5 \u03b1\u03c5\u03c4\u03cc\n* \u039d\u03b1 \u03c0\u03b1\u03c1\u03ad\u03c7\u03bf\u03c5\u03bd \u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ad\u03c2, \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ce\u03bd\u03c4\u03b1\u03c2 \u03ac\u03bc\u03b5\u03c3\u03b1 \u03bc\u03b5\u03c4\u03c1\u03ae\u03c3\u03b9\u03bc\u03b1 \u03ae \u03b3\u03bd\u03c9\u03c3\u03c4\u03ac \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c3\u03c7\u03b5\u03c4\u03b9\u03ba\u03ac \u03bc\u03b5 \u03c4\u03bf\u03c5\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2 \u03c0\u03bf\u03c5 \u03b1\u03bb\u03bb\u03b7\u03bb\u03b5\u03c0\u03af\u03b4\u03c1\u03b1\u03c3\u03b1\u03bd \u03bc\u03b5 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf\n\u039f\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03bc\u03b5\u03c4\u03c1\u03bf\u03cd\u03bd \u03b5\u03ac\u03bd \u03ba\u03b1\u03b9 \u03c0\u03ce\u03c2 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03c3\u03c4\u03b7\u03ba\u03b1\u03bd \u03bf\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 (\u03c3\u03c5\u03bc\u03c0\u03b5\u03c1\u03b9\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c4\u03c9\u03bd native \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd) \u03c3\u03b5 \u03ad\u03bd\u03b1\u03bd \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7, \u03ba\u03b1\u03b8\u03ce\u03c2 \u03ba\u03b1\u03b9 \u03c0\u03ce\u03c2 \u03b1\u03c5\u03c4\u03cc\u03c2 \u03b1\u03bb\u03bb\u03b7\u03bb\u03b5\u03c0\u03af\u03b4\u03c1\u03b1\u03c3\u03b5 \u03bc\u03b5 \u03b1\u03c5\u03c4\u03ad\u03c2.\n* \u039d\u03b1 \u03b5\u03c6\u03b1\u03c1\u03bc\u03cc\u03b6\u03bf\u03c5\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc, \u03c0\u03bf\u03c5 \u03c0\u03c1\u03bf\u03ad\u03c1\u03c7\u03bf\u03bd\u03c4\u03b1\u03b9 \u03b1\u03c0\u03cc \u03c0\u03af\u03bd\u03b1\u03ba\u03b5\u03c2 \u03ae \u03c0\u03b1\u03c1\u03b5\u03bc\u03c6\u03b5\u03c1\u03b5\u03af\u03c2 \u03c0\u03b7\u03b3\u03ad\u03c2, \u03c3\u03b5 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd, \u03c7\u03c9\u03c1\u03af\u03c2 \u03bd\u03cc\u03bc\u03b9\u03bc\u03bf \u03bb\u03cc\u03b3\u03bf, \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03c0\u03c1\u03b1\u03b3\u03bc\u03b1\u03c4\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd \u03ad\u03c1\u03b5\u03c5\u03bd\u03b1 \u03b1\u03b3\u03bf\u03c1\u03ac\u03c2 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc (\u03a3\u03ba\u03bf\u03c0\u03cc\u03c2 9)\n"},"9":{"id":9,"name":"\u03a0\u03c1\u03b1\u03b3\u03bc\u03b1\u03c4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03ad\u03c1\u03b5\u03c5\u03bd\u03b1\u03c2 \u03b1\u03b3\u03bf\u03c1\u03ac\u03c2 \u03ba\u03b1\u03b9 \u03ac\u03bd\u03c4\u03bb\u03b7\u03c3\u03b7 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03b9\u03ce\u03bd \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03b5\u03af \u03ad\u03c1\u03b5\u03c5\u03bd\u03b1 \u03b1\u03b3\u03bf\u03c1\u03ac\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ac\u03bd\u03c4\u03bb\u03b7\u03c3\u03b7 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03b9\u03ce\u03bd \u03c3\u03c7\u03b5\u03c4\u03b9\u03ba\u03ac \u03bc\u03b5 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03c0\u03b9\u03c3\u03ba\u03ad\u03c0\u03c4\u03bf\u03bd\u03c4\u03b1\u03b9 \u03b9\u03c3\u03c4\u03cc\u03c4\u03bf\u03c0\u03bf\u03c5\u03c2 \u03ae \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ad\u03c2 \u03ba\u03b1\u03b9 \u03b2\u03bb\u03ad\u03c0\u03bf\u03c5\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2.","descriptionLegal":"\u0393\u03b9\u03b1 \u03bd\u03b1 \u03c0\u03c1\u03b1\u03b3\u03bc\u03b1\u03c4\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd \u03ad\u03c1\u03b5\u03c5\u03bd\u03b5\u03c2 \u03b1\u03b3\u03bf\u03c1\u03ac\u03c2 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc, \u03bf\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03c0\u03b1\u03c1\u03ad\u03c7\u03bf\u03c5\u03bd \u03c3\u03c5\u03b3\u03ba\u03b5\u03bd\u03c4\u03c1\u03c9\u03c4\u03b9\u03ba\u03ad\u03c2 \u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ad\u03c2 \u03c3\u03c4\u03bf\u03c5\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03b9\u03b6\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5\u03c2 \u03ae \u03c4\u03bf\u03c5\u03c2 \u03b1\u03bd\u03c4\u03b9\u03c0\u03c1\u03bf\u03c3\u03ce\u03c0\u03bf\u03c5\u03c2 \u03c4\u03bf\u03c5\u03c2 \u03c3\u03c7\u03b5\u03c4\u03b9\u03ba\u03ac \u03bc\u03b5 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03c0\u03c1\u03bf\u03c3\u03ad\u03b3\u03b3\u03b9\u03c3\u03b1\u03bd \u03bf\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03c4\u03bf\u03c5\u03c2, \u03bc\u03ad\u03c3\u03c9 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03b9\u03ce\u03bd \u03c0\u03bf\u03c5 \u03c0\u03c1\u03bf\u03ad\u03c1\u03c7\u03bf\u03bd\u03c4\u03b1\u03b9 \u03b1\u03c0\u03cc \u03c0\u03af\u03bd\u03b1\u03ba\u03b5\u03c2 \u03ae \u03c0\u03b1\u03c1\u03b5\u03bc\u03c6\u03b5\u03c1\u03b5\u03af\u03c2 \u03c0\u03b7\u03b3\u03ad\u03c2.\n* \u039d\u03b1 \u03c0\u03b1\u03c1\u03ad\u03c7\u03bf\u03c5\u03bd \u03c3\u03c5\u03b3\u03ba\u03b5\u03bd\u03c4\u03c1\u03c9\u03c4\u03b9\u03ba\u03ad\u03c2 \u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ad\u03c2 \u03c3\u03c4\u03bf\u03c5\u03c2 \u03b5\u03ba\u03b4\u03cc\u03c4\u03b5\u03c2 \u03c3\u03c7\u03b5\u03c4\u03b9\u03ba\u03ac \u03bc\u03b5 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c3\u03c4\u03b1 \u03bf\u03c0\u03bf\u03af\u03b1 \u03c0\u03c1\u03bf\u03b2\u03bb\u03ae\u03b8\u03b7\u03ba\u03b5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf/\u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ae \u03c4\u03b1 \u03bf\u03c0\u03bf\u03af\u03b1 \u03b1\u03bb\u03bb\u03b7\u03bb\u03b5\u03c0\u03af\u03b4\u03c1\u03b1\u03c3\u03b1\u03bd \u03bc\u03b5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf/\u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03c4\u03bf\u03c5 \u03b9\u03c3\u03c4\u03cc\u03c4\u03bf\u03c0\u03bf\u03cd \u03c4\u03bf\u03c5\u03c2, \u03b1\u03be\u03b9\u03bf\u03c0\u03bf\u03b9\u03ce\u03bd\u03c4\u03b1\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03c0\u03bf\u03c5 \u03c0\u03c1\u03bf\u03ad\u03c1\u03c7\u03bf\u03bd\u03c4\u03b1\u03b9 \u03b1\u03c0\u03cc \u03c0\u03af\u03bd\u03b1\u03ba\u03b5\u03c2 \u03ae \u03c0\u03b1\u03c1\u03b5\u03bc\u03c6\u03b5\u03c1\u03b5\u03af\u03c2 \u03c0\u03b7\u03b3\u03ad\u03c2. \n* \u039d\u03b1 \u03c3\u03c5\u03bd\u03b4\u03ad\u03bf\u03c5\u03bd \u03bc\u03b7 \u03b7\u03bb\u03b5\u03ba\u03c4\u03c1\u03bf\u03bd\u03b9\u03ba\u03ac \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03bc\u03b5 \u03ad\u03bd\u03b1\u03bd \u03b4\u03b9\u03b1\u03b4\u03b9\u03ba\u03c4\u03c5\u03b1\u03ba\u03cc \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03b3\u03b9\u03b1 \u03c3\u03ba\u03bf\u03c0\u03bf\u03cd\u03c2 \u03ad\u03c1\u03b5\u03c5\u03bd\u03b1\u03c2 \u03b1\u03b3\u03bf\u03c1\u03ac\u03c2 \u03ba\u03b1\u03b9 \u03ac\u03bd\u03c4\u03bb\u03b7\u03c3\u03b7 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03b9\u03ce\u03bd \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc, \u03b5\u03ac\u03bd \u03bf\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03ad\u03c7\u03bf\u03c5\u03bd \u03b4\u03b7\u03bb\u03ce\u03c3\u03b5\u03b9 \u03cc\u03c4\u03b9 \u03b1\u03bd\u03c4\u03b9\u03c3\u03c4\u03bf\u03b9\u03c7\u03af\u03b6\u03bf\u03c5\u03bd \u03ba\u03b1\u03b9 \u03c3\u03c5\u03bd\u03b4\u03c5\u03ac\u03b6\u03bf\u03c5\u03bd \u03bc\u03b7 \u03b7\u03bb\u03b5\u03ba\u03c4\u03c1\u03bf\u03bd\u03b9\u03ba\u03ad\u03c2 \u03c0\u03b7\u03b3\u03ad\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd (\u03a7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc 1)\n\u039f\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd: \n* \u039d\u03b1 \u03bc\u03b5\u03c4\u03c1\u03bf\u03cd\u03bd \u03c4\u03b7\u03bd \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03ba\u03b1\u03b9 \u03c4\u03b7\u03bd \u03b1\u03c0\u03bf\u03c4\u03b5\u03bb\u03b5\u03c3\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc\u03c4\u03b7\u03c4\u03b1 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03c0\u03bf\u03c5 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03c3\u03c4\u03b7\u03ba\u03b1\u03bd \u03c3\u03b5 \u03ad\u03bd\u03b1\u03bd \u03c3\u03c5\u03b3\u03ba\u03b5\u03ba\u03c1\u03b9\u03bc\u03ad\u03bd\u03bf \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03ae \u03c0\u03bf\u03c5 \u03b1\u03bb\u03bb\u03b7\u03bb\u03b5\u03c0\u03af\u03b4\u03c1\u03b1\u03c3\u03b5 \u03bc\u03b5 \u03b1\u03c5\u03c4\u03ac, \u03c7\u03c9\u03c1\u03af\u03c2 \u03bd\u03cc\u03bc\u03b9\u03bc\u03bf \u03bb\u03cc\u03b3\u03bf, \u03bc\u03b5 \u03c3\u03ba\u03bf\u03c0\u03cc \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03bf\u03cd\u03bd \u03c4\u03b7\u03bd \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd.\n* \u039d\u03b1 \u03bc\u03b5\u03c4\u03c1\u03bf\u03cd\u03bd \u03c0\u03bf\u03b9\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03c3\u03c4\u03b7\u03ba\u03b5 \u03c3\u03b5 \u03ad\u03bd\u03b1\u03bd \u03c3\u03c5\u03b3\u03ba\u03b5\u03ba\u03c1\u03b9\u03bc\u03ad\u03bd\u03bf \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03ba\u03b1\u03b9 \u03c0\u03ce\u03c2 \u03b1\u03c5\u03c4\u03cc\u03c2 \u03b1\u03bb\u03bb\u03b7\u03bb\u03b5\u03c0\u03af\u03b4\u03c1\u03b1\u03c3\u03b5 \u03bc\u03b5 \u03b1\u03c5\u03c4\u03cc, \u03c7\u03c9\u03c1\u03af\u03c2 \u03bd\u03cc\u03bc\u03b9\u03bc\u03bf \u03bb\u03cc\u03b3\u03bf, \u03bc\u03b5 \u03c3\u03ba\u03bf\u03c0\u03cc \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03bf\u03cd\u03bd \u03c4\u03b7\u03bd \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \n"},"10":{"id":10,"name":"\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ba\u03b1\u03b9 \u03b2\u03b5\u03bb\u03c4\u03af\u03c9\u03c3\u03b7 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd","description":"\u03a4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c3\u03b1\u03c2 \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b2\u03b5\u03bb\u03c4\u03af\u03c9\u03c3\u03b7 \u03c4\u03c9\u03bd \u03c5\u03c0\u03b1\u03c1\u03c7\u03cc\u03bd\u03c4\u03c9\u03bd \u03c3\u03c5\u03c3\u03c4\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03ba\u03b1\u03b9 \u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03b9\u03ba\u03bf\u03cd, \u03ba\u03b1\u03b8\u03ce\u03c2 \u03ba\u03b1\u03b9 \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03bd\u03ad\u03c9\u03bd \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd.","descriptionLegal":"\u0393\u03b9\u03b1 \u03bd\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03bf\u03cd\u03bd \u03bd\u03ad\u03b1 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03b1 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b2\u03b5\u03bb\u03c4\u03b9\u03ce\u03bd\u03bf\u03c5\u03bd \u03c4\u03b1 \u03c5\u03c0\u03ac\u03c1\u03c7\u03bf\u03bd\u03c4\u03b1, \u03bf\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b2\u03b5\u03bb\u03c4\u03b9\u03ce\u03bd\u03bf\u03c5\u03bd \u03c4\u03b1 \u03c5\u03c0\u03ac\u03c1\u03c7\u03bf\u03bd\u03c4\u03b1 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03b1 \u03c4\u03bf\u03c5\u03c2 \u03bc\u03b5 \u03bd\u03ad\u03b1 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03bf\u03cd\u03bd \u03ba\u03b1\u03b9\u03bd\u03bf\u03cd\u03c1\u03b3\u03b9\u03b1 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03b1\n* \u039d\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03bf\u03cd\u03bd \u03bd\u03ad\u03b1 \u03bc\u03bf\u03bd\u03c4\u03ad\u03bb\u03b1 \u03ba\u03b1\u03b9 \u03b1\u03bb\u03b3\u03cc\u03c1\u03b9\u03b8\u03bc\u03bf\u03c5\u03c2 \u03bc\u03ad\u03c3\u03c9 \u03bc\u03b7\u03c7\u03b1\u03bd\u03b9\u03ba\u03ae\u03c2 \u03bc\u03ac\u03b8\u03b7\u03c3\u03b7\u03c2\n\u039f\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03b4\u03b9\u03b5\u03be\u03ac\u03b3\u03bf\u03c5\u03bd \u03b3\u03b9\u03b1 \u03b1\u03c5\u03c4\u03cc\u03bd \u03c4\u03bf\u03bd \u03c3\u03ba\u03bf\u03c0\u03cc \u03ac\u03bb\u03bb\u03b5\u03c2 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2 \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c0\u03bf\u03c5 \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03bf\u03bd\u03c4\u03b1\u03b9 \u03b3\u03b9\u03b1 \u03b4\u03b9\u03b1\u03c6\u03bf\u03c1\u03b5\u03c4\u03b9\u03ba\u03cc \u03c3\u03ba\u03bf\u03c0\u03cc\n"}},"specialPurposes":{"1":{"id":1,"name":"\u0395\u03be\u03b1\u03c3\u03c6\u03ac\u03bb\u03b9\u03c3\u03b7 \u03b1\u03c3\u03c6\u03ac\u03bb\u03b5\u03b9\u03b1\u03c2, \u03c0\u03c1\u03cc\u03bb\u03b7\u03c8\u03b7 \u03b1\u03c0\u03ac\u03c4\u03b7\u03c2 \u03ba\u03b1\u03b9 \u03b5\u03bd\u03c4\u03bf\u03c0\u03b9\u03c3\u03bc\u03cc\u03c2 \u03c3\u03c6\u03b1\u03bb\u03bc\u03ac\u03c4\u03c9\u03bd","description":"\u03a4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c3\u03b1\u03c2 \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03c0\u03b1\u03c1\u03b1\u03ba\u03bf\u03bb\u03bf\u03cd\u03b8\u03b7\u03c3\u03b7 \u03ba\u03b1\u03b9 \u03c0\u03c1\u03cc\u03bb\u03b7\u03c8\u03b7 \u03c0\u03b1\u03c1\u03ac\u03bd\u03bf\u03bc\u03b7\u03c2 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2, \u03ba\u03b1\u03b8\u03ce\u03c2 \u03ba\u03b1\u03b9 \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b4\u03b9\u03b1\u03c3\u03c6\u03ac\u03bb\u03b9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03bf\u03c1\u03b8\u03ae\u03c2 \u03ba\u03b1\u03b9 \u03b1\u03c3\u03c6\u03b1\u03bb\u03bf\u03cd\u03c2 \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03af\u03b1\u03c2 \u03c4\u03c9\u03bd \u03c3\u03c5\u03c3\u03c4\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03b4\u03b9\u03ba\u03b1\u03c3\u03b9\u03ce\u03bd.","descriptionLegal":"\u0393\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c3\u03c6\u03b1\u03bb\u03af\u03b6\u03bf\u03c5\u03bd \u03c4\u03b7\u03bd \u03b1\u03c3\u03c6\u03ac\u03bb\u03b5\u03b9\u03b1, \u03bd\u03b1 \u03c0\u03c1\u03bf\u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03bf\u03c5\u03bd \u03c4\u03b9\u03c2 \u03b1\u03c0\u03ac\u03c4\u03b5\u03c2 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03bd\u03c4\u03bf\u03c0\u03af\u03b6\u03bf\u03c5\u03bd \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1\u03c4\u03b1, \u03bf\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03b4\u03b9\u03b1\u03c3\u03c6\u03b1\u03bb\u03af\u03b6\u03bf\u03c5\u03bd \u03cc\u03c4\u03b9 \u03c4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b4\u03b9\u03b1\u03b2\u03b9\u03b2\u03ac\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03bc\u03b5 \u03b1\u03c3\u03c6\u03ac\u03bb\u03b5\u03b9\u03b1 \n* \u039d\u03b1 \u03b5\u03bd\u03c4\u03bf\u03c0\u03af\u03b6\u03bf\u03c5\u03bd \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03c4\u03c1\u03ad\u03c0\u03bf\u03c5\u03bd \u03ba\u03b1\u03ba\u03cc\u03b2\u03bf\u03c5\u03bb\u03b5\u03c2, \u03b4\u03cc\u03bb\u03b9\u03b5\u03c2, \u03bc\u03b7 \u03ad\u03b3\u03ba\u03c5\u03c1\u03b5\u03c2 \u03ba\u03b1\u03b9 \u03c0\u03b1\u03c1\u03ac\u03bd\u03bf\u03bc\u03b5\u03c2 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b5\u03c2.\n* \u039d\u03b1 \u03c6\u03c1\u03bf\u03bd\u03c4\u03af\u03b6\u03bf\u03c5\u03bd \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03c3\u03c9\u03c3\u03c4\u03ae \u03ba\u03b1\u03b9 \u03b1\u03c0\u03bf\u03c4\u03b5\u03bb\u03b5\u03c3\u03bc\u03b1\u03c4\u03b9\u03ba\u03ae \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c4\u03c9\u03bd \u03c3\u03c5\u03c3\u03c4\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03b4\u03b9\u03ba\u03b1\u03c3\u03b9\u03ce\u03bd, \u03c3\u03c5\u03bc\u03c0\u03b5\u03c1\u03b9\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03bf\u03bc\u03ad\u03bd\u03b7\u03c2 \u03c4\u03b7\u03c2 \u03c0\u03b1\u03c1\u03b1\u03ba\u03bf\u03bb\u03bf\u03cd\u03b8\u03b7\u03c3\u03b7\u03c2 \u03ba\u03b1\u03b9 \u03b5\u03bd\u03af\u03c3\u03c7\u03c5\u03c3\u03b7\u03c2 \u03c4\u03b7\u03c2 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7\u03c2 \u03c4\u03c9\u03bd \u03c3\u03c5\u03c3\u03c4\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03b4\u03b9\u03ba\u03b1\u03c3\u03b9\u03ce\u03bd \u03c0\u03bf\u03c5 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd\u03c4\u03b1\u03b9 \u03b3\u03b9\u03b1 \u03b5\u03c0\u03b9\u03c4\u03c1\u03b5\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5\u03c2 \u03c3\u03ba\u03bf\u03c0\u03bf\u03cd\u03c2\n\u039f\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03b4\u03b9\u03b5\u03be\u03ac\u03b3\u03bf\u03c5\u03bd \u03b3\u03b9\u03b1 \u03b1\u03c5\u03c4\u03cc\u03bd \u03c4\u03bf\u03bd \u03c3\u03ba\u03bf\u03c0\u03cc \u03ac\u03bb\u03bb\u03b5\u03c2 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2 \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c0\u03bf\u03c5 \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03bf\u03bd\u03c4\u03b1\u03b9 \u03b3\u03b9\u03b1 \u03b4\u03b9\u03b1\u03c6\u03bf\u03c1\u03b5\u03c4\u03b9\u03ba\u03cc \u03c3\u03ba\u03bf\u03c0\u03cc.\n\u03a3\u03b7\u03bc\u03b5\u03af\u03c9\u03c3\u03b7: \u03a4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c0\u03bf\u03c5 \u03c3\u03c5\u03bb\u03bb\u03ad\u03b3\u03bf\u03bd\u03c4\u03b1\u03b9 \u03ba\u03b1\u03b9 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd\u03c4\u03b1\u03b9 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03b1\u03c3\u03c6\u03ac\u03bb\u03b5\u03b9\u03b1, \u03c4\u03b7\u03bd \u03c0\u03c1\u03cc\u03bb\u03b7\u03c8\u03b7 \u03c4\u03b7\u03c2 \u03b1\u03c0\u03ac\u03c4\u03b7\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf\u03bd \u03b5\u03bd\u03c4\u03bf\u03c0\u03b9\u03c3\u03bc\u03cc \u03ba\u03b1\u03b9 \u03b1\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03c3\u03c6\u03b1\u03bb\u03bc\u03ac\u03c4\u03c9\u03bd \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u03c5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03c4\u03ae \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c0\u03b5\u03c1\u03b9\u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03bf\u03c5\u03bd \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2 \u03c0\u03bf\u03c5 \u03b1\u03c0\u03bf\u03c3\u03c4\u03ad\u03bb\u03bb\u03bf\u03bd\u03c4\u03b1\u03b9 \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b1 \u03b3\u03b9\u03b1 \u03b1\u03bd\u03b1\u03b3\u03bd\u03ce\u03c1\u03b9\u03c3\u03b7, \u03b1\u03ba\u03c1\u03b9\u03b2\u03ae \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b5\u03c9\u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03ae\u03c2 \u03ba\u03b1\u03c4\u03b1\u03bd\u03bf\u03bc\u03ae\u03c2 \u03ba\u03b1\u03b9 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c0\u03bf\u03c5 \u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03bf\u03bd\u03c4\u03b1\u03b9 \u03bc\u03b5 \u03b5\u03bd\u03b5\u03c1\u03b3\u03ae \u03c3\u03ac\u03c1\u03c9\u03c3\u03b7 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ce\u03bd \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2 \u03b3\u03b9\u03b1 \u03b1\u03bd\u03b1\u03b3\u03bd\u03ce\u03c1\u03b9\u03c3\u03b7 \u03c7\u03c9\u03c1\u03af\u03c2 \u03be\u03b5\u03c7\u03c9\u03c1\u03b9\u03c3\u03c4\u03ae \u03b1\u03c0\u03bf\u03ba\u03ac\u03bb\u03c5\u03c8\u03b7 \u03ae /opt in.\n"},"2":{"id":2,"name":"\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5","description":"\u0397 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae \u03c3\u03b1\u03c2 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03b5\u03b9 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03c3\u03c4\u03ad\u03bb\u03bd\u03b5\u03b9 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c0\u03bf\u03c5 \u03c3\u03b1\u03c2 \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03bf\u03c5\u03bd \u03bd\u03b1 \u03b2\u03bb\u03ad\u03c0\u03b5\u03c4\u03b5 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03bb\u03bb\u03b7\u03bb\u03b5\u03c0\u03b9\u03b4\u03c1\u03ac\u03c4\u03b5 \u03bc\u03b5 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf.","descriptionLegal":"\u0393\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03b6\u03bf\u03c5\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03bd\u03c4\u03b1\u03c0\u03bf\u03ba\u03c1\u03af\u03bd\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c3\u03b5 \u03c4\u03b5\u03c7\u03bd\u03b9\u03ba\u03ac \u03b1\u03b9\u03c4\u03ae\u03bc\u03b1\u03c4\u03b1, \u03bf\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd \u03c4\u03b7 \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 IP \u03b5\u03bd\u03cc\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03c3\u03bf\u03c5\u03bd \u03bc\u03b9\u03b1 \u03b4\u03b9\u03b1\u03c6\u03ae\u03bc\u03b9\u03c3\u03b7 \u03bc\u03ad\u03c3\u03c9 \u03b4\u03b9\u03b1\u03b4\u03b9\u03ba\u03c4\u03cd\u03bf\u03c5\n* \u039d\u03b1 \u03b1\u03c0\u03b1\u03bd\u03c4\u03bf\u03cd\u03bd \u03c3\u03c4\u03b7\u03bd \u03b1\u03bb\u03bb\u03b7\u03bb\u03b5\u03c0\u03af\u03b4\u03c1\u03b1\u03c3\u03b7 \u03b5\u03bd\u03cc\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03bc\u03b5 \u03bc\u03b9\u03b1 \u03b4\u03b9\u03b1\u03c6\u03ae\u03bc\u03b9\u03c3\u03b7 \u03c3\u03c4\u03ad\u03bb\u03bd\u03bf\u03bd\u03c4\u03ac\u03c2 \u03c4\u03bf\u03bd \u03c3\u03b5 \u03bc\u03b9\u03b1 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1 \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd\n* \u039d\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd \u03c4\u03b7 \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 IP \u03b5\u03bd\u03cc\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03c3\u03bf\u03c5\u03bd \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03bc\u03ad\u03c3\u03c9 \u03b4\u03b9\u03b1\u03b4\u03b9\u03ba\u03c4\u03cd\u03bf\u03c5\n* \u039d\u03b1 \u03b1\u03c0\u03b1\u03bd\u03c4\u03bf\u03cd\u03bd \u03c3\u03c4\u03b7\u03bd \u03b1\u03bb\u03bb\u03b7\u03bb\u03b5\u03c0\u03af\u03b4\u03c1\u03b1\u03c3\u03b7 \u03b5\u03bd\u03cc\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03bc\u03b5 \u03c3\u03c5\u03b3\u03ba\u03b5\u03ba\u03c1\u03b9\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03c3\u03c4\u03ad\u03bb\u03bd\u03bf\u03bd\u03c4\u03ac\u03c2 \u03c4\u03bf\u03bd \u03c3\u03b5 \u03bc\u03b9\u03b1 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1 \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd\n* \u039d\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c3\u03c7\u03b5\u03c4\u03b9\u03ba\u03ac \u03bc\u03b5 \u03c4\u03bf\u03bd \u03c4\u03cd\u03c0\u03bf \u03c4\u03b7\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03b7\u03bd \u03b9\u03ba\u03b1\u03bd\u03cc\u03c4\u03b7\u03c4\u03ac \u03c4\u03b7\u03c2 \u03bd\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03b6\u03b5\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ae \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf (\u03c0.\u03c7. \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03c0\u03c1\u03bf\u03b2\u03ac\u03bb\u03bf\u03c5\u03bd \u03c4\u03bf \u03ba\u03b1\u03c4\u03ac\u03bb\u03bb\u03b7\u03bb\u03bf \u03bc\u03ad\u03b3\u03b5\u03b8\u03bf\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03b9\u03c3\u03c4\u03b9\u03ba\u03bf\u03cd \u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ae \u03c4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03c4\u03bf\u03c5 \u03b2\u03af\u03bd\u03c4\u03b5\u03bf \u03c3\u03b5 \u03bc\u03bf\u03c1\u03c6\u03ae \u03c0\u03bf\u03c5 \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03b1\u03c0\u03cc \u03c4\u03b7 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae)\n\u039f\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03b4\u03b9\u03b5\u03be\u03ac\u03b3\u03bf\u03c5\u03bd \u03b3\u03b9\u03b1 \u03b1\u03c5\u03c4\u03cc\u03bd \u03c4\u03bf\u03bd \u03c3\u03ba\u03bf\u03c0\u03cc \u03ac\u03bb\u03bb\u03b5\u03c2 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2 \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c0\u03bf\u03c5 \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03bf\u03bd\u03c4\u03b1\u03b9 \u03b3\u03b9\u03b1 \u03b4\u03b9\u03b1\u03c6\u03bf\u03c1\u03b5\u03c4\u03b9\u03ba\u03cc \u03c3\u03ba\u03bf\u03c0\u03cc\n"}},"features":{"1":{"id":1,"name":"\u0391\u03bd\u03c4\u03b9\u03c3\u03c4\u03bf\u03b9\u03c7\u03ae\u03c3\u03c4\u03b5 \u03ba\u03b1\u03b9 \u03c4\u03b1\u03b9\u03c1\u03b9\u03ac\u03be\u03c4\u03b5 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 offline \u03c0\u03b7\u03b3\u03ce\u03bd","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c3\u03c5\u03bd\u03b4\u03c5\u03b1\u03c3\u03c4\u03bf\u03cd\u03bd \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b1\u03c0\u03cc \u03bc\u03b7 \u03b7\u03bb\u03b5\u03ba\u03c4\u03c1\u03bf\u03bd\u03b9\u03ba\u03ad\u03c2 \u03c0\u03b7\u03b3\u03ad\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03bc\u03b5 \u03c4\u03b7 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03ac \u03c3\u03b1\u03c2 \u03c3\u03c4\u03bf \u03b4\u03b9\u03b1\u03b4\u03af\u03ba\u03c4\u03c5\u03bf \u03c0\u03c1\u03bf\u03c2 \u03c5\u03c0\u03bf\u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7 \u03b5\u03bd\u03cc\u03c2 \u03ae \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03c9\u03bd \u03c3\u03ba\u03bf\u03c0\u03ce\u03bd.","descriptionLegal":"\u039f\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd: \n* \u039d\u03b1 \u03c3\u03c5\u03bd\u03b4\u03c5\u03ac\u03b6\u03bf\u03c5\u03bd \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c0\u03bf\u03c5 \u03b1\u03c0\u03bf\u03ba\u03c4\u03ae\u03b8\u03b7\u03ba\u03b1\u03bd \u03b5\u03ba\u03c4\u03cc\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7\u03c2 \u03bc\u03b5 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c0\u03bf\u03c5 \u03c3\u03c5\u03bb\u03bb\u03ad\u03c7\u03b8\u03b7\u03ba\u03b1\u03bd \u03b7\u03bb\u03b5\u03ba\u03c4\u03c1\u03bf\u03bd\u03b9\u03ba\u03ac \u03c0\u03c1\u03bf\u03c2 \u03c5\u03c0\u03bf\u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7 \u03b5\u03bd\u03cc\u03c2 \u03ae \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03c9\u03bd \u03c3\u03ba\u03bf\u03c0\u03ce\u03bd \u03ae \u03b5\u03b9\u03b4\u03b9\u03ba\u03ce\u03bd \u03c3\u03ba\u03bf\u03c0\u03ce\u03bd\n"},"2":{"id":2,"name":"\u03a3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03bf\u03c1\u03b5\u03c4\u03b9\u03ba\u03ce\u03bd \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ce\u03bd","description":"\u0394\u03b9\u03b1\u03c6\u03bf\u03c1\u03b5\u03c4\u03b9\u03ba\u03ad\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ad\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03c5\u03bd\u03b1\u03c4\u03cc\u03bd \u03bd\u03b1 \u03ba\u03b1\u03b8\u03bf\u03c1\u03b9\u03c3\u03c4\u03bf\u03cd\u03bd \u03cc\u03c4\u03b9 \u03b1\u03bd\u03ae\u03ba\u03bf\u03c5\u03bd \u03c3\u03b5 \u03b5\u03c3\u03ac\u03c2 \u03ae \u03c4\u03bf \u03bd\u03bf\u03b9\u03ba\u03bf\u03ba\u03c5\u03c1\u03b9\u03cc \u03c3\u03b1\u03c2 \u03bc\u03b5 \u03c3\u03c4\u03b7 \u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7 \u03b5\u03bd\u03cc\u03c2 \u03ae \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03bf\u03c4\u03ad\u03c1\u03c9\u03bd \u03c3\u03ba\u03bf\u03c0\u03ce\u03bd","descriptionLegal":"\u039f\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03c3\u03c5\u03bc\u03c0\u03b5\u03c1\u03b1\u03af\u03bd\u03bf\u03c5\u03bd \u03cc\u03c4\u03b9 \u03b4\u03cd\u03bf \u03ae \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b5\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ad\u03c2 \u03b1\u03bd\u03ae\u03ba\u03bf\u03c5\u03bd \u03c3\u03c4\u03bf\u03bd \u03af\u03b4\u03b9\u03bf \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03ae \u03c4\u03bf \u03af\u03b4\u03b9\u03bf \u03bd\u03bf\u03b9\u03ba\u03bf\u03ba\u03c5\u03c1\u03b9\u03cc\n* \u039d\u03b1 \u03c0\u03b9\u03b8\u03b1\u03bd\u03bf\u03bb\u03bf\u03b3\u03bf\u03cd\u03bd \u03cc\u03c4\u03b9 \u03b4\u03cd\u03bf \u03ae \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b5\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ad\u03c2 \u03b1\u03bd\u03ae\u03ba\u03bf\u03c5\u03bd \u03c3\u03c4\u03bf\u03bd \u03af\u03b4\u03b9\u03bf \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03ae \u03c4\u03bf \u03af\u03b4\u03b9\u03bf \u03bd\u03bf\u03b9\u03ba\u03bf\u03ba\u03c5\u03c1\u03b9\u03cc\n* \u039d\u03b1 \u03c3\u03b1\u03c1\u03ce\u03bd\u03bf\u03c5\u03bd \u03b5\u03bd\u03b5\u03c1\u03b3\u03ac \u03c4\u03b1 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03bc\u03b9\u03b1\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b1\u03bd\u03b1\u03b3\u03bd\u03c9\u03c1\u03af\u03b6\u03bf\u03c5\u03bd \u03c4\u03b7\u03bd \u03c4\u03b1\u03c5\u03c4\u03cc\u03c4\u03b7\u03c4\u03ac \u03c4\u03b7\u03c2 \u03bc\u03b5 \u03b1\u03ba\u03c1\u03af\u03b2\u03b5\u03b9\u03b1 \u03ae \u03ba\u03b1\u03c4\u03ac \u03c0\u03c1\u03bf\u03c3\u03ad\u03b3\u03b3\u03b9\u03c3\u03b7, \u03c3\u03b5 \u03c0\u03b5\u03c1\u03af\u03c0\u03c4\u03c9\u03c3\u03b7 \u03c0\u03bf\u03c5 \u03bf\u03b9 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2 \u03c4\u03bf\u03c5\u03c2 \u03ad\u03c7\u03bf\u03c5\u03bd \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c8\u03b5\u03b9 \u03c4\u03b7 \u03b4\u03b9\u03b1\u03b4\u03b9\u03ba\u03b1\u03c3\u03af\u03b1 \u03b1\u03c5\u03c4\u03ae (\u0395\u03b9\u03b4\u03b9\u03ba\u03cc \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc 2)\n"},"3":{"id":3,"name":"\u039b\u03ae\u03c8\u03b7 \u03ba\u03b1\u03b9 \u03c7\u03c1\u03ae\u03c3\u03b7 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ce\u03bd \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ce\u03bd \u03c0\u03bf\u03c5 \u03b1\u03c0\u03b5\u03c3\u03c4\u03ac\u03bb\u03b7\u03c3\u03b1\u03bd \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b1\u03c5\u03c4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7","description":"\u0397 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae \u03c3\u03b1\u03c2 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b4\u03b9\u03b1\u03ba\u03c1\u03af\u03bd\u03b5\u03c4\u03b1\u03b9 \u03b1\u03c0\u03cc \u03ac\u03bb\u03bb\u03b5\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ad\u03c2 \u03b2\u03ac\u03c3\u03b5\u03b9 \u03c4\u03c9\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03b9\u03ce\u03bd \u03c0\u03bf\u03c5 \u03b1\u03c0\u03bf\u03c3\u03c4\u03ad\u03bb\u03bb\u03b5\u03b9 \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b1, \u03cc\u03c0\u03c9\u03c2 \u03b7 \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 IP \u03ae \u03bf \u03c4\u03cd\u03c0\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03c0\u03c1\u03bf\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c0\u03b5\u03c1\u03b9\u03ae\u03b3\u03b7\u03c3\u03b7\u03c2.","descriptionLegal":"\u039b\u03ae\u03c8\u03b7 \u03ba\u03b1\u03b9 \u03c7\u03c1\u03ae\u03c3\u03b7 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ce\u03bd \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ce\u03bd \u03c0\u03bf\u03c5 \u03b1\u03c0\u03b5\u03c3\u03c4\u03ac\u03bb\u03b7\u03c3\u03b1\u03bd \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b1\u03c5\u03c4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\n* \u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03c3\u03c4\u03b5 \u03ad\u03bd\u03b1 \u03b1\u03bd\u03b1\u03b3\u03bd\u03c9\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ce\u03bd\u03c4\u03b1\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c0\u03bf\u03c5 \u03c3\u03c5\u03bb\u03bb\u03ad\u03b3\u03bf\u03bd\u03c4\u03b1\u03b9 \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b1 \u03b1\u03c0\u03cc \u03bc\u03b9\u03b1 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae \u03b3\u03b9\u03b1 \u03c3\u03c5\u03b3\u03ba\u03b5\u03ba\u03c1\u03b9\u03bc\u03ad\u03bd\u03b1 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac, \u03c0.\u03c7. \u0394\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 IP, \u03c3\u03c5\u03bc\u03b2\u03bf\u03bb\u03bf\u03c3\u03b5\u03b9\u03c1\u03ac \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7-\u03c0\u03b1\u03c1\u03ac\u03b3\u03bf\u03bd\u03c4\u03b1.\n* \u03a7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03c4\u03b5 \u03ad\u03bd\u03b1 \u03c4\u03ad\u03c4\u03bf\u03b9\u03bf \u03b1\u03bd\u03b1\u03b3\u03bd\u03c9\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03c0\u03b9\u03c7\u03b5\u03b9\u03c1\u03ae\u03c3\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b5\u03c0\u03b1\u03bd\u03b1\u03c0\u03c1\u03bf\u03c3\u03b4\u03b9\u03bf\u03c1\u03af\u03c3\u03b5\u03c4\u03b5 \u03bc\u03b9\u03b1 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae.\n\u039f\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03c3\u03bf\u03c5\u03bd \u03ad\u03bd\u03b1 \u03b1\u03bd\u03b1\u03b3\u03bd\u03c9\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ce\u03bd\u03c4\u03b1\u03c2 \u03c4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c0\u03bf\u03c5 \u03c3\u03c5\u03bb\u03bb\u03ad\u03b3\u03bf\u03bd\u03c4\u03b1\u03b9 \u03bc\u03ad\u03c3\u03c9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03ae\u03c2 \u03c3\u03ac\u03c1\u03c9\u03c3\u03b7\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae \u03b3\u03b9\u03b1 \u03b5\u03b9\u03b4\u03b9\u03ba\u03ac \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac, \u03c0.\u03c7. \u03b5\u03b3\u03ba\u03b1\u03c4\u03b5\u03c3\u03c4\u03b7\u03bc\u03ad\u03bd\u03b7 \u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03bf\u03c3\u03b5\u03b9\u03c1\u03ac \u03ae \u03bf\u03b8\u03cc\u03bd\u03b7 \u03c7\u03c9\u03c1\u03af\u03c2 \u03c7\u03c9\u03c1\u03b9\u03c3\u03c4\u03ae \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03c3\u03c5\u03bc\u03bc\u03b5\u03c4\u03bf\u03c7\u03ae\u03c2 \u03c4\u03c9\u03bd \u03c7\u03c1\u03b7\u03c3\u03c4\u03ce\u03bd \u03b3\u03b9\u03b1 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03b1\u03bd\u03b1\u03b3\u03bd\u03ce\u03c1\u03b9\u03c3\u03b7\u03c2 \u03bc\u03b5 \u03b5\u03bd\u03b5\u03c1\u03b3\u03ae \u03c3\u03ac\u03c1\u03c9\u03c3\u03b7 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2.\n* \u039d\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03bf\u03c5\u03bd \u03ad\u03bd\u03b1 \u03c4\u03ad\u03c4\u03bf\u03b9\u03bf \u03b1\u03bd\u03b1\u03b3\u03bd\u03c9\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03c0\u03b1\u03bd\u03b1\u03c0\u03c1\u03bf\u03c3\u03b4\u03b9\u03bf\u03c1\u03af\u03c3\u03b5\u03c4\u03b5 \u03bc\u03b9\u03b1 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae.\n"}},"specialFeatures":{"1":{"id":1,"name":"\u03a7\u03c1\u03ae\u03c3\u03b7 \u03b1\u03ba\u03c1\u03b9\u03b2\u03ce\u03bd \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03b3\u03b5\u03c9-\u03b5\u03bd\u03c4\u03bf\u03c0\u03b9\u03c3\u03bc\u03bf\u03cd","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03c4\u03b1 \u03b1\u03ba\u03c1\u03b9\u03b2\u03ae \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b5\u03c9-\u03b5\u03bd\u03c4\u03bf\u03c0\u03b9\u03c3\u03bc\u03bf\u03cd \u03c3\u03b1\u03c2 \u03c0\u03c1\u03bf\u03c2 \u03c5\u03c0\u03bf\u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7 \u03b5\u03bd\u03cc\u03c2 \u03ae \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03c9\u03bd \u03c3\u03ba\u03bf\u03c0\u03ce\u03bd. \u0391\u03c5\u03c4\u03cc \u03c3\u03b7\u03bc\u03b1\u03af\u03bd\u03b5\u03b9 \u03cc\u03c4\u03b9 \u03b7 \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1 \u03c3\u03b1\u03c2 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b1\u03ba\u03c1\u03b9\u03b2\u03ae\u03c2 \u03c3\u03b5 \u03b1\u03ba\u03c4\u03af\u03bd\u03b1 \u03bb\u03af\u03b3\u03c9\u03bd \u03bc\u03ad\u03c4\u03c1\u03c9\u03bd. ","descriptionLegal":"\u039f\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03c3\u03c5\u03bb\u03bb\u03ad\u03b3\u03bf\u03c5\u03bd \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03ac\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03b1\u03ba\u03c1\u03b9\u03b2\u03ae \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b5\u03c9\u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03bf\u03cd \u03b5\u03bd\u03c4\u03bf\u03c0\u03b9\u03c3\u03bc\u03bf\u03cd \u03c0\u03c1\u03bf\u03c2 \u03c5\u03c0\u03bf\u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7 \u03b5\u03bd\u03cc\u03c2 \u03ae \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03c9\u03bd \u03c3\u03ba\u03bf\u03c0\u03ce\u03bd\n\u03a3\u03b7\u03bc\u03b5\u03af\u03c9\u03c3\u03b7: \u00ab\u0391\u03ba\u03c1\u03b9\u03b2\u03ae\u03c2 \u03b3\u03b5\u03c9-\u03b5\u03bd\u03c4\u03bf\u03c0\u03b9\u03c3\u03bc\u03cc\u03c2\u00bb \u03c3\u03b7\u03bc\u03b1\u03af\u03bd\u03b5\u03b9 \u03cc\u03c4\u03b9 \u03b4\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03bf\u03c5\u03bd \u03c0\u03b5\u03c1\u03b9\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03af \u03c9\u03c2 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03b7\u03bd \u03b1\u03ba\u03c1\u03af\u03b2\u03b5\u03b9\u03b1 \u03c4\u03b7\u03c2 \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1\u03c2 \u03b5\u03bd\u03cc\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03c3\u03b5 \u03b1\u03ba\u03c4\u03af\u03bd\u03b1 \u03bb\u03af\u03b3\u03c9\u03bd \u03bc\u03ad\u03c4\u03c1\u03c9\u03bd.\n"},"2":{"id":2,"name":"\u0391\u03ba\u03c1\u03b9\u03b2\u03ae\u03c2 \u03c3\u03ac\u03c1\u03c9\u03c3\u03b7 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ce\u03bd \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2 \u03b3\u03b9\u03b1 \u03b1\u03bd\u03b1\u03b3\u03bd\u03ce\u03c1\u03b9\u03c3\u03b7 \u03c4\u03b1\u03c5\u03c4\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2","description":"\u0397 \u03c4\u03b1\u03c5\u03c4\u03cc\u03c4\u03b7\u03c4\u03b1 \u03c4\u03b7\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae \u03c3\u03b1\u03c2 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b1\u03bd\u03b1\u03b3\u03bd\u03c9\u03c1\u03b9\u03c3\u03c4\u03b5\u03af \u03ba\u03b1\u03c4\u03cc\u03c0\u03b9\u03bd \u03c3\u03ac\u03c1\u03c9\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 \u03bc\u03bf\u03bd\u03b1\u03b4\u03b9\u03ba\u03bf\u03cd \u03c3\u03c5\u03bd\u03b4\u03c5\u03b1\u03c3\u03bc\u03bf\u03cd \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ce\u03bd \u03c4\u03b7\u03c2.","descriptionLegal":"\u039f\u03b9 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd:\n* \u039d\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03bf\u03cd\u03bd \u03ad\u03bd\u03b1 \u03b1\u03bd\u03b1\u03b3\u03bd\u03c9\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ce\u03bd\u03c4\u03b1\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c0\u03bf\u03c5 \u03c3\u03c5\u03bb\u03bb\u03ad\u03b3\u03bf\u03bd\u03c4\u03b1\u03b9 \u03bc\u03ad\u03c3\u03c9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03cd\u03c2 \u03c3\u03ac\u03c1\u03c9\u03c3\u03b7\u03c2 \u03bc\u03b9\u03b1\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2 \u03b3\u03b9\u03b1 \u03c3\u03c5\u03b3\u03ba\u03b5\u03ba\u03c1\u03b9\u03bc\u03ad\u03bd\u03b1 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac, \u03c0.\u03c7. \u03b5\u03b3\u03ba\u03b1\u03c4\u03b5\u03c3\u03c4\u03b7\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03bf\u03c3\u03b5\u03b9\u03c1\u03ad\u03c2 \u03ae \u03b1\u03bd\u03ac\u03bb\u03c5\u03c3\u03b7 \u03bf\u03b8\u03cc\u03bd\u03b7\u03c2. \n* \u039d\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd \u03ad\u03bd\u03b1 \u03c4\u03ad\u03c4\u03bf\u03b9\u03bf \u03b1\u03bd\u03b1\u03b3\u03bd\u03c9\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03bf\u03c5\u03bd \u03c4\u03b7\u03bd \u03b1\u03bd\u03b1\u03b3\u03bd\u03ce\u03c1\u03b9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03c4\u03b1\u03c5\u03c4\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2 \u03bc\u03b9\u03b1\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"\u0391\u03ba\u03c1\u03b9\u03b2\u03ae \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b5\u03c9-\u03b5\u03bd\u03c4\u03bf\u03c0\u03b9\u03c3\u03bc\u03bf\u03cd \u03ba\u03b1\u03b9 \u03c4\u03b1\u03c5\u03c4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03bc\u03ad\u03c3\u03c9 \u03c3\u03ac\u03c1\u03c9\u03c3\u03b7\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03b5\u03af \u03b1\u03ba\u03c1\u03b9\u03b2\u03ae\u03c2 \u03b3\u03b5\u03c9-\u03b5\u03bd\u03c4\u03bf\u03c0\u03b9\u03c3\u03bc\u03cc\u03c2 \u03ba\u03b1\u03b9 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03c4\u03b7\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"\u0392\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03b9\u03c3\u03c4\u03bf\u03cd\u03bd \u03b2\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"\u0395\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2","description":"\u039f\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03ae \u03c4\u03bf\u03c5\u03c2."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"\u0392\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03b9\u03c3\u03c4\u03bf\u03cd\u03bd \u03b2\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd. \u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"\u0392\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03b9\u03c3\u03c4\u03bf\u03cd\u03bd \u03b2\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03ae \u03c4\u03bf\u03c5\u03c2 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd","description":"\u039f\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc","description":"\u039f\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd. \u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"\u0395\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd","description":"\u039f\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb, \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03ae \u03c4\u03bf\u03c5\u03c2 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"\u0395\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc","description":"\u039f\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c9\u03c0\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03bc\u03b5 \u03b2\u03ac\u03c3\u03b7 \u03ad\u03bd\u03b1 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb. \u039c\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03c0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd. \u0397 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b4\u03b9\u03b1\u03c6\u03ae\u03bc\u03b9\u03c3\u03b7\u03c2 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af. \u039c\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03b5\u03be\u03b1\u03c7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03c3\u03c7\u03b5\u03c4\u03b9\u03ba\u03ac \u03bc\u03b5 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b5 \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"\u03a0\u03c1\u03bf\u03c6\u03af\u03bb \u03ba\u03b1\u03b9 \u03c0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd","description":"\u039f\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03ae \u03c4\u03bf\u03c5\u03c2."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"\u0395\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf","description":"\u03a4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03b8\u03b5\u03af \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03ae \u03c4\u03bf\u03c5"},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5","description":"\u03a4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03b8\u03b5\u03af \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03ae \u03c4\u03bf\u03c5."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc","description":"\u03a4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03b8\u03b5\u03af \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03ae \u03c4\u03bf\u03c5. \u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03bd\u03c4\u03bb\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"\u0395\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03ba\u03b1\u03b9 \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5","description":"\u03a4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03b8\u03b5\u03af \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb, \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03ae \u03c4\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03ae \u03c4\u03bf\u03c5."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"\u0395\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03b5\u03af \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb, \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03ae \u03c4\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03ae \u03c4\u03bf\u03c5. \u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"\u0395\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc \u03ba\u03b1\u03b9 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03b5\u03af \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb, \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03ae \u03c4\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03ae \u03c4\u03bf\u03c5. \u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf. \u03a4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ae \u03c4\u03b7 \u03b2\u03b5\u03bb\u03c4\u03af\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03bc\u03c0\u03b5\u03b9\u03c1\u03af\u03b1\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7, \u03c4\u03c9\u03bd \u03c3\u03c5\u03c3\u03c4\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03b9\u03ba\u03bf\u03cd."},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"\u039c\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03ba\u03b1\u03b9 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5. \u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"\u039c\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"\u039c\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03bc\u03b9\u03b1\u03c2 \u03b4\u03b9\u03b1\u03c6\u03ae\u03bc\u03b9\u03c3\u03b7\u03c2. \u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"\u039c\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc \u03ba\u03b1\u03b9 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5. \u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf. \u03a4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ae \u03c4\u03b7 \u03b2\u03b5\u03bb\u03c4\u03af\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03bc\u03c0\u03b5\u03b9\u03c1\u03af\u03b1\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7, \u03c4\u03c9\u03bd \u03c3\u03c5\u03c3\u03c4\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03b9\u03ba\u03bf\u03cd. \u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"\u039c\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc \u03ba\u03b1\u03b9 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5. \u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf. \u03a4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ae \u03c4\u03b7 \u03b2\u03b5\u03bb\u03c4\u03af\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03bc\u03c0\u03b5\u03b9\u03c1\u03af\u03b1\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7, \u03c4\u03c9\u03bd \u03c3\u03c5\u03c3\u03c4\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03b9\u03ba\u03bf\u03cd."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"\u039c\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5. \u03a4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ae \u03c4\u03b7 \u03b2\u03b5\u03bb\u03c4\u03af\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03bc\u03c0\u03b5\u03b9\u03c1\u03af\u03b1\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7, \u03c4\u03c9\u03bd \u03c3\u03c5\u03c3\u03c4\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03b9\u03ba\u03bf\u03cd."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03ba\u03b1\u03b9 \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd \u03bf\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb, \u03ba\u03b1\u03b8\u03ce\u03c2 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03ae \u03c4\u03bf\u03c5\u03c2."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd \u03bf\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb, \u03ba\u03b1\u03b8\u03ce\u03c2 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03ae \u03c4\u03bf\u03c5\u03c2. \u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf. \u03a4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ae \u03c4\u03b7 \u03b2\u03b5\u03bb\u03c4\u03af\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03bc\u03c0\u03b5\u03b9\u03c1\u03af\u03b1\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7, \u03c4\u03c9\u03bd \u03c3\u03c5\u03c3\u03c4\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03b9\u03ba\u03bf\u03cd."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"\u0395\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03ba\u03b1\u03b9 \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd \u03bf\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb, \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03ae \u03c4\u03bf\u03c5\u03c2, \u03ba\u03b1\u03b8\u03ce\u03c2 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03ae \u03c4\u03bf\u03c5\u03c2."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"\u0395\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd \u03bf\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb, \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03ae \u03c4\u03bf\u03c5\u03c2, \u03ba\u03b1\u03b8\u03ce\u03c2 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03ae \u03c4\u03bf\u03c5\u03c2. \u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"\u0395\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd \u03bf\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb"},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"\u0392\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03ba\u03b1\u03b9 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03b9\u03c3\u03c4\u03bf\u03cd\u03bd \u03b2\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03ae \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5. \u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd, \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd \u03bf\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb, \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03ae \u03c4\u03bf\u03c5\u03c2. \u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd, \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc \u03ba\u03b1\u03b9 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd \u03bf\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb, \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03ae \u03c4\u03bf\u03c5\u03c2. \u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf. \u03a4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ae \u03c4\u03b7 \u03b2\u03b5\u03bb\u03c4\u03af\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03bc\u03c0\u03b5\u03b9\u03c1\u03af\u03b1\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7, \u03c4\u03c9\u03bd \u03c3\u03c5\u03c3\u03c4\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03b9\u03ba\u03bf\u03cd."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"\u0392\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03ba\u03b1\u03b9 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03b9\u03c3\u03c4\u03bf\u03cd\u03bd \u03b2\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03b5\u03af \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb, \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03ae \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"\u0392\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc \u03ba\u03b1\u03b9 \u03b1\u03bd\u03ac\u03c0\u03c4\u03c5\u03be\u03b7 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03b9\u03c3\u03c4\u03bf\u03cd\u03bd \u03b2\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03b5\u03af \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb, \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03ae \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf. \u03a4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ae \u03c4\u03b7 \u03b2\u03b5\u03bb\u03c4\u03af\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03bc\u03c0\u03b5\u03b9\u03c1\u03af\u03b1\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7, \u03c4\u03c9\u03bd \u03c3\u03c5\u03c3\u03c4\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03b9\u03ba\u03bf\u03cd."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"\u0392\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03b9\u03c3\u03c4\u03bf\u03cd\u03bd \u03b2\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03b5\u03af \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb, \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03ae \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"\u0392\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc \u03ba\u03b1\u03b9 \u03b1\u03bd\u03ac\u03c0\u03c4\u03c5\u03be\u03b7 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03b9\u03c3\u03c4\u03bf\u03cd\u03bd \u03b2\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03b5\u03af \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb, \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf. \u03a4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ae \u03c4\u03b7 \u03b2\u03b5\u03bb\u03c4\u03af\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03bc\u03c0\u03b5\u03b9\u03c1\u03af\u03b1\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7, \u03c4\u03c9\u03bd \u03c3\u03c5\u03c3\u03c4\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03b9\u03ba\u03bf\u03cd."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"\u0392\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03ba\u03b1\u03b9 \u03bc\u03b5\u03c4\u03c1\u03ae\u03c3\u03b5\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03b9\u03c3\u03c4\u03bf\u03cd\u03bd \u03b2\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03b5\u03af \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb, \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"\u0392\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03b1\u03bd\u03ac\u03c0\u03c4\u03c5\u03be\u03b7 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd","description":"\u0395\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03b9\u03c3\u03c4\u03bf\u03cd\u03bd \u03b2\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03b5\u03af \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb, \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd. \u03a4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ae \u03c4\u03b7 \u03b2\u03b5\u03bb\u03c4\u03af\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03bc\u03c0\u03b5\u03b9\u03c1\u03af\u03b1\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7, \u03c4\u03c9\u03bd \u03c3\u03c5\u03c3\u03c4\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03b9\u03ba\u03bf\u03cd."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"\u0395\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd","description":"\u039f\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03ba\u03b1\u03b9 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03ae \u03c4\u03bf\u03c5\u03c2. \u039c\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd. \u03a4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ae \u03c4\u03b7 \u03b2\u03b5\u03bb\u03c4\u03af\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03bc\u03c0\u03b5\u03b9\u03c1\u03af\u03b1\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7, \u03c4\u03c9\u03bd \u03c3\u03c5\u03c3\u03c4\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03b9\u03ba\u03bf\u03cd."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"\u0395\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd, \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc \u03ba\u03b1\u03b9 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd","description":"\u039f\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03ba\u03b1\u03b9 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03ae \u03c4\u03bf\u03c5\u03c2. \u039c\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd. \u039c\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf. \u03a4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ae \u03c4\u03b7 \u03b2\u03b5\u03bb\u03c4\u03af\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03bc\u03c0\u03b5\u03b9\u03c1\u03af\u03b1\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7, \u03c4\u03c9\u03bd \u03c3\u03c5\u03c3\u03c4\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03b9\u03ba\u03bf\u03cd."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"\u0395\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc \u03ba\u03b1\u03b9 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd","description":"\u039f\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03ba\u03b1\u03b9 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03ae \u03c4\u03bf\u03c5\u03c2. \u039c\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03ae \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u039c\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf. \u03a4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ae \u03c4\u03b7 \u03b2\u03b5\u03bb\u03c4\u03af\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03bc\u03c0\u03b5\u03b9\u03c1\u03af\u03b1\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7, \u03c4\u03c9\u03bd \u03c3\u03c5\u03c3\u03c4\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03b9\u03ba\u03bf\u03cd."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"\u0395\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2, \u03c0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc \u03ba\u03b1\u03b9 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd","description":"\u039f\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb. \u039c\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03ae \u03c4\u03bf\u03c5\u03c2. \u039c\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03ae \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5. \u039c\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf. \u03a4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ae \u03c4\u03b7 \u03b2\u03b5\u03bb\u03c4\u03af\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03bc\u03c0\u03b5\u03b9\u03c1\u03af\u03b1\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7, \u03c4\u03c9\u03bd \u03c3\u03c5\u03c3\u03c4\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03b9\u03ba\u03bf\u03cd."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"\u0395\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf, \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5, \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc \u03ba\u03b1\u03b9 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd","description":"\u039f\u03b9 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd \u03b2\u03ac\u03c3\u03b5\u03b9 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb. \u039c\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03ae \u03c4\u03bf\u03c5\u03c2. \u039c\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03bc\u03b5\u03c4\u03c1\u03b7\u03b8\u03b5\u03af \u03b7 \u03b1\u03c0\u03cc\u03b4\u03bf\u03c3\u03ae \u03c4\u03c9\u03bd \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u039c\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b5\u03af\u03b4\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03af\u03b4\u03b1\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03c6\u03b7\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf. \u03a4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ae \u03c4\u03b7 \u03b2\u03b5\u03bb\u03c4\u03af\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03bc\u03c0\u03b5\u03b9\u03c1\u03af\u03b1\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7, \u03c4\u03c9\u03bd \u03c3\u03c5\u03c3\u03c4\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03b9\u03ba\u03bf\u03cd."}}} \ No newline at end of file diff --git a/src/s1/config/2.0/purposes/purposes-es.json b/src/s1/config/2.0/purposes/purposes-es.json index 536b1cc6..5383f6db 100644 --- a/src/s1/config/2.0/purposes/purposes-es.json +++ b/src/s1/config/2.0/purposes/purposes-es.json @@ -1 +1 @@ -{"vendorListVersion":79,"lastUpdated":"2021-02-25T16:36:16Z","purposes":{"1":{"id":1,"name":"Almacenar o acceder a informaci\u00f3n en un dispositivo","description":"Se puede almacenar o acceder a cookies, identificadores de dispositivo u otra informaci\u00f3n en su dispositivo para las finalidades que se le presentan.","descriptionLegal":"Los proveedores pueden:\n* Almacenar y/o acceder a informaci\u00f3n en el dispositivo a trav\u00e9s de cookies e identificadores de dispositivo ejecutados/instalados en el equipo del usuario."},"2":{"id":2,"name":"Seleccionar anuncios b\u00e1sicos","description":"Los anuncios se pueden mostrar en funci\u00f3n del contenido que se est\u00e9 visualizando, la aplicaci\u00f3n que se est\u00e9 utilizando, su localizaci\u00f3n aproximada o su tipo de dispositivo.","descriptionLegal":"Para realizar la selecci\u00f3n de anuncios b\u00e1sicos, los proveedores pueden:\n* Utilizar informaci\u00f3n en tiempo real sobre el contexto en el que se mostrar\u00e1 el anuncio, para mostrar el anuncio, incluida la informaci\u00f3n sobre el contenido y el dispositivo, como por ejemplo: tipo de dispositivo y sus funcionalidades, agente de usuario, URL, direcci\u00f3n IP \n* Utilizar los datos de localizaci\u00f3n geogr\u00e1fica de aproximada\n* Controlar la frecuencia con la que se muestran los anuncios a un usuario.\n* Secuenciar el orden en el que se muestran los anuncios a un usuario.\n* Evitar que un anuncio se sirva o env\u00ede en un contexto editorial inadecuado (Brand safety)\nLos Proveedores no pueden:\n* Crear un perfil publicitario personalizado utilizando esta informaci\u00f3n para la selecci\u00f3n de anuncios futuros sin una base jur\u00eddica separada cuya finalidad espec\u00edfica fuera crear un perfil publicitario personalizados.\nNota: Aproximada significa que se permite solamente una localizaci\u00f3n aproximada de, como m\u00e1ximo, dentro de un radio de 500 metros.\n"},"3":{"id":3,"name":"Crear un perfil publicitario personalizado","description":"Se puede elaborar un perfil sobre usted y sus intereses para mostrarle anuncios personalizados que sean pertinentes para usted.","descriptionLegal":"Para crear un perfil publicitario personalizado, los proveedores pueden:\n* Recoger informaci\u00f3n sobre un usuario, (incluyendo la actividad anterior del usuario, sus intereses, p\u00e1ginas web o aplicaciones visitadas con anterioridad, ubicaci\u00f3n o informaci\u00f3n demogr\u00e1fica) a fin de crear o editar un perfil de usuario para su uso en publicidad personalizada.\n* Combinar esta informaci\u00f3n con otra informaci\u00f3n previamente recabada, incluido entre diferentes sitios web o aplicaciones, a fin de crear o editar un perfil de usuario para su uso en publicidad personalizada\n"},"4":{"id":4,"name":"Seleccionar anuncios personalizados","description":"Se pueden mostrar anuncios personalizados bas\u00e1ndose en su perfil.","descriptionLegal":"Para seleccionar anuncios personalizados, los proveedores pueden:\n* Seleccionar anuncios personalizados bas\u00e1ndose en un perfil de usuario u otros datos hist\u00f3ricos del usuario, incluida la actividad anterior de un usuario, sus intereses, visitas a sitios web o aplicaciones, ubicaci\u00f3n o informaci\u00f3n demogr\u00e1fica.\n"},"5":{"id":5,"name":"Crear un perfil para la personalizaci\u00f3n de contenidos","description":"Se puede crear un perfil sobre usted y sus intereses para mostrarle contenido personalizado que le fuera pertinente.","descriptionLegal":"Para crear un un perfil para la personalizaci\u00f3n de contenidos, los proveedores pueden:\n* Recoger informaci\u00f3n sobre un usuario, incluida la actividad de un usuario, sus intereses, visitas a sitios o aplicaciones, informaci\u00f3n demogr\u00e1fica o ubicaci\u00f3n, a fin de crear o editar un perfil de usuario para personalizar el contenido.\n* Combinar esta informaci\u00f3n con otra informaci\u00f3n previamente recabada, incluido entre diferentes sitios web o aplicaciones, a fin de crear o editar un perfil de usuario para personalizar el contenido.\n"},"6":{"id":6,"name":"Seleccionar contenido personalizado","description":"Se puede mostrar contenido personalizado basado en su perfil.","descriptionLegal":"Para seleccionar contenido personalizado, los proveedores pueden:\n* Seleccionar contenido personalizado bas\u00e1ndose en un perfil de usuario u otros datos hist\u00f3ricos de usuarios, incluida la actividad anterior del usuario, sus intereses, visitas a sitios web o aplicaciones, ubicaci\u00f3n o informaci\u00f3n demogr\u00e1fica."},"7":{"id":7,"name":"Medir el rendimiento de los anuncios","description":"Se puede medir el rendimiento y eficacia de los anuncios que usted ve o con los que interact\u00faa.","descriptionLegal":"Para medir el rendimiento de los anuncios, los proveedores pueden:\n* Medir si los anuncios fueron suministrados a un usuario y c\u00f3mo este interactu\u00f3 con ellos\n* Elaborar informes sobre anuncios, incluida su eficacia y rendimiento\n* Elaborar informes sobre los usuarios que interactuaron con los anuncios utilizando datos observados durante el curso de la interacci\u00f3n del usuario con ese anuncio\n* Elaborar informes para los editores sobre los anuncios mostrados en sus sitios web o propiedad digital\n* Medir si un anuncio sirve en un contexto editorial adecuado (seguro para la marca)\n* Determinar el porcentaje del anuncio que se tuvo la oportunidad de ser visto y la duraci\u00f3n de esa oportunidad \n* Combinar esta informaci\u00f3n con otra informaci\u00f3n previamente recabada, incluido entre diferentes sitios web o aplicaciones.\nLos proveedores no pueden:\n* Aplicar datos de informaci\u00f3n sobre el p\u00fablico basados en un panel de usuarios o similares a los datos de medici\u00f3n de anuncios sin una base jur\u00eddica independiente para utilizar estudios de mercado a fin de generar informaci\u00f3n sobre el p\u00fablico.\n"},"8":{"id":8,"name":"Medir el rendimiento del contenido","description":"Se puede medir el rendimiento y la eficacia del contenido que ve o con el que interact\u00faa.","descriptionLegal":"Para medir el rendimiento del contenido, los proveedores pueden:\n* Medir e informar sobre c\u00f3mo se entreg\u00f3 el contenido y c\u00f3mo interactuaron con \u00e9l los usuarios.\n* Elaborar informes, utilizando informaci\u00f3n directamente medible o conocida, sobre los usuarios que interactuaron con el contenido\n* Combinar esta informaci\u00f3n con otra informaci\u00f3n previamente recabada, incluido entre diferentes sitios web o aplicaciones.\nLos proveedores no pueden:\n* Medir si los anuncios (incluida la publicidad nativa) fueron suministrados a un usuario y si este interactu\u00f3 con ellos sin tener una base jur\u00eddica alternativa que lo permita.\n* Aplicar datos de informaci\u00f3n sobre el p\u00fablico, basados en un panel de usuarios o similares, a los datos de medici\u00f3n de anuncios sin una base jur\u00eddica independiente para utilizar estudios de mercado a fin de generar informaci\u00f3n sobre el p\u00fablico.\n"},"9":{"id":9,"name":"Utilizar estudios de mercado a fin de generar informaci\u00f3n sobre el p\u00fablico","description":"La investigaci\u00f3n de mercado puede utilizarse para obtener m\u00e1s informaci\u00f3n sobre el p\u00fablico que visita sitios webs/aplicaciones y visualiza los anuncios.","descriptionLegal":"Para utilizar estudios de mercado a fin de generar informaci\u00f3n sobre el p\u00fablico, los proveedores pueden:\n* Elaborar informes agregados para los anunciantes o sus representantes sobre el p\u00fablico alcanzado por sus anuncios, a trav\u00e9s de informaci\u00f3n basada en paneles de audiencia u obtenida de manera similar.\n* Elaborar informes agregados para los editores sobre el p\u00fablico al que se le mostraron contenidos y/o anuncios o que interactuaron con ellos en su propiedad, aplicando informaci\u00f3n basada en paneles de audiencia u obtenida de manera similar\n* Asociar datos off line con un usuario on line para finalidades de estudios de mercado a fin de generar informaci\u00f3n sobre el p\u00fablico si los proveedores han declarado que cotejan y combinan fuentes de datos off line \n* Combinar esta informaci\u00f3n con otra informaci\u00f3n previamente recabada, incluido entre diferentes sitios web o aplicaciones.\nLos proveedores no pueden: \n* Medir el rendimiento y la eficacia de los anuncios que se mostraron a un usuario espec\u00edfico o con los que interactu\u00f3, sin una base jur\u00eddica independiente para medir el rendimiento de los anuncios.\n\u2022 Medir qu\u00e9 contenido se mostr\u00f3 a un usuario espec\u00edfico y c\u00f3mo interactu\u00f3 con el mismo, sin una base jur\u00eddica independiente para medir el rendimiento del contenido.\n"},"10":{"id":10,"name":"Desarrollar y mejorar productos","description":"Sus datos pueden utilizarse para mejorar los sistemas y/o el software existente, as\u00ed como para desarrollar nuevos productos.","descriptionLegal":"Para desarrollar nuevos productos y mejorar los productos, los proveedores pueden:\n* Utilizar informaci\u00f3n para mejorar sus productos existentes con nuevas funcionalidades/caracter\u00edsticas y desarrollar nuevos productos\n* Crear nuevos modelos y algoritmos mediante machine learning\nLos proveedores no pueden:\n* A partir de esta finalidad no se puede llevar a cabo ninguna otra operaci\u00f3n de tratamiento de datos permitida en virtud de una finalidad distinta.\n"}},"specialPurposes":{"1":{"id":1,"name":"Garantizar la seguridad, evitar fraudes y depurar errores","description":"Sus datos pueden utilizarse para supervisar y evitar actividades fraudulentas, y para asegurar que los sistemas y procesos funcionen de forma correcta y segura.","descriptionLegal":"Para garantizar la seguridad, evitar fraudes y depurar errores, los proveedores pueden:\n* Asegurarse de que los datos se transmitan de forma segura \n* Detectar y evitar actividades maliciosas, fraudulentas, inaceptables o ilegales.\n* Asegurar el funcionamiento correcto y eficaz de los sistemas y procesos, lo que incluye supervisar y mejorar el rendimiento de los sistemas y procesos empleados en las finalidades permitidas\nLos proveedores no pueden:\n* Llevar a cabo ninguna otra operaci\u00f3n de tratamiento de datos permitida en virtud de una finalidad distinta.\nNota: Los datos recopilados y utilizados para garantizar la seguridad, evitar el fraude y depurar errores pueden incluir caracter\u00edsticas del dispositivo enviadas autom\u00e1ticamente para su identificaci\u00f3n, datos de geolocalizaci\u00f3n precisos y datos obtenidos analizando de forma activa las caracter\u00edsticas del dispositivo para su identificaci\u00f3n sin que sea necesario revelar m\u00e1s informaci\u00f3n y/o una aceptaci\u00f3n independiente. \n"},"2":{"id":2,"name":"Servir t\u00e9cnicamente anuncios o contenido","description":"Su dispositivo puede recibir y enviar informaci\u00f3n que le permita ver e interactuar con anuncios y contenido.","descriptionLegal":"Para servir informaci\u00f3n y responder a solicitudes t\u00e9cnicas, los proveedores pueden:\n* Utilizar la direcci\u00f3n IP de un usuario para entregar un anuncio a trav\u00e9s de Internet\n* Responder a la interacci\u00f3n de un usuario con un anuncio enviando al usuario a una p\u00e1gina de destino\n* Utilizar la direcci\u00f3n IP de un usuario para entregar contenido a trav\u00e9s de Internet\n* Responder a la interacci\u00f3n de un usuario con el contenido enviando al usuario a una p\u00e1gina de destino\n* Utilizar informaci\u00f3n sobre el tipo de dispositivo y sus capacidades para entregar anuncios o contenido, por ejemplo, para entregar el archivo publicitario o de v\u00eddeo de tama\u00f1o adecuado en un formato compatible con el dispositivo\nLos proveedores no pueden:\n* Llevar a cabo, seg\u00fan esta finalidad, ninguna otra operaci\u00f3n de tratamiento de datos permitida en virtud de una finalidad distinta.\n"}},"features":{"1":{"id":1,"name":"Cotejar y combinar fuentes de datos off line","description":"Los datos obtenidos de fuentes de datos off line pueden combinarse con su actividad on line para respaldar una o m\u00e1s finalidades.","descriptionLegal":"Los proveedores pueden: \n* Combinar los datos obtenidos off line con los datos recogidos on line en apoyo de una o m\u00e1s Finalidades o Finalidades especiales."},"2":{"id":2,"name":"Vincular diferentes dispositivos","description":"Se puede determinar que diferentes dispositivos pertenecen a usted o a su hogar para una o m\u00e1s finalidades.","descriptionLegal":"Los proveedores pueden:\n* Determinar de forma determinista que dos o m\u00e1s dispositivos pertenecen al mismo usuario u hogar\n* Determinar de forma probabil\u00edstica que dos o m\u00e1s dispositivos pertenecen al mismo usuario u hogar\n* Analizar activamente las caracter\u00edsticas del dispositivo para encontrar su identificaci\u00f3n probabil\u00edstica si los usuarios han permitido a los proveedores analizar activamente las caracter\u00edsticas del dispositivo para su identificaci\u00f3n (Funcionalidad especial 2)\n"},"3":{"id":3,"name":"Recibir y utilizar para su identificaci\u00f3n las caracter\u00edsticas del dispositivo que se env\u00edan autom\u00e1ticamente","description":"Su dispositivo puede distinguirse de otros dispositivos a partir de la informaci\u00f3n que env\u00eda autom\u00e1ticamente, como la direcci\u00f3n IP o el tipo de navegador.","descriptionLegal":"Los proveedores pueden:\n* Crear un identificador utilizando los datos recopilados autom\u00e1ticamente en un dispositivo para caracter\u00edsticas espec\u00edficas, por ejemplo, direcci\u00f3n IP o la cadena de agente de usuario.\n* Utilizar este identificador para intentar volver a identificar un dispositivo.\nLos proveedores no pueden:\n* Crear un identificador utilizando datos recogidos mediante el an\u00e1lisis activo de un dispositivo para hallar funcionalidads espec\u00edficas, por ejemplo, fuentes instaladas o resoluci\u00f3n de pantalla sin aceptaci\u00f3n independiente del usuario para analizar de forma activa las caracter\u00edsticas del dispositivo para su identificaci\u00f3n.\n* Utilizar este identificador para volver a identificar un dispositivo.\n"}},"specialFeatures":{"1":{"id":1,"name":"Utilizar datos de localizaci\u00f3n geogr\u00e1fica precisa","description":"Sus datos de localizaci\u00f3n geogr\u00e1fica precisa se pueden utilizar para una o m\u00e1s finalidades. Esto significa que su ubicaci\u00f3n puede tener una precisi\u00f3n de varios metros.","descriptionLegal":"Los proveedores pueden:\n* Recoger y tratar datos de localizaci\u00f3n geogr\u00e1fica precisa para una o m\u00e1s finalidades.\nNota: La localizaci\u00f3n geogr\u00e1fica precisa significa que no existen restricciones sobre la precisi\u00f3n de la ubicaci\u00f3n de un usuario; esto puede tener una precisi\u00f3n de varios metros.\n"},"2":{"id":2,"name":"Analizar activamente las caracter\u00edsticas del dispositivo para su identificaci\u00f3n","description":"Su dispositivo puede identificarse bas\u00e1ndose en un an\u00e1lisis de la combinaci\u00f3n \u00fanica de las caracter\u00edsticas de su dispositivo.","descriptionLegal":"Los proveedores pueden:\n* Crear un identificador utilizando datos recogidos mediante el an\u00e1lisis activo de un dispositivo para hallar caracter\u00edsticas espec\u00edficas, por ejemplo, fuentes instaladas o resoluci\u00f3n de pantalla. \n* Utilizar este identificador para volver a identificar un dispositivo.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Datos de localizaci\u00f3n geogr\u00e1fica precisa e identificaci\u00f3n mediante las caracter\u00edsticas de dispositivos","description":"Se puede utilizar la localizaci\u00f3n geogr\u00e1fica precisa y la informaci\u00f3n sobre las caracter\u00edsticas del dispositivo."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Anuncios b\u00e1sicos y medici\u00f3n de anuncios","description":"Se pueden mostrar anuncios b\u00e1sicos. Se puede medir el rendimiento de los anuncios."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Anuncios personalizados","description":"Los anuncios pueden personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor los anuncios."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Anuncios b\u00e1sicos y medici\u00f3n de anuncios","description":"Se pueden mostrar anuncios b\u00e1sicos. Se puede medir el rendimiento de los anuncios. Se puede inferir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Anuncios b\u00e1sicos, creaci\u00f3n de perfil publicitario personalizado y medici\u00f3n de anuncios","description":"Se pueden mostrar anuncios b\u00e1sicos. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor los anuncios. Se puede medir el rendimiento de los anuncios."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Mostrar anuncios personalizados y medici\u00f3n de anuncios","description":"Los anuncios pueden personalizarse bas\u00e1ndose en un perfil. Se puede medir el rendimiento de los anuncios."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Mostrar anuncios personalizados, medici\u00f3n de anuncios e informaci\u00f3n sobre el p\u00fablico","description":"Los anuncios pueden personalizarse bas\u00e1ndose en un perfil. Se puede medir el rendimiento de los anuncios. Se puede inferir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Anuncios personalizados y medici\u00f3n de anuncios","description":"Los anuncios pueden personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor los anuncios. Se puede medir el rendimiento de los anuncios."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Anuncios personalizados, medici\u00f3n de anuncios e informaci\u00f3n sobre el p\u00fablico","description":"Los anuncios pueden personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor los anuncios. Se puede medir el rendimiento de los anuncios. Se puede inferir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Perfil y muestra de anuncios personalizados","description":"Los anuncios pueden personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor los anuncios."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Contenido personalizado","description":"El contenido puede personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor el contenido."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Muestra de contenido personalizado y medici\u00f3n de contenido","description":"El contenido puede personalizarse bas\u00e1ndose en un perfil. Se puede medir el rendimiento del contenido."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Presentaci\u00f3n de contenido personalizado, medici\u00f3n del contenido e informaci\u00f3n sobre el p\u00fablico","description":"El contenido puede personalizarse bas\u00e1ndose en un perfil. Se puede medir el rendimiento del contenido. Se puede inferir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Contenido personalizado y medici\u00f3n del contenido","description":"El contenido puede personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor el contenido. Se puede medir el rendimiento del contenido."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Contenido personalizado, medici\u00f3n del contenido e informaci\u00f3n sobre el p\u00fablico","description":"El contenido puede personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor el contenido. Se puede medir el rendimiento del contenido. Se puede inferir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Contenido personalizado, medici\u00f3n del contenido, informaci\u00f3n sobre el p\u00fablico y desarrollo de productos","description":"El contenido puede personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor el contenido. Se puede medir el rendimiento del contenido. Se puede inducir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido. Los datos pueden utilizarse para elaborar o mejorar la experiencia del usuario, los sistemas y el software"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Medici\u00f3n de anuncios y del contenido e informaci\u00f3n sobre el p\u00fablico","description":"Se puede medir el rendimiento de los anuncios y del contenido. Se puede inferir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Medici\u00f3n de anuncios y del contenido","description":"Se puede medir el rendimiento de los anuncios y del contenido."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Medici\u00f3n de anuncios e informaci\u00f3n sobre el p\u00fablico","description":"Se pueden medir los anuncios. Se puede inferir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Medici\u00f3n de anuncios y del contenido, informaci\u00f3n sobre el p\u00fablico y desarrollo de productos","description":"Se puede medir el rendimiento de los anuncios y del contenido. Se puede inferir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido. Los datos pueden utilizarse para elaborar o mejorar la experiencia del usuario, los sistemas y el software. Se puede inferir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Medici\u00f3n del contenido, informaci\u00f3n sobre el p\u00fablico y desarrollo de productos.","description":"Se puede medir el rendimiento del contenido. Se puede inferir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido. Los datos pueden utilizarse para elaborar o mejorar la experiencia del usuario, los sistemas y el software."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Medici\u00f3n del contenido y desarrollo de productos","description":"Se puede medir el rendimiento del contenido. Los datos pueden utilizarse para elaborar o mejorar la experiencia del usuario, los sistemas y el software."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Presentaci\u00f3n de anuncios y contenido personalizados, medici\u00f3n de anuncios y del contenido","description":"Los anuncios y el contenido pueden personalizarse bas\u00e1ndose en un perfil. Se puede medir el rendimiento de los anuncios y del contenido."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Presentaci\u00f3n de anuncios y contenido personalizados, medici\u00f3n de anuncios y del contenido e informaci\u00f3n sobre el p\u00fablico","description":"Los anuncios y el contenido pueden personalizarse bas\u00e1ndose en un perfil. Se puede medir el rendimiento de los anuncios y del contenido. Se puede inferir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido. Los datos pueden utilizarse para elaborar o mejorar la experiencia del usuario, los sistemas y el software."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Anuncios y contenido personalizados, medici\u00f3n de anuncios y del contenido","description":"Los anuncios y el contenido pueden personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor los anuncios y el contenido. Se puede medir el rendimiento de los anuncios y del contenido."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Anuncios y contenido personalizados, medici\u00f3n de anuncios y del contenido e informaci\u00f3n sobre el p\u00fablico","description":"Los anuncios y el contenido pueden personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor los anuncios y el contenido. Se puede medir el rendimiento de los anuncios y del contenido. Se puede inferir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Anuncios personalizados y contenido personalizado","description":"Se pueden a\u00f1adir m\u00e1s datos para personalizar los anuncios y el contenido."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Muestra de anuncios y contenido personalizados","description":"Los anuncios y el contenido pueden personalizarse bas\u00e1ndose en un perfil."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Anuncios b\u00e1sicos, medici\u00f3n de anuncios y del contenido e informaci\u00f3n sobre el p\u00fablico","description":"Se pueden mostrar anuncios b\u00e1sicos. Se puede medir el rendimiento de los anuncios y del contenido. Se puede inferir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Muestra de anuncios personalizados, contenido personalizado, medici\u00f3n de anuncios y del contenido e informaci\u00f3n sobre el p\u00fablico","description":"Los anuncios y el contenido pueden personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor el contenido. Se puede medir el rendimiento de los anuncios y del contenido. Se puede inferir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Muestra de anuncios personalizados, contenido personalizado, medici\u00f3n de anuncios y del contenido, informaci\u00f3n sobre el p\u00fablico y desarrollo de productos","description":"Los anuncios y el contenido pueden personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor el contenido. Se puede medir el rendimiento de los anuncios y del contenido. Se puede inferir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido. Los datos pueden utilizarse para elaborar o mejorar la experiencia del usuario, los sistemas y el software."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Anuncios b\u00e1sicos, contenido personalizado, medici\u00f3n de anuncios y del contenido e informaci\u00f3n sobre el p\u00fablico","description":"Se pueden mostrar anuncios b\u00e1sicos. El contenido puede personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor el contenido. Se puede medir el rendimiento de los anuncios y del contenido. Se puede inferir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Anuncios b\u00e1sicos, contenido personalizado, medici\u00f3n de anuncios y del contenido, informaci\u00f3n sobre el p\u00fablico y desarrollo de productos","description":"Se pueden mostrar anuncios b\u00e1sicos. El contenido puede personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor el contenido. Se puede medir el rendimiento de los anuncios y del contenido. Se puede inferir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido. Los datos pueden utilizarse para elaborar o mejorar la experiencia del usuario, los sistemas y el software."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Anuncios b\u00e1sicos, contenido personalizado, medici\u00f3n del contenido e informaci\u00f3n sobre el p\u00fablico","description":"Se pueden mostrar anuncios b\u00e1sicos. El contenido puede personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor el contenido. Se puede medir el rendimiento de los anuncios y del contenido. Se puede inferir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Anuncios b\u00e1sicos, contenido personalizado, medici\u00f3n del contenido, informaci\u00f3n sobre el p\u00fablico y desarrollo de productos","description":"Se pueden mostrar anuncios b\u00e1sicos. El contenido puede personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor el contenido. Se puede medir el rendimiento del contenido. Se puede inferir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido. Los datos pueden utilizarse para elaborar o mejorar la experiencia del usuario, los sistemas y el software."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Anuncios b\u00e1sicos, contenido personalizado y medici\u00f3n de anuncios","description":"Se pueden mostrar anuncios b\u00e1sicos. El contenido puede personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor el contenido. Se puede medir el rendimiento de los anuncios."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Anuncios b\u00e1sicos, contenido personalizado, medici\u00f3n de anuncios y desarrollo de productos","description":"Se pueden mostrar anuncios b\u00e1sicos. El contenido puede personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor el contenido. Se puede medir el rendimiento de los anuncios. Los datos pueden utilizarse para elaborar o mejorar la experiencia del usuario, los sistemas y el software."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Anuncios personalizados, medici\u00f3n de anuncios y desarrollo de productos","description":"Los anuncios pueden personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor los anuncios. Se puede medir el rendimiento de los anuncios. Los datos pueden utilizarse para elaborar o mejorar la experiencia del usuario, los sistemas y el software."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Anuncios personalizados, medici\u00f3n de anuncios, informaci\u00f3n sobre el p\u00fablico y desarrollo de productos","description":"Los anuncios pueden personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor los anuncios. Se puede medir el rendimiento de los anuncios. Se puede derivar informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido. Los datos pueden utilizarse para elaborar o mejorar la experiencia del usuario, los sistemas y el software."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Anuncios personalizados, medici\u00f3n de anuncios y del contenido, informaci\u00f3n sobre el p\u00fablico y desarrollo de productos","description":"Los anuncios pueden personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor los anuncios. Se puede medir el rendimiento de los anuncios y del contenido. Se puede derivar informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido. Los datos pueden utilizarse para elaborar o mejorar la experiencia del usuario, los sistemas y el software."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Anuncios personalizados, muestra de contenido personalizado, medici\u00f3n de anuncios y del contenido, informaci\u00f3n sobre el p\u00fablico y desarrollo de productos","description":"Los anuncios y el contenido pueden personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor los anuncios. Se puede medir el rendimiento de los anuncios y del contenido. Se puede derivar informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido. Los datos pueden utilizarse para elaborar o mejorar la experiencia del usuario, los sistemas y el software."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Anuncios y contenido personalizados, medici\u00f3n de anuncios y del contenido, informaci\u00f3n sobre el p\u00fablico y desarrollo de productos","description":"Los anuncios y el contenido pueden personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor los anuncios y el contenido. Se puede medir el rendimiento de los anuncios y del contenido. Se puede derivar informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido. Los datos pueden utilizarse para elaborar o mejorar la experiencia del usuario, los sistemas y el software."}}} \ No newline at end of file +{"vendorListVersion":94,"lastUpdated":"2021-06-10T16:43:56Z","purposes":{"1":{"id":1,"name":"Almacenar o acceder a informaci\u00f3n en un dispositivo","description":"Se puede almacenar o acceder a cookies, identificadores de dispositivo u otra informaci\u00f3n en su dispositivo para las finalidades que se le presentan.","descriptionLegal":"Los proveedores pueden:\n* Almacenar y/o acceder a informaci\u00f3n en el dispositivo a trav\u00e9s de cookies e identificadores de dispositivo ejecutados/instalados en el equipo del usuario."},"2":{"id":2,"name":"Seleccionar anuncios b\u00e1sicos","description":"Los anuncios se pueden mostrar en funci\u00f3n del contenido que se est\u00e9 visualizando, la aplicaci\u00f3n que se est\u00e9 utilizando, su localizaci\u00f3n aproximada o su tipo de dispositivo.","descriptionLegal":"Para realizar la selecci\u00f3n de anuncios b\u00e1sicos, los proveedores pueden:\n* Utilizar informaci\u00f3n en tiempo real sobre el contexto en el que se mostrar\u00e1 el anuncio, para mostrar el anuncio, incluida la informaci\u00f3n sobre el contenido y el dispositivo, como por ejemplo: tipo de dispositivo y sus funcionalidades, agente de usuario, URL, direcci\u00f3n IP \n* Utilizar los datos de localizaci\u00f3n geogr\u00e1fica de aproximada\n* Controlar la frecuencia con la que se muestran los anuncios a un usuario.\n* Secuenciar el orden en el que se muestran los anuncios a un usuario.\n* Evitar que un anuncio se sirva o env\u00ede en un contexto editorial inadecuado (Brand safety)\nLos Proveedores no pueden:\n* Crear un perfil publicitario personalizado utilizando esta informaci\u00f3n para la selecci\u00f3n de anuncios futuros sin una base jur\u00eddica separada cuya finalidad espec\u00edfica fuera crear un perfil publicitario personalizados.\nNota: Aproximada significa que se permite solamente una localizaci\u00f3n aproximada de, como m\u00e1ximo, dentro de un radio de 500 metros.\n"},"3":{"id":3,"name":"Crear un perfil publicitario personalizado","description":"Se puede elaborar un perfil sobre usted y sus intereses para mostrarle anuncios personalizados que sean pertinentes para usted.","descriptionLegal":"Para crear un perfil publicitario personalizado, los proveedores pueden:\n* Recoger informaci\u00f3n sobre un usuario, (incluyendo la actividad anterior del usuario, sus intereses, p\u00e1ginas web o aplicaciones visitadas con anterioridad, ubicaci\u00f3n o informaci\u00f3n demogr\u00e1fica) a fin de crear o editar un perfil de usuario para su uso en publicidad personalizada.\n* Combinar esta informaci\u00f3n con otra informaci\u00f3n previamente recabada, incluido entre diferentes sitios web o aplicaciones, a fin de crear o editar un perfil de usuario para su uso en publicidad personalizada\n"},"4":{"id":4,"name":"Seleccionar anuncios personalizados","description":"Se pueden mostrar anuncios personalizados bas\u00e1ndose en su perfil.","descriptionLegal":"Para seleccionar anuncios personalizados, los proveedores pueden:\n* Seleccionar anuncios personalizados bas\u00e1ndose en un perfil de usuario u otros datos hist\u00f3ricos del usuario, incluida la actividad anterior de un usuario, sus intereses, visitas a sitios web o aplicaciones, ubicaci\u00f3n o informaci\u00f3n demogr\u00e1fica.\n"},"5":{"id":5,"name":"Crear un perfil para la personalizaci\u00f3n de contenidos","description":"Se puede crear un perfil sobre usted y sus intereses para mostrarle contenido personalizado que le fuera pertinente.","descriptionLegal":"Para crear un un perfil para la personalizaci\u00f3n de contenidos, los proveedores pueden:\n* Recoger informaci\u00f3n sobre un usuario, incluida la actividad de un usuario, sus intereses, visitas a sitios o aplicaciones, informaci\u00f3n demogr\u00e1fica o ubicaci\u00f3n, a fin de crear o editar un perfil de usuario para personalizar el contenido.\n* Combinar esta informaci\u00f3n con otra informaci\u00f3n previamente recabada, incluido entre diferentes sitios web o aplicaciones, a fin de crear o editar un perfil de usuario para personalizar el contenido.\n"},"6":{"id":6,"name":"Seleccionar contenido personalizado","description":"Se puede mostrar contenido personalizado basado en su perfil.","descriptionLegal":"Para seleccionar contenido personalizado, los proveedores pueden:\n* Seleccionar contenido personalizado bas\u00e1ndose en un perfil de usuario u otros datos hist\u00f3ricos de usuarios, incluida la actividad anterior del usuario, sus intereses, visitas a sitios web o aplicaciones, ubicaci\u00f3n o informaci\u00f3n demogr\u00e1fica."},"7":{"id":7,"name":"Medir el rendimiento de los anuncios","description":"Se puede medir el rendimiento y eficacia de los anuncios que usted ve o con los que interact\u00faa.","descriptionLegal":"Para medir el rendimiento de los anuncios, los proveedores pueden:\n* Medir si los anuncios fueron suministrados a un usuario y c\u00f3mo este interactu\u00f3 con ellos\n* Elaborar informes sobre anuncios, incluida su eficacia y rendimiento\n* Elaborar informes sobre los usuarios que interactuaron con los anuncios utilizando datos observados durante el curso de la interacci\u00f3n del usuario con ese anuncio\n* Elaborar informes para los editores sobre los anuncios mostrados en sus sitios web o propiedad digital\n* Medir si un anuncio sirve en un contexto editorial adecuado (seguro para la marca)\n* Determinar el porcentaje del anuncio que se tuvo la oportunidad de ser visto y la duraci\u00f3n de esa oportunidad \n* Combinar esta informaci\u00f3n con otra informaci\u00f3n previamente recabada, incluido entre diferentes sitios web o aplicaciones.\nLos proveedores no pueden:\n* Aplicar datos de informaci\u00f3n sobre el p\u00fablico basados en un panel de usuarios o similares a los datos de medici\u00f3n de anuncios sin una base jur\u00eddica independiente para utilizar estudios de mercado a fin de generar informaci\u00f3n sobre el p\u00fablico.\n"},"8":{"id":8,"name":"Medir el rendimiento del contenido","description":"Se puede medir el rendimiento y la eficacia del contenido que ve o con el que interact\u00faa.","descriptionLegal":"Para medir el rendimiento del contenido, los proveedores pueden:\n* Medir e informar sobre c\u00f3mo se entreg\u00f3 el contenido y c\u00f3mo interactuaron con \u00e9l los usuarios.\n* Elaborar informes, utilizando informaci\u00f3n directamente medible o conocida, sobre los usuarios que interactuaron con el contenido\n* Combinar esta informaci\u00f3n con otra informaci\u00f3n previamente recabada, incluido entre diferentes sitios web o aplicaciones.\nLos proveedores no pueden:\n* Medir si los anuncios (incluida la publicidad nativa) fueron suministrados a un usuario y si este interactu\u00f3 con ellos sin tener una base jur\u00eddica alternativa que lo permita.\n* Aplicar datos de informaci\u00f3n sobre el p\u00fablico, basados en un panel de usuarios o similares, a los datos de medici\u00f3n de anuncios sin una base jur\u00eddica independiente para utilizar estudios de mercado a fin de generar informaci\u00f3n sobre el p\u00fablico.\n"},"9":{"id":9,"name":"Utilizar estudios de mercado a fin de generar informaci\u00f3n sobre el p\u00fablico","description":"La investigaci\u00f3n de mercado puede utilizarse para obtener m\u00e1s informaci\u00f3n sobre el p\u00fablico que visita sitios webs/aplicaciones y visualiza los anuncios.","descriptionLegal":"Para utilizar estudios de mercado a fin de generar informaci\u00f3n sobre el p\u00fablico, los proveedores pueden:\n* Elaborar informes agregados para los anunciantes o sus representantes sobre el p\u00fablico alcanzado por sus anuncios, a trav\u00e9s de informaci\u00f3n basada en paneles de audiencia u obtenida de manera similar.\n* Elaborar informes agregados para los editores sobre el p\u00fablico al que se le mostraron contenidos y/o anuncios o que interactuaron con ellos en su propiedad, aplicando informaci\u00f3n basada en paneles de audiencia u obtenida de manera similar\n* Asociar datos off line con un usuario on line para finalidades de estudios de mercado a fin de generar informaci\u00f3n sobre el p\u00fablico si los proveedores han declarado que cotejan y combinan fuentes de datos off line \n* Combinar esta informaci\u00f3n con otra informaci\u00f3n previamente recabada, incluido entre diferentes sitios web o aplicaciones.\nLos proveedores no pueden: \n* Medir el rendimiento y la eficacia de los anuncios que se mostraron a un usuario espec\u00edfico o con los que interactu\u00f3, sin una base jur\u00eddica independiente para medir el rendimiento de los anuncios.\n\u2022 Medir qu\u00e9 contenido se mostr\u00f3 a un usuario espec\u00edfico y c\u00f3mo interactu\u00f3 con el mismo, sin una base jur\u00eddica independiente para medir el rendimiento del contenido.\n"},"10":{"id":10,"name":"Desarrollar y mejorar productos","description":"Sus datos pueden utilizarse para mejorar los sistemas y/o el software existente, as\u00ed como para desarrollar nuevos productos.","descriptionLegal":"Para desarrollar nuevos productos y mejorar los productos, los proveedores pueden:\n* Utilizar informaci\u00f3n para mejorar sus productos existentes con nuevas funcionalidades/caracter\u00edsticas y desarrollar nuevos productos\n* Crear nuevos modelos y algoritmos mediante machine learning\nLos proveedores no pueden:\n* A partir de esta finalidad no se puede llevar a cabo ninguna otra operaci\u00f3n de tratamiento de datos permitida en virtud de una finalidad distinta.\n"}},"specialPurposes":{"1":{"id":1,"name":"Garantizar la seguridad, evitar fraudes y depurar errores","description":"Sus datos pueden utilizarse para supervisar y evitar actividades fraudulentas, y para asegurar que los sistemas y procesos funcionen de forma correcta y segura.","descriptionLegal":"Para garantizar la seguridad, evitar fraudes y depurar errores, los proveedores pueden:\n* Asegurarse de que los datos se transmitan de forma segura \n* Detectar y evitar actividades maliciosas, fraudulentas, inaceptables o ilegales.\n* Asegurar el funcionamiento correcto y eficaz de los sistemas y procesos, lo que incluye supervisar y mejorar el rendimiento de los sistemas y procesos empleados en las finalidades permitidas\nLos proveedores no pueden:\n* Llevar a cabo ninguna otra operaci\u00f3n de tratamiento de datos permitida en virtud de una finalidad distinta.\nNota: Los datos recopilados y utilizados para garantizar la seguridad, evitar el fraude y depurar errores pueden incluir caracter\u00edsticas del dispositivo enviadas autom\u00e1ticamente para su identificaci\u00f3n, datos de geolocalizaci\u00f3n precisos y datos obtenidos analizando de forma activa las caracter\u00edsticas del dispositivo para su identificaci\u00f3n sin que sea necesario revelar m\u00e1s informaci\u00f3n y/o una aceptaci\u00f3n independiente. \n"},"2":{"id":2,"name":"Servir t\u00e9cnicamente anuncios o contenido","description":"Su dispositivo puede recibir y enviar informaci\u00f3n que le permita ver e interactuar con anuncios y contenido.","descriptionLegal":"Para servir informaci\u00f3n y responder a solicitudes t\u00e9cnicas, los proveedores pueden:\n* Utilizar la direcci\u00f3n IP de un usuario para entregar un anuncio a trav\u00e9s de Internet\n* Responder a la interacci\u00f3n de un usuario con un anuncio enviando al usuario a una p\u00e1gina de destino\n* Utilizar la direcci\u00f3n IP de un usuario para entregar contenido a trav\u00e9s de Internet\n* Responder a la interacci\u00f3n de un usuario con el contenido enviando al usuario a una p\u00e1gina de destino\n* Utilizar informaci\u00f3n sobre el tipo de dispositivo y sus capacidades para entregar anuncios o contenido, por ejemplo, para entregar el archivo publicitario o de v\u00eddeo de tama\u00f1o adecuado en un formato compatible con el dispositivo\nLos proveedores no pueden:\n* Llevar a cabo, seg\u00fan esta finalidad, ninguna otra operaci\u00f3n de tratamiento de datos permitida en virtud de una finalidad distinta.\n"}},"features":{"1":{"id":1,"name":"Cotejar y combinar fuentes de datos off line","description":"Los datos obtenidos de fuentes de datos off line pueden combinarse con su actividad on line para respaldar una o m\u00e1s finalidades.","descriptionLegal":"Los proveedores pueden: \n* Combinar los datos obtenidos off line con los datos recogidos on line en apoyo de una o m\u00e1s Finalidades o Finalidades especiales."},"2":{"id":2,"name":"Vincular diferentes dispositivos","description":"Se puede determinar que diferentes dispositivos pertenecen a usted o a su hogar para una o m\u00e1s finalidades.","descriptionLegal":"Los proveedores pueden:\n* Determinar de forma determinista que dos o m\u00e1s dispositivos pertenecen al mismo usuario u hogar\n* Determinar de forma probabil\u00edstica que dos o m\u00e1s dispositivos pertenecen al mismo usuario u hogar\n* Analizar activamente las caracter\u00edsticas del dispositivo para encontrar su identificaci\u00f3n probabil\u00edstica si los usuarios han permitido a los proveedores analizar activamente las caracter\u00edsticas del dispositivo para su identificaci\u00f3n (Funcionalidad especial 2)\n"},"3":{"id":3,"name":"Recibir y utilizar para su identificaci\u00f3n las caracter\u00edsticas del dispositivo que se env\u00edan autom\u00e1ticamente","description":"Su dispositivo puede distinguirse de otros dispositivos a partir de la informaci\u00f3n que env\u00eda autom\u00e1ticamente, como la direcci\u00f3n IP o el tipo de navegador.","descriptionLegal":"Los proveedores pueden:\n* Crear un identificador utilizando los datos recopilados autom\u00e1ticamente en un dispositivo para caracter\u00edsticas espec\u00edficas, por ejemplo, direcci\u00f3n IP o la cadena de agente de usuario.\n* Utilizar este identificador para intentar volver a identificar un dispositivo.\nLos proveedores no pueden:\n* Crear un identificador utilizando datos recogidos mediante el an\u00e1lisis activo de un dispositivo para hallar funcionalidads espec\u00edficas, por ejemplo, fuentes instaladas o resoluci\u00f3n de pantalla sin aceptaci\u00f3n independiente del usuario para analizar de forma activa las caracter\u00edsticas del dispositivo para su identificaci\u00f3n.\n* Utilizar este identificador para volver a identificar un dispositivo.\n"}},"specialFeatures":{"1":{"id":1,"name":"Utilizar datos de localizaci\u00f3n geogr\u00e1fica precisa","description":"Sus datos de localizaci\u00f3n geogr\u00e1fica precisa se pueden utilizar para una o m\u00e1s finalidades. Esto significa que su ubicaci\u00f3n puede tener una precisi\u00f3n de varios metros.","descriptionLegal":"Los proveedores pueden:\n* Recoger y tratar datos de localizaci\u00f3n geogr\u00e1fica precisa para una o m\u00e1s finalidades.\nNota: La localizaci\u00f3n geogr\u00e1fica precisa significa que no existen restricciones sobre la precisi\u00f3n de la ubicaci\u00f3n de un usuario; esto puede tener una precisi\u00f3n de varios metros.\n"},"2":{"id":2,"name":"Analizar activamente las caracter\u00edsticas del dispositivo para su identificaci\u00f3n","description":"Su dispositivo puede identificarse bas\u00e1ndose en un an\u00e1lisis de la combinaci\u00f3n \u00fanica de las caracter\u00edsticas de su dispositivo.","descriptionLegal":"Los proveedores pueden:\n* Crear un identificador utilizando datos recogidos mediante el an\u00e1lisis activo de un dispositivo para hallar caracter\u00edsticas espec\u00edficas, por ejemplo, fuentes instaladas o resoluci\u00f3n de pantalla. \n* Utilizar este identificador para volver a identificar un dispositivo.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Datos de localizaci\u00f3n geogr\u00e1fica precisa e identificaci\u00f3n mediante las caracter\u00edsticas de dispositivos","description":"Se puede utilizar la localizaci\u00f3n geogr\u00e1fica precisa y la informaci\u00f3n sobre las caracter\u00edsticas del dispositivo."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Anuncios b\u00e1sicos y medici\u00f3n de anuncios","description":"Se pueden mostrar anuncios b\u00e1sicos. Se puede medir el rendimiento de los anuncios."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Anuncios personalizados","description":"Los anuncios pueden personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor los anuncios."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Anuncios b\u00e1sicos y medici\u00f3n de anuncios","description":"Se pueden mostrar anuncios b\u00e1sicos. Se puede medir el rendimiento de los anuncios. Se puede inferir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Anuncios b\u00e1sicos, creaci\u00f3n de perfil publicitario personalizado y medici\u00f3n de anuncios","description":"Se pueden mostrar anuncios b\u00e1sicos. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor los anuncios. Se puede medir el rendimiento de los anuncios."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Mostrar anuncios personalizados y medici\u00f3n de anuncios","description":"Los anuncios pueden personalizarse bas\u00e1ndose en un perfil. Se puede medir el rendimiento de los anuncios."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Mostrar anuncios personalizados, medici\u00f3n de anuncios e informaci\u00f3n sobre el p\u00fablico","description":"Los anuncios pueden personalizarse bas\u00e1ndose en un perfil. Se puede medir el rendimiento de los anuncios. Se puede inferir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Anuncios personalizados y medici\u00f3n de anuncios","description":"Los anuncios pueden personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor los anuncios. Se puede medir el rendimiento de los anuncios."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Anuncios personalizados, medici\u00f3n de anuncios e informaci\u00f3n sobre el p\u00fablico","description":"Los anuncios pueden personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor los anuncios. Se puede medir el rendimiento de los anuncios. Se puede inferir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Perfil y muestra de anuncios personalizados","description":"Los anuncios pueden personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor los anuncios."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Contenido personalizado","description":"El contenido puede personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor el contenido."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Muestra de contenido personalizado y medici\u00f3n de contenido","description":"El contenido puede personalizarse bas\u00e1ndose en un perfil. Se puede medir el rendimiento del contenido."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Presentaci\u00f3n de contenido personalizado, medici\u00f3n del contenido e informaci\u00f3n sobre el p\u00fablico","description":"El contenido puede personalizarse bas\u00e1ndose en un perfil. Se puede medir el rendimiento del contenido. Se puede inferir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Contenido personalizado y medici\u00f3n del contenido","description":"El contenido puede personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor el contenido. Se puede medir el rendimiento del contenido."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Contenido personalizado, medici\u00f3n del contenido e informaci\u00f3n sobre el p\u00fablico","description":"El contenido puede personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor el contenido. Se puede medir el rendimiento del contenido. Se puede inferir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Contenido personalizado, medici\u00f3n del contenido, informaci\u00f3n sobre el p\u00fablico y desarrollo de productos","description":"El contenido puede personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor el contenido. Se puede medir el rendimiento del contenido. Se puede inducir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido. Los datos pueden utilizarse para elaborar o mejorar la experiencia del usuario, los sistemas y el software"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Medici\u00f3n de anuncios y del contenido e informaci\u00f3n sobre el p\u00fablico","description":"Se puede medir el rendimiento de los anuncios y del contenido. Se puede inferir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Medici\u00f3n de anuncios y del contenido","description":"Se puede medir el rendimiento de los anuncios y del contenido."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Medici\u00f3n de anuncios e informaci\u00f3n sobre el p\u00fablico","description":"Se pueden medir los anuncios. Se puede inferir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Medici\u00f3n de anuncios y del contenido, informaci\u00f3n sobre el p\u00fablico y desarrollo de productos","description":"Se puede medir el rendimiento de los anuncios y del contenido. Se puede inferir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido. Los datos pueden utilizarse para elaborar o mejorar la experiencia del usuario, los sistemas y el software. Se puede inferir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Medici\u00f3n del contenido, informaci\u00f3n sobre el p\u00fablico y desarrollo de productos","description":"Se puede medir el rendimiento del contenido. Se puede inferir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido. Los datos pueden utilizarse para elaborar o mejorar la experiencia del usuario, los sistemas y el software."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Medici\u00f3n del contenido y desarrollo de productos","description":"Se puede medir el rendimiento del contenido. Los datos pueden utilizarse para elaborar o mejorar la experiencia del usuario, los sistemas y el software."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Presentaci\u00f3n de anuncios y contenido personalizados, medici\u00f3n de anuncios y del contenido","description":"Los anuncios y el contenido pueden personalizarse bas\u00e1ndose en un perfil. Se puede medir el rendimiento de los anuncios y del contenido."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Presentaci\u00f3n de anuncios y contenido personalizados, medici\u00f3n de anuncios y del contenido e informaci\u00f3n sobre el p\u00fablico","description":"Los anuncios y el contenido pueden personalizarse bas\u00e1ndose en un perfil. Se puede medir el rendimiento de los anuncios y del contenido. Se puede inferir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido. Los datos pueden utilizarse para elaborar o mejorar la experiencia del usuario, los sistemas y el software."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Anuncios y contenido personalizados, medici\u00f3n de anuncios y del contenido","description":"Los anuncios y el contenido pueden personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor los anuncios y el contenido. Se puede medir el rendimiento de los anuncios y del contenido."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Anuncios y contenido personalizados, medici\u00f3n de anuncios y del contenido e informaci\u00f3n sobre el p\u00fablico","description":"Los anuncios y el contenido pueden personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor los anuncios y el contenido. Se puede medir el rendimiento de los anuncios y del contenido. Se puede inferir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Anuncios personalizados y contenido personalizado","description":"Se pueden a\u00f1adir m\u00e1s datos para personalizar los anuncios y el contenido."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Muestra de anuncios y contenido personalizados","description":"Los anuncios y el contenido pueden personalizarse bas\u00e1ndose en un perfil."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Anuncios b\u00e1sicos, medici\u00f3n de anuncios y del contenido e informaci\u00f3n sobre el p\u00fablico","description":"Se pueden mostrar anuncios b\u00e1sicos. Se puede medir el rendimiento de los anuncios y del contenido. Se puede inferir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Muestra de anuncios personalizados, contenido personalizado, medici\u00f3n de anuncios y del contenido e informaci\u00f3n sobre el p\u00fablico","description":"Los anuncios y el contenido pueden personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor el contenido. Se puede medir el rendimiento de los anuncios y del contenido. Se puede inferir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Muestra de anuncios personalizados, contenido personalizado, medici\u00f3n de anuncios y del contenido, informaci\u00f3n sobre el p\u00fablico y desarrollo de productos","description":"Los anuncios y el contenido pueden personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor el contenido. Se puede medir el rendimiento de los anuncios y del contenido. Se puede inferir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido. Los datos pueden utilizarse para elaborar o mejorar la experiencia del usuario, los sistemas y el software."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Anuncios b\u00e1sicos, contenido personalizado, medici\u00f3n de anuncios y del contenido e informaci\u00f3n sobre el p\u00fablico","description":"Se pueden mostrar anuncios b\u00e1sicos. El contenido puede personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor el contenido. Se puede medir el rendimiento de los anuncios y del contenido. Se puede inferir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Anuncios b\u00e1sicos, contenido personalizado, medici\u00f3n de anuncios y del contenido, informaci\u00f3n sobre el p\u00fablico y desarrollo de productos","description":"Se pueden mostrar anuncios b\u00e1sicos. El contenido puede personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor el contenido. Se puede medir el rendimiento de los anuncios y del contenido. Se puede inferir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido. Los datos pueden utilizarse para elaborar o mejorar la experiencia del usuario, los sistemas y el software."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Anuncios b\u00e1sicos, contenido personalizado, medici\u00f3n del contenido e informaci\u00f3n sobre el p\u00fablico","description":"Se pueden mostrar anuncios b\u00e1sicos. El contenido puede personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor el contenido. Se puede medir el rendimiento de los anuncios y del contenido. Se puede inferir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Anuncios b\u00e1sicos, contenido personalizado, medici\u00f3n del contenido, informaci\u00f3n sobre el p\u00fablico y desarrollo de productos","description":"Se pueden mostrar anuncios b\u00e1sicos. El contenido puede personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor el contenido. Se puede medir el rendimiento del contenido. Se puede inferir informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido. Los datos pueden utilizarse para elaborar o mejorar la experiencia del usuario, los sistemas y el software."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Anuncios b\u00e1sicos, contenido personalizado y medici\u00f3n de anuncios","description":"Se pueden mostrar anuncios b\u00e1sicos. El contenido puede personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor el contenido. Se puede medir el rendimiento de los anuncios."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Anuncios b\u00e1sicos, contenido personalizado, medici\u00f3n de anuncios y desarrollo de productos","description":"Se pueden mostrar anuncios b\u00e1sicos. El contenido puede personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor el contenido. Se puede medir el rendimiento de los anuncios. Los datos pueden utilizarse para elaborar o mejorar la experiencia del usuario, los sistemas y el software."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Anuncios personalizados, medici\u00f3n de anuncios y desarrollo de productos","description":"Los anuncios pueden personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor los anuncios. Se puede medir el rendimiento de los anuncios. Los datos pueden utilizarse para elaborar o mejorar la experiencia del usuario, los sistemas y el software."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Anuncios personalizados, medici\u00f3n de anuncios, informaci\u00f3n sobre el p\u00fablico y desarrollo de productos","description":"Los anuncios pueden personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor los anuncios. Se puede medir el rendimiento de los anuncios. Se puede derivar informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido. Los datos pueden utilizarse para elaborar o mejorar la experiencia del usuario, los sistemas y el software."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Anuncios personalizados, medici\u00f3n de anuncios y del contenido, informaci\u00f3n sobre el p\u00fablico y desarrollo de productos","description":"Los anuncios pueden personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor los anuncios. Se puede medir el rendimiento de los anuncios y del contenido. Se puede derivar informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido. Los datos pueden utilizarse para elaborar o mejorar la experiencia del usuario, los sistemas y el software."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Anuncios personalizados, muestra de contenido personalizado, medici\u00f3n de anuncios y del contenido, informaci\u00f3n sobre el p\u00fablico y desarrollo de productos","description":"Los anuncios y el contenido pueden personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor los anuncios. Se puede medir el rendimiento de los anuncios y del contenido. Se puede derivar informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido. Los datos pueden utilizarse para elaborar o mejorar la experiencia del usuario, los sistemas y el software."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Anuncios y contenido personalizados, medici\u00f3n de anuncios y del contenido, informaci\u00f3n sobre el p\u00fablico y desarrollo de productos","description":"Los anuncios y el contenido pueden personalizarse bas\u00e1ndose en un perfil. Se pueden a\u00f1adir m\u00e1s datos para personalizar mejor los anuncios y el contenido. Se puede medir el rendimiento de los anuncios y del contenido. Se puede derivar informaci\u00f3n sobre el p\u00fablico que vio los anuncios y el contenido. Los datos pueden utilizarse para elaborar o mejorar la experiencia del usuario, los sistemas y el software."}}} \ No newline at end of file diff --git a/src/s1/config/2.0/purposes/purposes-et.json b/src/s1/config/2.0/purposes/purposes-et.json index bb7dff0f..0ce6c5cb 100644 --- a/src/s1/config/2.0/purposes/purposes-et.json +++ b/src/s1/config/2.0/purposes/purposes-et.json @@ -1 +1 @@ -{"vendorListVersion":79,"lastUpdated":"2021-02-25T16:36:16Z","purposes":{"1":{"id":1,"name":"Teabe s\u00e4ilitamine ja/v\u00f5i ligip\u00e4\u00e4s teabele seadmes","description":"Teie seadmes v\u00f5idakse s\u00e4ilitada k\u00fcpsiseid, seadme identifikaatoreid v\u00f5i muud teavet v\u00f5i omada neile ligip\u00e4\u00e4su teile esitatud eesm\u00e4rkidel.","descriptionLegal":"M\u00fc\u00fcjad saavad:\n* s\u00e4ilitada seadmes teavet, nt kasutajale esitatavaid k\u00fcpsiseid ja seadme identifikaatoreid, ja omada sellele ligip\u00e4\u00e4su.\n"},"2":{"id":2,"name":"P\u00f5hireklaamide valimine","description":"Teile v\u00f5idakse kuvada reklaame teie vaadatava konteksti, kasutatava rakenduse, ligikaudse asukoha v\u00f5i seadme t\u00fc\u00fcbi p\u00f5hjal.","descriptionLegal":"P\u00f5hireklaamide valimiseks saavad m\u00fc\u00fcjad:\n* kasutada reklaami kuvamiseks reaalajas teavet konteksti kohta, milles reklaami kuvatakse, sh teavet sisu ja seadme kohta, n\u00e4iteks: seadme t\u00fc\u00fcp ja v\u00f5imalused, kasutaja programm, URL, IP-aadress \n* kasutada kasutaja mittet\u00e4pseid geolokatsiooniandmeid\n* valida kasutajale reklaamide kuvamise sageduse\n* valida reklaamide kasutajale kuvamise j\u00e4rjekorra\n* v\u00e4ltida reklaamide esitamist ebasobivas (kaubam\u00e4rgile mitteohutus) toimetamiskontekstis\nM\u00fc\u00fcjad ei saa:\n* luua seda teavet kasutades isikup\u00e4rastatud reklaamiprofiili edasiste reklaamide valimiseks, omamata eraldi seaduslikku alust isikup\u00e4rastatud reklaamiprofiili koostamiseks.\nNB! Mittet\u00e4pne t\u00e4hendab, et lubatud on ainult ligikaudne asukoht, v\u00e4hemalt 500 m raadiuses.\n"},"3":{"id":3,"name":"Isikup\u00e4rastatud reklaamiprofiili loomine","description":"Teie ja teie huvide kohta v\u00f5idakse koostada profiil, et kuvada teile teie jaoks asjakohaseid isikup\u00e4rastatud reklaame.","descriptionLegal":"Isikup\u00e4rastatud reklaamiprofiili loomiseks v\u00f5ivad m\u00fc\u00fcjad:\n* koguda teavet kasutaja kohta, sealhulgas kasutaja tegevuse, huvide, k\u00fclastatud veebisaitide v\u00f5i rakenduste kohta, demograafilisi v\u00f5i asukohaandmeid, et luua isikup\u00e4rastatud reklaamitegevuseks kasutajaprofiili v\u00f5i seda muuta.\n* Kombineerige see teave muu varem kogutud teabega, sealhulgas veebisaitidelt ja rakendustest, et luua v\u00f5i muuta isikup\u00e4rastatud reklaamides kasutamiseks m\u00f5eldud kasutajaprofiili."},"4":{"id":4,"name":"Isikup\u00e4rastatud reklaamide valimine","description":"Teile v\u00f5idakse kuvada teie profiili p\u00f5hjal isikup\u00e4rastatud reklaame.","descriptionLegal":"Isikup\u00e4rastatud reklaamide valimiseks v\u00f5ivad m\u00fc\u00fcjad:\n* valida isikup\u00e4rastatud reklaame kasutajaprofiili v\u00f5i muude kasutaja ajaloo andmete p\u00f5hjal, sealhulgas kasutaja varasema tegevuse, huvide, veebisaitide k\u00fclastamise v\u00f5i rakenduste kasutamise, asukoha v\u00f5i demograafiliste andmete p\u00f5hjal\n"},"5":{"id":5,"name":"Isikup\u00e4rastatud sisuprofiili loomine","description":"Teie ja teie huvide kohta v\u00f5idakse koostada profiil, et kuvada teie jaoks asjakohast isikup\u00e4rastatud sisu.","descriptionLegal":"Isikup\u00e4rastatud sisuprofiili loomiseks v\u00f5ivad m\u00fc\u00fcjad:\n* koguda teavet kasutaja kohta, sealhulgas kasutaja tegevuse, huvide kohta, veebisaitide k\u00fclastamise v\u00f5i rakenduste kasutamise kohta, demograafilisi v\u00f5i asukohaandmeid, et luua sisu isikup\u00e4rastamiseks kasutajaprofiili v\u00f5i seda muuta\n* Kombineerige see teave muu varem kogutud teabega, sh veebisaitidelt ja rakendustest, et luua v\u00f5i muuta kasutajaprofiili sisu isikup\u00e4rastamiseks.\n"},"6":{"id":6,"name":"Isikup\u00e4rastatud sisu valimine","description":"Teile v\u00f5idakse kuvada teie profiili p\u00f5hjal isikup\u00e4rastatud sisu.","descriptionLegal":"Isikup\u00e4rastatud sisu valimiseks v\u00f5ivad m\u00fc\u00fcjad:\n* valida isikup\u00e4rastatud sisu kasutajaprofiili v\u00f5i muude kasutaja ajaloo andmete p\u00f5hjal, sealhulgas kasutaja varasema tegevuse, huvide, veebisaitide k\u00fclastamise v\u00f5i rakenduste kasutamise, asukoha v\u00f5i demograafiliste andmete p\u00f5hjal\n"},"7":{"id":7,"name":"Reklaamide tulemuslikkuse m\u00f5\u00f5tmine","description":"V\u00f5idakse m\u00f5\u00f5ta nende reklaamide, mida n\u00e4ete v\u00f5i millega suhtlete, tulemuslikkust ja efektiivsust.","descriptionLegal":"M\u00fc\u00fcjad v\u00f5ivad reklaamide tulemuslikkuse m\u00f5\u00f5tmiseks:\n* m\u00f5\u00f5ta, kas ja kuidas reklaame kasutajale esitatakse ja kuidas kasutaja on nendega suhelnud\n* esitada reklaamide, sealhulgas nende efektiivsuse ja tulemuslikkuse kohta aruandeid\n* esitada aruandeid reklaamidega suhelnud kasutajate kohta, kasutades kasutaja selle reklaamiga suhtlemise k\u00e4igus saadud andmeid\n* esitada aruandeid kanalitele nende omandil kuvatud reklaamide kohta\n* m\u00f5\u00f5ta, kas reklaam on sobiva toimetamiskeskkonnaga (kaubam\u00e4rgile ohutus) kontekstis\n* m\u00e4\u00e4rata kindlaks reklaami osakaalu, mida oli v\u00f5imalik n\u00e4ha, ja selle v\u00f5imaluse kestuse \nM\u00fc\u00fcjad ei saa:\n* kohaldada reklaamide m\u00f5\u00f5tmisandmete suhtes paneelilt v\u00f5i sarnasel viisil vaatajaskonna kohta eraldi \u00f5igusliku aluseta omandatud anal\u00fc\u00fcsiandmeid, et teha turu-uuringuid vaatajaskonna anal\u00fc\u00fcsideks.\n"},"8":{"id":8,"name":"Sisu tulemuslikkuse m\u00f5\u00f5tmine","description":"V\u00f5idakse m\u00f5\u00f5ta selle sisu, mida n\u00e4ete v\u00f5i millega suhtlete, tulemuslikkust ja efektiivsust.","descriptionLegal":"M\u00fc\u00fcjad v\u00f5ivad sisu tulemuslikkuse m\u00f5\u00f5tmiseks:\n* m\u00f5\u00f5ta, kuidas sisu kasutajale esitatakse ja kuidas kasutaja on nendega suhelnud, ning selle kohta aruandeid esitada\n* esitada otseselt m\u00f5\u00f5detavate v\u00f5i teadaolevate andmete aruandeid kasutajate kohta, kes on sisuga suhelnud\nM\u00fc\u00fcjad ei saa:\n* m\u00f5\u00f5ta, kas ja kuidas reklaame (sealhulgas sulanduvaid reklaame) kasutajale esitatakse ja kuidas kasutaja on nendega suhelnud\n* kohaldada reklaamide m\u00f5\u00f5tmisandmete suhtes paneelilt v\u00f5i sarnasel viisil vaatajaskonna kohta eraldi \u00f5igusliku aluseta omandatud anal\u00fc\u00fcsiandmeid, et teha turu-uuringuid vaatajaskonna anal\u00fc\u00fcsideks\n"},"9":{"id":9,"name":"Turu-uuringute tegemine vaatajaskonna anal\u00fc\u00fcsideks","description":"V\u00f5idakse teha turu-uuringuid t\u00e4psema teabe saamiseks veebisaitide k\u00fclastajate / rakenduste kasutajate ja reklaamide vaatajate kohta.","descriptionLegal":"Turu-uuringute tegemiseks vaatajaskonna anal\u00fc\u00fcsideks v\u00f5ivad m\u00fc\u00fcjad:\n* esitada reklaamijatele v\u00f5i nende esindajatele koondaruandeid vaatajaskondade kohta, kelleni nende reklaamid j\u00f5uavad, paneelip\u00f5histe ja sarnaselt omandatud anal\u00fc\u00fcsiandmete kaudu\n* esitada aruandeid kanalitele vaatajaskondade kohta, kes nende omandil sisu ja/v\u00f5i reklaame vaatasid v\u00f5i nendega suhtlesid, paneelip\u00f5histe ja sarnaselt omandatud anal\u00fc\u00fcsiandmete kaudu \n* seostada turu-uuringu eesm\u00e4rgil veebikasutajaga veebiv\u00e4liseid andmeid, et saada vaatajaskonna kohta anal\u00fc\u00fcsiandmeid, kui m\u00fc\u00fcjad on teatanud veebiv\u00e4liste andmeallikatega kokkuviimisest ja seostamisest (1. funktsioon)\nM\u00fc\u00fcjad ei saa: \n* m\u00f5\u00f5ta nende reklaamide tulemuslikkust ja efektiivsust, mis on esitatud konkreetsele kasutajale v\u00f5i millega ta on suhelnud, kui reklaami tulemuslikkuse m\u00f5\u00f5tmiseks puudub eraldi \u00f5iguslik alus;\n* m\u00f5\u00f5ta, milline sisu on esitatud konkreetsele kasutajale v\u00f5i kuidas ta on sellega suhelnud, kui sisu tulemuslikkuse m\u00f5\u00f5tmiseks puudub eraldi \u00f5iguslik alus.\n"},"10":{"id":10,"name":"Toodete arendamine ja t\u00e4iustamine","description":"Teie andmeid v\u00f5idakse kasutada olemasolevate s\u00fcsteemide ja tarkvara t\u00e4iustamiseks ja uute toodete arendamiseks.","descriptionLegal":"Uute toodete arendamiseks ja toodete t\u00e4iustamiseks v\u00f5ivad m\u00fc\u00fcjad:\n* kasutada teavet oma olemasolevate toodete t\u00e4iustamiseks uute funktsioonidega ning uute toodete arendamiseks\n* luua masin\u00f5ppe kaudu uusi mudeleid ja algoritme\nM\u00fc\u00fcjad ei saa:\n* teha selle eesm\u00e4rgi raames muid, muude eesm\u00e4rkide all lubatud andmet\u00f6\u00f6tlemise toiminguid\n"}},"specialPurposes":{"1":{"id":1,"name":"Turvalisuse tagamine, pettuste ennetamine ja vigade k\u00f5rvaldamine","description":"Teie andmeid v\u00f5idakse kasutada j\u00e4lgimiseks pettuste suhtes ja pettuste ennetamiseks ning s\u00fcsteemide ja protsesside \u00f5ige ja turvalise t\u00f6\u00f6 tagamiseks.","descriptionLegal":"Turvalisuse tagamiseks, pettuste ennetamiseks ja vigade k\u00f5rvaldamiseks v\u00f5ivad m\u00fc\u00fcjad:\n* tagada andmete turvalise edastamine \n* avastada ja ennetada r\u00fcnnakuid, pettusi, kehtetuid v\u00f5i ebaseaduslikke tegevusi\n* tagada s\u00fcsteemide ja protsesside \u00f5ige ja efektiivne t\u00f6\u00f6, sealhulgas j\u00e4lgida ja t\u00e4iustada lubatud eesm\u00e4rkide puhul kasutatavate s\u00fcsteemide ja protsesside j\u00f5udlust\nM\u00fc\u00fcjad ei saa:\n* teha selle eesm\u00e4rgi raames muid, muude eesm\u00e4rkide all lubatud andmet\u00f6\u00f6tlemise toiminguid\nM\u00e4rkus. Turvalisuse tagamiseks, pettuste t\u00f5kestamiseks ja programmivigade k\u00f5rvaldamiseks kogutavad ja kasutatavad andmed v\u00f5ivad h\u00f5lmata automaatselt saadetavaid seadme identifitseerimisandmeid, t\u00e4pseid geolokatsiooniandmeid ja andmeid, mis on saadud seadme identifitseerimisandmete aktiivse skaneerimise teel, eraldi deklareerimise ja/v\u00f5i valiku tegemiseta.\n"},"2":{"id":2,"name":"Reklaamide v\u00f5i sisu tehniline esitamine","description":"Teie seade v\u00f5ib saada ja saata teavet, mis v\u00f5imaldab teil n\u00e4ha reklaame ja sisu ning nendega suhelda.","descriptionLegal":"Teabe esitamiseks ja tehnilistele p\u00e4ringutele vastamiseks v\u00f5ivad m\u00fc\u00fcjad:\n* kasutada kasutaja IP-aadressi reklaami esitamiseks veebis\n* reageerida kasutaja suhtlemisele reklaamiga, saates kasutaja maandumislehele\n* kasutada kasutaja IP-aadressi sisu esitamiseks veebis\n* reageerida kasutaja suhtlemisele sisuga, saates kasutaja maandumislehele\n* kasutada teavet seadme t\u00fc\u00fcbi ja v\u00f5imaluste kohta reklaamide v\u00f5i sisu esitamiseks, n\u00e4iteks esitada \u00f5iges suuruses reklaami loomingulist v\u00f5i videofaili vormingus, mida seade toetab\nM\u00fc\u00fcjad ei saa:\n* teha selle eesm\u00e4rgi raames muid, muude eesm\u00e4rkide all lubatud andmet\u00f6\u00f6tlemise toiminguid\n"}},"features":{"1":{"id":1,"name":"Veebiv\u00e4liste andmeallikatega kokkuviimine ja seostamine","description":"Teie tegevusega veebis v\u00f5idakse seostada veebiv\u00e4listest andmeallikatest omandatud andmeid \u00fche v\u00f5i mitme eesm\u00e4rgi v\u00f5i erieesm\u00e4rgi toetamiseks.","descriptionLegal":"M\u00fc\u00fcjad saavad: \n* seostada veebiv\u00e4liselt omandatud andmeid veebist kogutud andmetega \u00fche v\u00f5i mitme eesm\u00e4rgi v\u00f5i erieesm\u00e4rgi toetamiseks\n"},"2":{"id":2,"name":"Erinevate seadmete seostamine","description":"Erinevaid seadmeid v\u00f5idakse m\u00e4\u00e4rata kindlaks teile v\u00f5i teie leibkonnale kuuluvateks \u00fche v\u00f5i mitme eesm\u00e4rgi v\u00f5i erieesm\u00e4rgi toetamiseks.","descriptionLegal":"M\u00fc\u00fcjad saavad:\n* deterministlikult kindlaks m\u00e4\u00e4rata, et kaks v\u00f5i rohkem seadet kuuluvad samale kasutajale v\u00f5i leibkonnale\n* t\u00f5en\u00e4osuslikult kindlaks m\u00e4\u00e4rata, et kaks v\u00f5i rohkem seadet kuuluvad samale kasutajale v\u00f5i leibkonnale\n* skaneerida aktiivselt seadme omadusi selle t\u00f5en\u00e4osuslikuks tuvastamiseks, kui kasutajad on lubanud m\u00fc\u00fcjatel seadme omadusi tuvastamiseks aktiivselt skaneerida (2. erifunktsioon)\n"},"3":{"id":3,"name":"Automaatselt saadetavate seadme identifitseerimisandmete saamine ja kasutamine","description":"Teie seadet v\u00f5idakse eristada teistest seadmetest sellest automaatselt saadetavate andmete p\u00f5hjal, nagu IP-aadress v\u00f5i brauseri t\u00fc\u00fcp.","descriptionLegal":"M\u00fc\u00fcjad saavad:\n* luua identifikaatori, kasutades automaatselt seadme eriomaduste kohta kogutud andmeid, nt IP-aadress, kasutaja-programmi string\n* kasutada seda identifikaatoriseadme uuesti tuvastamise katseks\nM\u00fc\u00fcjad ei saa:\n* luua identifikaatorit seadme eriomaduste, nt installitud fontide v\u00f5i ekraaniresolutsiooni suhtes aktiivse skaneerimise teel kogutud andmete p\u00f5hjal, ilma kasutaja tehtud eraldi valikuta\n* kasutada seda identifikaatorit seadme uuesti tuvastamiseks\n"}},"specialFeatures":{"1":{"id":1,"name":"T\u00e4psete geolokatsiooniandmete kasutamine","description":"Teie t\u00e4pseid geolokatsiooniandmeid v\u00f5idakse kasutada \u00fche v\u00f5i mitme eesm\u00e4rgi toetamiseks. See t\u00e4hendab, et teie asukoht v\u00f5ib olla m\u00e4\u00e4ratud kuni m\u00f5ne meetri t\u00e4psusega.","descriptionLegal":"M\u00fc\u00fcjad saavad:\n* koguda ja t\u00f6\u00f6delda t\u00e4pseid geolokatsiooniandmeid \u00fche v\u00f5i mitme eesm\u00e4rgi toetamiseks\nNB! T\u00e4psed geolokatsiooniandmed t\u00e4hendavad, et kasutaja asukoha t\u00e4psus ei ole piiratud; see v\u00f5ib olla m\u00e4\u00e4ratud kuni m\u00f5ne meetri t\u00e4psusega.\nM\u00e4rkus. Nende andmete teatavat kasutamist turvalisuse eesm\u00e4rgil v\u00f5i pettuste t\u00f5kestamiseks on k\u00e4sitletud eraldi ning kasutaja ei pea tegema t\u00e4psete geolokatsiooniandmete kasutamise suhtes eraldi valikut. \n"},"2":{"id":2,"name":"Seadme omaduste aktiivne skaneerimine tuvastamiseks","description":"Teie seadet v\u00f5idakse tuvastada teie seadme ainulaadse omaduste kombinatsiooni skaneerimise teel.","descriptionLegal":"M\u00fc\u00fcjad saavad:\n* luua identifikaator seadme eriomaduste, nt installitud fontide v\u00f5i ekraaniresolutsiooni suhtes aktiivse skaneerimise teel kogutud andmete p\u00f5hjal \n* kasutada seda identifikaatorit seadme uuesti tuvastamiseks\nM\u00e4rkus. Nende andmete teatavat kasutamist turvalisuse eesm\u00e4rgil v\u00f5i pettuste t\u00f5kestamiseks on k\u00e4sitletud eraldi ning kasutaja ei pea tegema aktiivse skaneerimise teel omandatud seadme identifitseerimisandmete kasutamise suhtes eraldi valikut.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"T\u00e4psed geolokatsiooniandmed ja tuvastamine seadme skaneerimise teel","description":"V\u00f5ib kasutada t\u00e4pseid geolokatsiooniandmeid ja teavet seadme omaduste kohta."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"P\u00f5hireklaamid ja reklaamide m\u00f5\u00f5tmine","description":"V\u00f5ib esitada p\u00f5hireklaame. V\u00f5ib m\u00f5\u00f5ta reklaamide tulemuslikkust."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Isikup\u00e4rastatud reklaamid","description":"Reklaame v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Reklaamide paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"P\u00f5hireklaamid ja reklaamide m\u00f5\u00f5tmine","description":"V\u00f5ib esitada p\u00f5hireklaame. V\u00f5ib m\u00f5\u00f5ta reklaamide tulemuslikkust. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"P\u00f5hireklaamid, isikup\u00e4rastatud reklaamide profiil ja reklaamide m\u00f5\u00f5tmine","description":"V\u00f5ib esitada p\u00f5hireklaame. Reklaamide paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. V\u00f5ib m\u00f5\u00f5ta reklaamide tulemuslikkust."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Isikup\u00e4rastatud reklaamide kuvamine ja m\u00f5\u00f5tmine","description":"Reklaame v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. V\u00f5ib m\u00f5\u00f5ta reklaamide tulemuslikkust."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Isikup\u00e4rastatud reklaamide kuvamine, reklaamide m\u00f5\u00f5tmine ja vaatajaskonna anal\u00fc\u00fcsid","description":"Reklaame v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. V\u00f5ib m\u00f5\u00f5ta reklaamide tulemuslikkust. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Isikup\u00e4rastatud reklaamid ja reklaamide m\u00f5\u00f5tmine","description":"Reklaame v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Reklaamide paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. V\u00f5ib m\u00f5\u00f5ta reklaamide tulemuslikkust."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Isikup\u00e4rastatud reklaamid, reklaamide m\u00f5\u00f5tmine ja vaatajaskonna anal\u00fc\u00fcsid","description":"Reklaame v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Reklaamide paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. V\u00f5ib m\u00f5\u00f5ta reklaamide tulemuslikkust. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Isikup\u00e4rastatud reklaami profiil ja kuvamine","description":"Reklaame v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Reklaamide paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Isikup\u00e4rastatud sisu","description":"Sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Sisu paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Isikup\u00e4rastatud sisu kuvamine ja sisu m\u00f5\u00f5tmine","description":"Sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Sisu tulemuslikkust v\u00f5ib m\u00f5\u00f5ta."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Isikup\u00e4rastatud sisu kuvamine, sisu m\u00f5\u00f5tmine ja vaatajaskonna anal\u00fc\u00fcsid","description":"Sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Sisu tulemuslikkust v\u00f5ib m\u00f5\u00f5ta. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Isikup\u00e4rastatud sisu ning sisu m\u00f5\u00f5tmine","description":"Sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Sisu paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. Sisu tulemuslikkust v\u00f5ib m\u00f5\u00f5ta."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Isikup\u00e4rastatud sisu, sisu m\u00f5\u00f5tmine ja vaatajaskonna anal\u00fc\u00fcsid","description":"Sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Sisu paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. Sisu tulemuslikkust v\u00f5ib m\u00f5\u00f5ta. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Isikup\u00e4rastatud sisu, sisu m\u00f5\u00f5tmine, vaatajaskonna anal\u00fc\u00fcsid ja tootearendus","description":"Sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Sisu paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. Sisu tulemuslikkust v\u00f5ib m\u00f5\u00f5ta. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta. Andmeid v\u00f5ib kasutada kasutajakogemuse, s\u00fcsteemide ja tarkvara loomiseks v\u00f5i t\u00e4iustamiseks"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Reklaamide ja sisu m\u00f5\u00f5tmine ja vaatajaskonna anal\u00fc\u00fcsid","description":"V\u00f5ib m\u00f5\u00f5ta reklaamide ja sisu tulemuslikkust. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Reklaamide ja sisu m\u00f5\u00f5tmine","description":"V\u00f5ib m\u00f5\u00f5ta reklaamide ja sisu tulemuslikkust."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Reklaamide m\u00f5\u00f5tmine ja vaatajaskonna anal\u00fc\u00fcsid","description":"Reklaame v\u00f5ib m\u00f5\u00f5ta. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Reklaamide ja sisu m\u00f5\u00f5tmine, vaatajaskonna anal\u00fc\u00fcsid ja tootearendus","description":"V\u00f5ib m\u00f5\u00f5ta reklaamide ja sisu tulemuslikkust. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta. Andmeid v\u00f5ib kasutada kasutajakogemuse, s\u00fcsteemide ja tarkvara loomiseks v\u00f5i t\u00e4iustamiseks. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Sisu m\u00f5\u00f5tmine, vaatajaskonna anal\u00fc\u00fcsid ja tootearendus","description":"Sisu tulemuslikkust v\u00f5ib m\u00f5\u00f5ta. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta. Andmeid v\u00f5ib kasutada kasutajakogemuse, s\u00fcsteemide ja tarkvara loomiseks v\u00f5i t\u00e4iustamiseks."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Sisu m\u00f5\u00f5tmine ja tootearendus","description":"Sisu tulemuslikkust v\u00f5ib m\u00f5\u00f5ta. Andmeid v\u00f5ib kasutada kasutajakogemuse, s\u00fcsteemide ja tarkvara loomiseks v\u00f5i t\u00e4iustamiseks."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Isikup\u00e4rastatud reklaamide ja sisu kuvamine, reklaamide ja sisu m\u00f5\u00f5tmine","description":"Reklaame ja sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. V\u00f5ib m\u00f5\u00f5ta reklaamide ja sisu tulemuslikkust."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Isikup\u00e4rastatud reklaamide ja sisu kuvamine, reklaamide ja sisu m\u00f5\u00f5tmine ja vaatajaskonna anal\u00fc\u00fcsid","description":"Reklaame ja sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. V\u00f5ib m\u00f5\u00f5ta reklaamide ja sisu tulemuslikkust. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta. Andmeid v\u00f5ib kasutada kasutajakogemuse, s\u00fcsteemide ja tarkvara loomiseks v\u00f5i t\u00e4iustamiseks."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Isikup\u00e4rastatud reklaamid ja sisu, reklaamide ja sisu m\u00f5\u00f5tmine","description":"Reklaame ja sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Reklaamide ja sisu paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. V\u00f5ib m\u00f5\u00f5ta reklaamide ja sisu tulemuslikkust."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Isikup\u00e4rastatud reklaamid ja sisu, reklaamide ja sisu m\u00f5\u00f5tmine ja vaatajaskonna anal\u00fc\u00fcsid","description":"Reklaame ja sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Reklaamide ja sisu paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. V\u00f5ib m\u00f5\u00f5ta reklaamide ja sisu tulemuslikkust. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Isikup\u00e4rastatud reklaamid ning sisuprofiil","description":"Reklaamide ja sisu isikup\u00e4rastamiseks v\u00f5ib andmeid lisada"},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Isikup\u00e4rastatud reklaamide ja sisu kuvamine","description":"Reklaame ja sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"P\u00f5hireklaamid, reklaamide ja sisu m\u00f5\u00f5tmine ja vaatajaskonna anal\u00fc\u00fcsid","description":"V\u00f5ib esitada p\u00f5hireklaame. V\u00f5ib m\u00f5\u00f5ta reklaamide ja sisu tulemuslikkust. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Isikup\u00e4rastatud reklaamide kuvamine, isikup\u00e4rastatud sisu, reklaamide ja sisu m\u00f5\u00f5tmine ja vaatajaskonna anal\u00fc\u00fcsid","description":"Reklaame ja sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Sisu paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. V\u00f5ib m\u00f5\u00f5ta reklaamide ja sisu tulemuslikkust. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Isikup\u00e4rastatud reklaamide kuvamine, isikup\u00e4rastatud sisu, reklaamide ja sisu m\u00f5\u00f5tmine ja vaatajaskonna anal\u00fc\u00fcsid ja tootearendus","description":"Reklaame ja sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Sisu paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. V\u00f5ib m\u00f5\u00f5ta reklaamide ja sisu tulemuslikkust. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta. Andmeid v\u00f5ib kasutada kasutajakogemuse, s\u00fcsteemide ja tarkvara loomiseks v\u00f5i t\u00e4iustamiseks."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"P\u00f5hireklaamid, isikup\u00e4rastatud sisu, reklaamide ja sisu m\u00f5\u00f5tmine ja vaatajaskonna anal\u00fc\u00fcsid","description":"V\u00f5ib esitada p\u00f5hireklaame. Sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Sisu paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. V\u00f5ib m\u00f5\u00f5ta reklaamide ja sisu tulemuslikkust. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"P\u00f5hireklaamid, isikup\u00e4rastatud sisu, reklaamide ja sisu m\u00f5\u00f5tmine, vaatajaskonna anal\u00fc\u00fcsid ja tootearendus","description":"V\u00f5ib esitada p\u00f5hireklaame. Sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Sisu paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. V\u00f5ib m\u00f5\u00f5ta reklaamide ja sisu tulemuslikkust. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta. Andmeid v\u00f5ib kasutada kasutajakogemuse, s\u00fcsteemide ja tarkvara loomiseks v\u00f5i t\u00e4iustamiseks."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"P\u00f5hireklaamid, isikup\u00e4rastatud sisu, sisu m\u00f5\u00f5tmine ja vaatajaskonna anal\u00fc\u00fcsid","description":"V\u00f5ib esitada p\u00f5hireklaame. Sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Sisu paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. V\u00f5ib m\u00f5\u00f5ta reklaamide ja sisu tulemuslikkust. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"P\u00f5hireklaamid, isikup\u00e4rastatud sisu, sisu m\u00f5\u00f5tmine, vaatajaskonna anal\u00fc\u00fcsid ja tootearendus","description":"V\u00f5ib esitada p\u00f5hireklaame. Sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Sisu paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. Sisu tulemuslikkust v\u00f5ib m\u00f5\u00f5ta. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta. Andmeid v\u00f5ib kasutada kasutajakogemuse, s\u00fcsteemide ja tarkvara loomiseks v\u00f5i t\u00e4iustamiseks."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"P\u00f5hireklaamid, isikup\u00e4rastatud sisu ning reklaamide m\u00f5\u00f5tmine","description":"V\u00f5ib esitada p\u00f5hireklaame. Sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Sisu paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. V\u00f5ib m\u00f5\u00f5ta reklaamide tulemuslikkust."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"P\u00f5hireklaamid, isikup\u00e4rastatud sisu, reklaamide m\u00f5\u00f5tmine ja tootearendus","description":"V\u00f5ib esitada p\u00f5hireklaame. Sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Sisu paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. V\u00f5ib m\u00f5\u00f5ta reklaamide tulemuslikkust. Andmeid v\u00f5ib kasutada kasutajakogemuse, s\u00fcsteemide ja tarkvara loomiseks v\u00f5i t\u00e4iustamiseks."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Isikup\u00e4rastatud reklaamid, reklaamide m\u00f5\u00f5tmine ja tootearendus","description":"Reklaame v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Reklaamide paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. V\u00f5ib m\u00f5\u00f5ta reklaamide tulemuslikkust. Andmeid v\u00f5ib kasutada kasutajakogemuse, s\u00fcsteemide ja tarkvara loomiseks v\u00f5i t\u00e4iustamiseks."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Isikup\u00e4rastatud reklaamid, sisu m\u00f5\u00f5tmine, vaatajaskonna anal\u00fc\u00fcsid ja tootearendus","description":"Reklaame v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Reklaamide paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. V\u00f5ib m\u00f5\u00f5ta reklaamide tulemuslikkust. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta. Andmeid v\u00f5ib kasutada kasutajakogemuse, s\u00fcsteemide ja tarkvara loomiseks v\u00f5i t\u00e4iustamiseks."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Isikup\u00e4rastatud reklaamid, reklaamide ja sisu m\u00f5\u00f5tmine, vaatajaskonna anal\u00fc\u00fcsid ja tootearendus","description":"Reklaame v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Reklaamide paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. V\u00f5ib m\u00f5\u00f5ta reklaamide ja sisu tulemuslikkust. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta. Andmeid v\u00f5ib kasutada kasutajakogemuse, s\u00fcsteemide ja tarkvara loomiseks v\u00f5i t\u00e4iustamiseks."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Isikup\u00e4rastatud reklaamid, isikup\u00e4rastatud reklaamide kuvamine, reklaamide ja sisu m\u00f5\u00f5tmine, vaatajaskonna anal\u00fc\u00fcsid ja tootearendus","description":"Reklaame ja sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Reklaamide paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. V\u00f5ib m\u00f5\u00f5ta reklaamide ja sisu tulemuslikkust. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta. Andmeid v\u00f5ib kasutada kasutajakogemuse, s\u00fcsteemide ja tarkvara loomiseks v\u00f5i t\u00e4iustamiseks."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Isikup\u00e4rastatud reklaamid ja sisu, reklaamide ja sisu m\u00f5\u00f5tmine, vaatajaskonna anal\u00fc\u00fcsid ja tootearendus","description":"Reklaame ja sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Reklaamide ja sisu paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. V\u00f5ib m\u00f5\u00f5ta reklaamide ja sisu tulemuslikkust. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta. Andmeid v\u00f5ib kasutada kasutajakogemuse, s\u00fcsteemide ja tarkvara loomiseks v\u00f5i t\u00e4iustamiseks."}}} \ No newline at end of file +{"vendorListVersion":94,"lastUpdated":"2021-06-10T16:43:56Z","purposes":{"1":{"id":1,"name":"Teabe s\u00e4ilitamine ja/v\u00f5i ligip\u00e4\u00e4s teabele seadmes","description":"Teie seadmes v\u00f5idakse s\u00e4ilitada k\u00fcpsiseid, seadme identifikaatoreid v\u00f5i muud teavet v\u00f5i omada neile ligip\u00e4\u00e4su teile esitatud eesm\u00e4rkidel.","descriptionLegal":"M\u00fc\u00fcjad saavad:\n* s\u00e4ilitada seadmes teavet, nt kasutajale esitatavaid k\u00fcpsiseid ja seadme identifikaatoreid, ja omada sellele ligip\u00e4\u00e4su.\n"},"2":{"id":2,"name":"P\u00f5hireklaamide valimine","description":"Teile v\u00f5idakse kuvada reklaame teie vaadatava konteksti, kasutatava rakenduse, ligikaudse asukoha v\u00f5i seadme t\u00fc\u00fcbi p\u00f5hjal.","descriptionLegal":"P\u00f5hireklaamide valimiseks saavad m\u00fc\u00fcjad:\n* kasutada reklaami kuvamiseks reaalajas teavet konteksti kohta, milles reklaami kuvatakse, sh teavet sisu ja seadme kohta, n\u00e4iteks: seadme t\u00fc\u00fcp ja v\u00f5imalused, kasutaja programm, URL, IP-aadress \n* kasutada kasutaja mittet\u00e4pseid geolokatsiooniandmeid\n* valida kasutajale reklaamide kuvamise sageduse\n* valida reklaamide kasutajale kuvamise j\u00e4rjekorra\n* v\u00e4ltida reklaamide esitamist ebasobivas (kaubam\u00e4rgile mitteohutus) toimetamiskontekstis\nM\u00fc\u00fcjad ei saa:\n* luua seda teavet kasutades isikup\u00e4rastatud reklaamiprofiili edasiste reklaamide valimiseks, omamata eraldi seaduslikku alust isikup\u00e4rastatud reklaamiprofiili koostamiseks.\nNB! Mittet\u00e4pne t\u00e4hendab, et lubatud on ainult ligikaudne asukoht, v\u00e4hemalt 500 m raadiuses.\n"},"3":{"id":3,"name":"Isikup\u00e4rastatud reklaamiprofiili loomine","description":"Teie ja teie huvide kohta v\u00f5idakse koostada profiil, et kuvada teile teie jaoks asjakohaseid isikup\u00e4rastatud reklaame.","descriptionLegal":"Isikup\u00e4rastatud reklaamiprofiili loomiseks v\u00f5ivad m\u00fc\u00fcjad:\n* koguda teavet kasutaja kohta, sealhulgas kasutaja tegevuse, huvide, k\u00fclastatud veebisaitide v\u00f5i rakenduste kohta, demograafilisi v\u00f5i asukohaandmeid, et luua isikup\u00e4rastatud reklaamitegevuseks kasutajaprofiili v\u00f5i seda muuta.\n* Kombineerige see teave muu varem kogutud teabega, sealhulgas veebisaitidelt ja rakendustest, et luua v\u00f5i muuta isikup\u00e4rastatud reklaamides kasutamiseks m\u00f5eldud kasutajaprofiili."},"4":{"id":4,"name":"Isikup\u00e4rastatud reklaamide valimine","description":"Teile v\u00f5idakse kuvada teie profiili p\u00f5hjal isikup\u00e4rastatud reklaame.","descriptionLegal":"Isikup\u00e4rastatud reklaamide valimiseks v\u00f5ivad m\u00fc\u00fcjad:\n* valida isikup\u00e4rastatud reklaame kasutajaprofiili v\u00f5i muude kasutaja ajaloo andmete p\u00f5hjal, sealhulgas kasutaja varasema tegevuse, huvide, veebisaitide k\u00fclastamise v\u00f5i rakenduste kasutamise, asukoha v\u00f5i demograafiliste andmete p\u00f5hjal\n"},"5":{"id":5,"name":"Isikup\u00e4rastatud sisuprofiili loomine","description":"Teie ja teie huvide kohta v\u00f5idakse koostada profiil, et kuvada teie jaoks asjakohast isikup\u00e4rastatud sisu.","descriptionLegal":"Isikup\u00e4rastatud sisuprofiili loomiseks v\u00f5ivad m\u00fc\u00fcjad:\n* koguda teavet kasutaja kohta, sealhulgas kasutaja tegevuse, huvide kohta, veebisaitide k\u00fclastamise v\u00f5i rakenduste kasutamise kohta, demograafilisi v\u00f5i asukohaandmeid, et luua sisu isikup\u00e4rastamiseks kasutajaprofiili v\u00f5i seda muuta\n* Kombineerige see teave muu varem kogutud teabega, sh veebisaitidelt ja rakendustest, et luua v\u00f5i muuta kasutajaprofiili sisu isikup\u00e4rastamiseks.\n"},"6":{"id":6,"name":"Isikup\u00e4rastatud sisu valimine","description":"Teile v\u00f5idakse kuvada teie profiili p\u00f5hjal isikup\u00e4rastatud sisu.","descriptionLegal":"Isikup\u00e4rastatud sisu valimiseks v\u00f5ivad m\u00fc\u00fcjad:\n* valida isikup\u00e4rastatud sisu kasutajaprofiili v\u00f5i muude kasutaja ajaloo andmete p\u00f5hjal, sealhulgas kasutaja varasema tegevuse, huvide, veebisaitide k\u00fclastamise v\u00f5i rakenduste kasutamise, asukoha v\u00f5i demograafiliste andmete p\u00f5hjal\n"},"7":{"id":7,"name":"Reklaamide tulemuslikkuse m\u00f5\u00f5tmine","description":"V\u00f5idakse m\u00f5\u00f5ta nende reklaamide, mida n\u00e4ete v\u00f5i millega suhtlete, tulemuslikkust ja efektiivsust.","descriptionLegal":"M\u00fc\u00fcjad v\u00f5ivad reklaamide tulemuslikkuse m\u00f5\u00f5tmiseks:\n* m\u00f5\u00f5ta, kas ja kuidas reklaame kasutajale esitatakse ja kuidas kasutaja on nendega suhelnud\n* esitada reklaamide, sealhulgas nende efektiivsuse ja tulemuslikkuse kohta aruandeid\n* esitada aruandeid reklaamidega suhelnud kasutajate kohta, kasutades kasutaja selle reklaamiga suhtlemise k\u00e4igus saadud andmeid\n* esitada aruandeid kanalitele nende omandil kuvatud reklaamide kohta\n* m\u00f5\u00f5ta, kas reklaam on sobiva toimetamiskeskkonnaga (kaubam\u00e4rgile ohutus) kontekstis\n* m\u00e4\u00e4rata kindlaks reklaami osakaalu, mida oli v\u00f5imalik n\u00e4ha, ja selle v\u00f5imaluse kestuse \nM\u00fc\u00fcjad ei saa:\n* kohaldada reklaamide m\u00f5\u00f5tmisandmete suhtes paneelilt v\u00f5i sarnasel viisil vaatajaskonna kohta eraldi \u00f5igusliku aluseta omandatud anal\u00fc\u00fcsiandmeid, et teha turu-uuringuid vaatajaskonna anal\u00fc\u00fcsideks.\n"},"8":{"id":8,"name":"Sisu tulemuslikkuse m\u00f5\u00f5tmine","description":"V\u00f5idakse m\u00f5\u00f5ta selle sisu, mida n\u00e4ete v\u00f5i millega suhtlete, tulemuslikkust ja efektiivsust.","descriptionLegal":"M\u00fc\u00fcjad v\u00f5ivad sisu tulemuslikkuse m\u00f5\u00f5tmiseks:\n* m\u00f5\u00f5ta, kuidas sisu kasutajale esitatakse ja kuidas kasutaja on nendega suhelnud, ning selle kohta aruandeid esitada\n* esitada otseselt m\u00f5\u00f5detavate v\u00f5i teadaolevate andmete aruandeid kasutajate kohta, kes on sisuga suhelnud\nM\u00fc\u00fcjad ei saa:\n* m\u00f5\u00f5ta, kas ja kuidas reklaame (sealhulgas sulanduvaid reklaame) kasutajale esitatakse ja kuidas kasutaja on nendega suhelnud\n* kohaldada reklaamide m\u00f5\u00f5tmisandmete suhtes paneelilt v\u00f5i sarnasel viisil vaatajaskonna kohta eraldi \u00f5igusliku aluseta omandatud anal\u00fc\u00fcsiandmeid, et teha turu-uuringuid vaatajaskonna anal\u00fc\u00fcsideks\n"},"9":{"id":9,"name":"Turu-uuringute tegemine vaatajaskonna anal\u00fc\u00fcsideks","description":"V\u00f5idakse teha turu-uuringuid t\u00e4psema teabe saamiseks veebisaitide k\u00fclastajate / rakenduste kasutajate ja reklaamide vaatajate kohta.","descriptionLegal":"Turu-uuringute tegemiseks vaatajaskonna anal\u00fc\u00fcsideks v\u00f5ivad m\u00fc\u00fcjad:\n* esitada reklaamijatele v\u00f5i nende esindajatele koondaruandeid vaatajaskondade kohta, kelleni nende reklaamid j\u00f5uavad, paneelip\u00f5histe ja sarnaselt omandatud anal\u00fc\u00fcsiandmete kaudu\n* esitada aruandeid kanalitele vaatajaskondade kohta, kes nende omandil sisu ja/v\u00f5i reklaame vaatasid v\u00f5i nendega suhtlesid, paneelip\u00f5histe ja sarnaselt omandatud anal\u00fc\u00fcsiandmete kaudu \n* seostada turu-uuringu eesm\u00e4rgil veebikasutajaga veebiv\u00e4liseid andmeid, et saada vaatajaskonna kohta anal\u00fc\u00fcsiandmeid, kui m\u00fc\u00fcjad on teatanud veebiv\u00e4liste andmeallikatega kokkuviimisest ja seostamisest (1. funktsioon)\nM\u00fc\u00fcjad ei saa: \n* m\u00f5\u00f5ta nende reklaamide tulemuslikkust ja efektiivsust, mis on esitatud konkreetsele kasutajale v\u00f5i millega ta on suhelnud, kui reklaami tulemuslikkuse m\u00f5\u00f5tmiseks puudub eraldi \u00f5iguslik alus;\n* m\u00f5\u00f5ta, milline sisu on esitatud konkreetsele kasutajale v\u00f5i kuidas ta on sellega suhelnud, kui sisu tulemuslikkuse m\u00f5\u00f5tmiseks puudub eraldi \u00f5iguslik alus.\n"},"10":{"id":10,"name":"Toodete arendamine ja t\u00e4iustamine","description":"Teie andmeid v\u00f5idakse kasutada olemasolevate s\u00fcsteemide ja tarkvara t\u00e4iustamiseks ja uute toodete arendamiseks.","descriptionLegal":"Uute toodete arendamiseks ja toodete t\u00e4iustamiseks v\u00f5ivad m\u00fc\u00fcjad:\n* kasutada teavet oma olemasolevate toodete t\u00e4iustamiseks uute funktsioonidega ning uute toodete arendamiseks\n* luua masin\u00f5ppe kaudu uusi mudeleid ja algoritme\nM\u00fc\u00fcjad ei saa:\n* teha selle eesm\u00e4rgi raames muid, muude eesm\u00e4rkide all lubatud andmet\u00f6\u00f6tlemise toiminguid\n"}},"specialPurposes":{"1":{"id":1,"name":"Turvalisuse tagamine, pettuste ennetamine ja vigade k\u00f5rvaldamine","description":"Teie andmeid v\u00f5idakse kasutada j\u00e4lgimiseks pettuste suhtes ja pettuste ennetamiseks ning s\u00fcsteemide ja protsesside \u00f5ige ja turvalise t\u00f6\u00f6 tagamiseks.","descriptionLegal":"Turvalisuse tagamiseks, pettuste ennetamiseks ja vigade k\u00f5rvaldamiseks v\u00f5ivad m\u00fc\u00fcjad:\n* tagada andmete turvalise edastamine \n* avastada ja ennetada r\u00fcnnakuid, pettusi, kehtetuid v\u00f5i ebaseaduslikke tegevusi\n* tagada s\u00fcsteemide ja protsesside \u00f5ige ja efektiivne t\u00f6\u00f6, sealhulgas j\u00e4lgida ja t\u00e4iustada lubatud eesm\u00e4rkide puhul kasutatavate s\u00fcsteemide ja protsesside j\u00f5udlust\nM\u00fc\u00fcjad ei saa:\n* teha selle eesm\u00e4rgi raames muid, muude eesm\u00e4rkide all lubatud andmet\u00f6\u00f6tlemise toiminguid\nM\u00e4rkus. Turvalisuse tagamiseks, pettuste t\u00f5kestamiseks ja programmivigade k\u00f5rvaldamiseks kogutavad ja kasutatavad andmed v\u00f5ivad h\u00f5lmata automaatselt saadetavaid seadme identifitseerimisandmeid, t\u00e4pseid geolokatsiooniandmeid ja andmeid, mis on saadud seadme identifitseerimisandmete aktiivse skaneerimise teel, eraldi deklareerimise ja/v\u00f5i valiku tegemiseta.\n"},"2":{"id":2,"name":"Reklaamide v\u00f5i sisu tehniline esitamine","description":"Teie seade v\u00f5ib saada ja saata teavet, mis v\u00f5imaldab teil n\u00e4ha reklaame ja sisu ning nendega suhelda.","descriptionLegal":"Teabe esitamiseks ja tehnilistele p\u00e4ringutele vastamiseks v\u00f5ivad m\u00fc\u00fcjad:\n* kasutada kasutaja IP-aadressi reklaami esitamiseks veebis\n* reageerida kasutaja suhtlemisele reklaamiga, saates kasutaja maandumislehele\n* kasutada kasutaja IP-aadressi sisu esitamiseks veebis\n* reageerida kasutaja suhtlemisele sisuga, saates kasutaja maandumislehele\n* kasutada teavet seadme t\u00fc\u00fcbi ja v\u00f5imaluste kohta reklaamide v\u00f5i sisu esitamiseks, n\u00e4iteks esitada \u00f5iges suuruses reklaami loomingulist v\u00f5i videofaili vormingus, mida seade toetab\nM\u00fc\u00fcjad ei saa:\n* teha selle eesm\u00e4rgi raames muid, muude eesm\u00e4rkide all lubatud andmet\u00f6\u00f6tlemise toiminguid\n"}},"features":{"1":{"id":1,"name":"Veebiv\u00e4liste andmeallikatega kokkuviimine ja seostamine","description":"Teie tegevusega veebis v\u00f5idakse seostada veebiv\u00e4listest andmeallikatest omandatud andmeid \u00fche v\u00f5i mitme eesm\u00e4rgi v\u00f5i erieesm\u00e4rgi toetamiseks.","descriptionLegal":"M\u00fc\u00fcjad saavad: \n* seostada veebiv\u00e4liselt omandatud andmeid veebist kogutud andmetega \u00fche v\u00f5i mitme eesm\u00e4rgi v\u00f5i erieesm\u00e4rgi toetamiseks\n"},"2":{"id":2,"name":"Erinevate seadmete seostamine","description":"Erinevaid seadmeid v\u00f5idakse m\u00e4\u00e4rata kindlaks teile v\u00f5i teie leibkonnale kuuluvateks \u00fche v\u00f5i mitme eesm\u00e4rgi v\u00f5i erieesm\u00e4rgi toetamiseks.","descriptionLegal":"M\u00fc\u00fcjad saavad:\n* deterministlikult kindlaks m\u00e4\u00e4rata, et kaks v\u00f5i rohkem seadet kuuluvad samale kasutajale v\u00f5i leibkonnale\n* t\u00f5en\u00e4osuslikult kindlaks m\u00e4\u00e4rata, et kaks v\u00f5i rohkem seadet kuuluvad samale kasutajale v\u00f5i leibkonnale\n* skaneerida aktiivselt seadme omadusi selle t\u00f5en\u00e4osuslikuks tuvastamiseks, kui kasutajad on lubanud m\u00fc\u00fcjatel seadme omadusi tuvastamiseks aktiivselt skaneerida (2. erifunktsioon)\n"},"3":{"id":3,"name":"Automaatselt saadetavate seadme identifitseerimisandmete saamine ja kasutamine","description":"Teie seadet v\u00f5idakse eristada teistest seadmetest sellest automaatselt saadetavate andmete p\u00f5hjal, nagu IP-aadress v\u00f5i brauseri t\u00fc\u00fcp.","descriptionLegal":"M\u00fc\u00fcjad saavad:\n* luua identifikaatori, kasutades automaatselt seadme eriomaduste kohta kogutud andmeid, nt IP-aadress, kasutaja-programmi string\n* kasutada seda identifikaatoriseadme uuesti tuvastamise katseks\nM\u00fc\u00fcjad ei saa:\n* luua identifikaatorit seadme eriomaduste, nt installitud fontide v\u00f5i ekraaniresolutsiooni suhtes aktiivse skaneerimise teel kogutud andmete p\u00f5hjal, ilma kasutaja tehtud eraldi valikuta\n* kasutada seda identifikaatorit seadme uuesti tuvastamiseks\n"}},"specialFeatures":{"1":{"id":1,"name":"T\u00e4psete geolokatsiooniandmete kasutamine","description":"Teie t\u00e4pseid geolokatsiooniandmeid v\u00f5idakse kasutada \u00fche v\u00f5i mitme eesm\u00e4rgi toetamiseks. See t\u00e4hendab, et teie asukoht v\u00f5ib olla m\u00e4\u00e4ratud kuni m\u00f5ne meetri t\u00e4psusega.","descriptionLegal":"M\u00fc\u00fcjad saavad:\n* koguda ja t\u00f6\u00f6delda t\u00e4pseid geolokatsiooniandmeid \u00fche v\u00f5i mitme eesm\u00e4rgi toetamiseks\nNB! T\u00e4psed geolokatsiooniandmed t\u00e4hendavad, et kasutaja asukoha t\u00e4psus ei ole piiratud; see v\u00f5ib olla m\u00e4\u00e4ratud kuni m\u00f5ne meetri t\u00e4psusega.\nM\u00e4rkus. Nende andmete teatavat kasutamist turvalisuse eesm\u00e4rgil v\u00f5i pettuste t\u00f5kestamiseks on k\u00e4sitletud eraldi ning kasutaja ei pea tegema t\u00e4psete geolokatsiooniandmete kasutamise suhtes eraldi valikut. \n"},"2":{"id":2,"name":"Seadme omaduste aktiivne skaneerimine tuvastamiseks","description":"Teie seadet v\u00f5idakse tuvastada teie seadme ainulaadse omaduste kombinatsiooni skaneerimise teel.","descriptionLegal":"M\u00fc\u00fcjad saavad:\n* luua identifikaator seadme eriomaduste, nt installitud fontide v\u00f5i ekraaniresolutsiooni suhtes aktiivse skaneerimise teel kogutud andmete p\u00f5hjal \n* kasutada seda identifikaatorit seadme uuesti tuvastamiseks\nM\u00e4rkus. Nende andmete teatavat kasutamist turvalisuse eesm\u00e4rgil v\u00f5i pettuste t\u00f5kestamiseks on k\u00e4sitletud eraldi ning kasutaja ei pea tegema aktiivse skaneerimise teel omandatud seadme identifitseerimisandmete kasutamise suhtes eraldi valikut.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"T\u00e4psed geolokatsiooniandmed ja tuvastamine seadme skaneerimise teel","description":"V\u00f5ib kasutada t\u00e4pseid geolokatsiooniandmeid ja teavet seadme omaduste kohta."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"P\u00f5hireklaamid ja reklaamide m\u00f5\u00f5tmine","description":"V\u00f5ib esitada p\u00f5hireklaame. V\u00f5ib m\u00f5\u00f5ta reklaamide tulemuslikkust."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Isikup\u00e4rastatud reklaamid","description":"Reklaame v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Reklaamide paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"P\u00f5hireklaamid ja reklaamide m\u00f5\u00f5tmine","description":"V\u00f5ib esitada p\u00f5hireklaame. V\u00f5ib m\u00f5\u00f5ta reklaamide tulemuslikkust. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"P\u00f5hireklaamid, isikup\u00e4rastatud reklaamide profiil ja reklaamide m\u00f5\u00f5tmine","description":"V\u00f5ib esitada p\u00f5hireklaame. Reklaamide paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. V\u00f5ib m\u00f5\u00f5ta reklaamide tulemuslikkust."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Isikup\u00e4rastatud reklaamide kuvamine ja m\u00f5\u00f5tmine","description":"Reklaame v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. V\u00f5ib m\u00f5\u00f5ta reklaamide tulemuslikkust."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Isikup\u00e4rastatud reklaamide kuvamine, reklaamide m\u00f5\u00f5tmine ja vaatajaskonna anal\u00fc\u00fcsid","description":"Reklaame v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. V\u00f5ib m\u00f5\u00f5ta reklaamide tulemuslikkust. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Isikup\u00e4rastatud reklaamid ja reklaamide m\u00f5\u00f5tmine","description":"Reklaame v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Reklaamide paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. V\u00f5ib m\u00f5\u00f5ta reklaamide tulemuslikkust."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Isikup\u00e4rastatud reklaamid, reklaamide m\u00f5\u00f5tmine ja vaatajaskonna anal\u00fc\u00fcsid","description":"Reklaame v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Reklaamide paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. V\u00f5ib m\u00f5\u00f5ta reklaamide tulemuslikkust. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Isikup\u00e4rastatud reklaami profiil ja kuvamine","description":"Reklaame v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Reklaamide paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Isikup\u00e4rastatud sisu","description":"Sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Sisu paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Isikup\u00e4rastatud sisu kuvamine ja sisu m\u00f5\u00f5tmine","description":"Sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Sisu tulemuslikkust v\u00f5ib m\u00f5\u00f5ta."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Isikup\u00e4rastatud sisu kuvamine, sisu m\u00f5\u00f5tmine ja vaatajaskonna anal\u00fc\u00fcsid","description":"Sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Sisu tulemuslikkust v\u00f5ib m\u00f5\u00f5ta. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Isikup\u00e4rastatud sisu ning sisu m\u00f5\u00f5tmine","description":"Sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Sisu paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. Sisu tulemuslikkust v\u00f5ib m\u00f5\u00f5ta."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Isikup\u00e4rastatud sisu, sisu m\u00f5\u00f5tmine ja vaatajaskonna anal\u00fc\u00fcsid","description":"Sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Sisu paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. Sisu tulemuslikkust v\u00f5ib m\u00f5\u00f5ta. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Isikup\u00e4rastatud sisu, sisu m\u00f5\u00f5tmine, vaatajaskonna anal\u00fc\u00fcsid ja tootearendus","description":"Sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Sisu paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. Sisu tulemuslikkust v\u00f5ib m\u00f5\u00f5ta. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta. Andmeid v\u00f5ib kasutada kasutajakogemuse, s\u00fcsteemide ja tarkvara loomiseks v\u00f5i t\u00e4iustamiseks"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Reklaamide ja sisu m\u00f5\u00f5tmine ja vaatajaskonna anal\u00fc\u00fcsid","description":"V\u00f5ib m\u00f5\u00f5ta reklaamide ja sisu tulemuslikkust. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Reklaamide ja sisu m\u00f5\u00f5tmine","description":"V\u00f5ib m\u00f5\u00f5ta reklaamide ja sisu tulemuslikkust."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Reklaamide m\u00f5\u00f5tmine ja vaatajaskonna anal\u00fc\u00fcsid","description":"Reklaame v\u00f5ib m\u00f5\u00f5ta. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Reklaamide ja sisu m\u00f5\u00f5tmine, vaatajaskonna anal\u00fc\u00fcsid ja tootearendus","description":"V\u00f5ib m\u00f5\u00f5ta reklaamide ja sisu tulemuslikkust. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta. Andmeid v\u00f5ib kasutada kasutajakogemuse, s\u00fcsteemide ja tarkvara loomiseks v\u00f5i t\u00e4iustamiseks. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Sisu m\u00f5\u00f5tmine, vaatajaskonna anal\u00fc\u00fcsid ja tootearendus","description":"Sisu tulemuslikkust v\u00f5ib m\u00f5\u00f5ta. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta. Andmeid v\u00f5ib kasutada kasutajakogemuse, s\u00fcsteemide ja tarkvara loomiseks v\u00f5i t\u00e4iustamiseks."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Sisu m\u00f5\u00f5tmine ja tootearendus","description":"Sisu tulemuslikkust v\u00f5ib m\u00f5\u00f5ta. Andmeid v\u00f5ib kasutada kasutajakogemuse, s\u00fcsteemide ja tarkvara loomiseks v\u00f5i t\u00e4iustamiseks."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Isikup\u00e4rastatud reklaamide ja sisu kuvamine, reklaamide ja sisu m\u00f5\u00f5tmine","description":"Reklaame ja sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. V\u00f5ib m\u00f5\u00f5ta reklaamide ja sisu tulemuslikkust."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Isikup\u00e4rastatud reklaamide ja sisu kuvamine, reklaamide ja sisu m\u00f5\u00f5tmine ja vaatajaskonna anal\u00fc\u00fcsid","description":"Reklaame ja sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. V\u00f5ib m\u00f5\u00f5ta reklaamide ja sisu tulemuslikkust. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta. Andmeid v\u00f5ib kasutada kasutajakogemuse, s\u00fcsteemide ja tarkvara loomiseks v\u00f5i t\u00e4iustamiseks."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Isikup\u00e4rastatud reklaamid ja sisu, reklaamide ja sisu m\u00f5\u00f5tmine","description":"Reklaame ja sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Reklaamide ja sisu paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. V\u00f5ib m\u00f5\u00f5ta reklaamide ja sisu tulemuslikkust."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Isikup\u00e4rastatud reklaamid ja sisu, reklaamide ja sisu m\u00f5\u00f5tmine ja vaatajaskonna anal\u00fc\u00fcsid","description":"Reklaame ja sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Reklaamide ja sisu paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. V\u00f5ib m\u00f5\u00f5ta reklaamide ja sisu tulemuslikkust. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Isikup\u00e4rastatud reklaamid ning sisuprofiil","description":"Reklaamide ja sisu isikup\u00e4rastamiseks v\u00f5ib andmeid lisada"},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Isikup\u00e4rastatud reklaamide ja sisu kuvamine","description":"Reklaame ja sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"P\u00f5hireklaamid, reklaamide ja sisu m\u00f5\u00f5tmine ja vaatajaskonna anal\u00fc\u00fcsid","description":"V\u00f5ib esitada p\u00f5hireklaame. V\u00f5ib m\u00f5\u00f5ta reklaamide ja sisu tulemuslikkust. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Isikup\u00e4rastatud reklaamide kuvamine, isikup\u00e4rastatud sisu, reklaamide ja sisu m\u00f5\u00f5tmine ja vaatajaskonna anal\u00fc\u00fcsid","description":"Reklaame ja sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Sisu paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. V\u00f5ib m\u00f5\u00f5ta reklaamide ja sisu tulemuslikkust. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Isikup\u00e4rastatud reklaamide kuvamine, isikup\u00e4rastatud sisu, reklaamide ja sisu m\u00f5\u00f5tmine ja vaatajaskonna anal\u00fc\u00fcsid ja tootearendus","description":"Reklaame ja sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Sisu paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. V\u00f5ib m\u00f5\u00f5ta reklaamide ja sisu tulemuslikkust. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta. Andmeid v\u00f5ib kasutada kasutajakogemuse, s\u00fcsteemide ja tarkvara loomiseks v\u00f5i t\u00e4iustamiseks."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"P\u00f5hireklaamid, isikup\u00e4rastatud sisu, reklaamide ja sisu m\u00f5\u00f5tmine ja vaatajaskonna anal\u00fc\u00fcsid","description":"V\u00f5ib esitada p\u00f5hireklaame. Sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Sisu paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. V\u00f5ib m\u00f5\u00f5ta reklaamide ja sisu tulemuslikkust. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"P\u00f5hireklaamid, isikup\u00e4rastatud sisu, reklaamide ja sisu m\u00f5\u00f5tmine, vaatajaskonna anal\u00fc\u00fcsid ja tootearendus","description":"V\u00f5ib esitada p\u00f5hireklaame. Sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Sisu paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. V\u00f5ib m\u00f5\u00f5ta reklaamide ja sisu tulemuslikkust. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta. Andmeid v\u00f5ib kasutada kasutajakogemuse, s\u00fcsteemide ja tarkvara loomiseks v\u00f5i t\u00e4iustamiseks."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"P\u00f5hireklaamid, isikup\u00e4rastatud sisu, sisu m\u00f5\u00f5tmine ja vaatajaskonna anal\u00fc\u00fcsid","description":"V\u00f5ib esitada p\u00f5hireklaame. Sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Sisu paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. V\u00f5ib m\u00f5\u00f5ta reklaamide ja sisu tulemuslikkust. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"P\u00f5hireklaamid, isikup\u00e4rastatud sisu, sisu m\u00f5\u00f5tmine, vaatajaskonna anal\u00fc\u00fcsid ja tootearendus","description":"V\u00f5ib esitada p\u00f5hireklaame. Sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Sisu paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. Sisu tulemuslikkust v\u00f5ib m\u00f5\u00f5ta. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta. Andmeid v\u00f5ib kasutada kasutajakogemuse, s\u00fcsteemide ja tarkvara loomiseks v\u00f5i t\u00e4iustamiseks."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"P\u00f5hireklaamid, isikup\u00e4rastatud sisu ning reklaamide m\u00f5\u00f5tmine","description":"V\u00f5ib esitada p\u00f5hireklaame. Sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Sisu paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. V\u00f5ib m\u00f5\u00f5ta reklaamide tulemuslikkust."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"P\u00f5hireklaamid, isikup\u00e4rastatud sisu, reklaamide m\u00f5\u00f5tmine ja tootearendus","description":"V\u00f5ib esitada p\u00f5hireklaame. Sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Sisu paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. V\u00f5ib m\u00f5\u00f5ta reklaamide tulemuslikkust. Andmeid v\u00f5ib kasutada kasutajakogemuse, s\u00fcsteemide ja tarkvara loomiseks v\u00f5i t\u00e4iustamiseks."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Isikup\u00e4rastatud reklaamid, reklaamide m\u00f5\u00f5tmine ja tootearendus","description":"Reklaame v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Reklaamide paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. V\u00f5ib m\u00f5\u00f5ta reklaamide tulemuslikkust. Andmeid v\u00f5ib kasutada kasutajakogemuse, s\u00fcsteemide ja tarkvara loomiseks v\u00f5i t\u00e4iustamiseks."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Isikup\u00e4rastatud reklaamid, sisu m\u00f5\u00f5tmine, vaatajaskonna anal\u00fc\u00fcsid ja tootearendus","description":"Reklaame v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Reklaamide paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. V\u00f5ib m\u00f5\u00f5ta reklaamide tulemuslikkust. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta. Andmeid v\u00f5ib kasutada kasutajakogemuse, s\u00fcsteemide ja tarkvara loomiseks v\u00f5i t\u00e4iustamiseks."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Isikup\u00e4rastatud reklaamid, reklaamide ja sisu m\u00f5\u00f5tmine, vaatajaskonna anal\u00fc\u00fcsid ja tootearendus","description":"Reklaame v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Reklaamide paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. V\u00f5ib m\u00f5\u00f5ta reklaamide ja sisu tulemuslikkust. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta. Andmeid v\u00f5ib kasutada kasutajakogemuse, s\u00fcsteemide ja tarkvara loomiseks v\u00f5i t\u00e4iustamiseks."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Isikup\u00e4rastatud reklaamid, isikup\u00e4rastatud reklaamide kuvamine, reklaamide ja sisu m\u00f5\u00f5tmine, vaatajaskonna anal\u00fc\u00fcsid ja tootearendus","description":"Reklaame ja sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Reklaamide paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. V\u00f5ib m\u00f5\u00f5ta reklaamide ja sisu tulemuslikkust. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta. Andmeid v\u00f5ib kasutada kasutajakogemuse, s\u00fcsteemide ja tarkvara loomiseks v\u00f5i t\u00e4iustamiseks."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Isikup\u00e4rastatud reklaamid ja sisu, reklaamide ja sisu m\u00f5\u00f5tmine, vaatajaskonna anal\u00fc\u00fcsid ja tootearendus","description":"Reklaame ja sisu v\u00f5ib profiili p\u00f5hjal isikup\u00e4rastada. Reklaamide ja sisu paremaks isikup\u00e4rastamiseks v\u00f5ib andmeid lisada. V\u00f5ib m\u00f5\u00f5ta reklaamide ja sisu tulemuslikkust. V\u00f5ib teha anal\u00fc\u00fcse reklaame ja sisu n\u00e4inud vaatajaskonna kohta. Andmeid v\u00f5ib kasutada kasutajakogemuse, s\u00fcsteemide ja tarkvara loomiseks v\u00f5i t\u00e4iustamiseks."}}} \ No newline at end of file diff --git a/src/s1/config/2.0/purposes/purposes-fi.json b/src/s1/config/2.0/purposes/purposes-fi.json index 9c032cf4..75c80ba2 100644 --- a/src/s1/config/2.0/purposes/purposes-fi.json +++ b/src/s1/config/2.0/purposes/purposes-fi.json @@ -1 +1 @@ -{"vendorListVersion":79,"lastUpdated":"2021-02-25T16:36:17Z","purposes":{"1":{"id":1,"name":"Tietojen tallennus laitteelle ja/tai laitteella olevien tietojen k\u00e4ytt\u00f6","description":"Laitteellesi voidaan tallentaa ev\u00e4steit\u00e4, laitetunnisteita tai muita tietoja ja niit\u00e4 voidaan k\u00e4ytt\u00e4\u00e4 sinulle esitettyihin tarkoituksiin.","descriptionLegal":"Toimittajat voivat\n* tallentaa laitteelle tietoja, kuten ev\u00e4steit\u00e4 ja laitetunnisteita, ja k\u00e4ytt\u00e4\u00e4 tietoja k\u00e4ytt\u00e4j\u00e4lle esitettyihin tarkoituksiin."},"2":{"id":2,"name":"Tavallisten mainosten valinta","description":"N\u00e4ytett\u00e4v\u00e4t mainokset voidaan valita katsomasi sis\u00e4ll\u00f6n, k\u00e4ytt\u00e4m\u00e4si sovelluksen tai laitteen, tai likim\u00e4\u00e4r\u00e4isen sijaintisi perusteella.","descriptionLegal":"Tavallisten mainosten valitsemiseksi toimittajat voivat\n* k\u00e4ytt\u00e4\u00e4 reaaliaikaisia tietoja kontekstista, kun mainos n\u00e4ytet\u00e4\u00e4n, mukaan lukien sis\u00e4lt\u00f6\u00e4 ja laitetta koskevat tiedot, kuten laitetyyppi ja ominaisuudet, selaimen tiedot (user-agent), URL-osoite ja IP-osoite. \n* k\u00e4ytt\u00e4\u00e4 k\u00e4ytt\u00e4j\u00e4n likim\u00e4\u00e4r\u00e4isi\u00e4 sijaintitietoja\n* m\u00e4\u00e4ritt\u00e4\u00e4, kuinka usein mainokset n\u00e4ytet\u00e4\u00e4n k\u00e4ytt\u00e4j\u00e4lle\n* m\u00e4\u00e4ritt\u00e4\u00e4 j\u00e4rjestyksen, jossa mainokset n\u00e4ytet\u00e4\u00e4n k\u00e4ytt\u00e4j\u00e4lle\n* est\u00e4\u00e4 mainosta n\u00e4kym\u00e4st\u00e4 sopimattomassa toimituksellisessa kontekstissa (joka ei ole br\u00e4ndin kannalta turvallinen).\n Toimittajat eiv\u00e4t voi\n* k\u00e4ytt\u00e4\u00e4 n\u00e4it\u00e4 tietoja muodostaakseen personoidun mainosprofiilin tulevien mainosten valintaa varten.\n Huom. Likim\u00e4\u00e4r\u00e4inen tarkoittaa ep\u00e4tarkkaa sijaintia, jonka s\u00e4de on v\u00e4hint\u00e4\u00e4n 500 metri\u00e4."},"3":{"id":3,"name":"Personoidun mainosprofiilin muodostaminen","description":"Sinua ja kiinnostusten kohteistasi koskevista tiedoista voidaan muodostaa mainosprofiili sinua todenn\u00e4k\u00f6isesti kiinnostavien mainosten n\u00e4ytt\u00e4miseksi.","descriptionLegal":"Personoidun mainosprofiilin muodostamiseksi toimittajat voivat\n* ker\u00e4t\u00e4 k\u00e4ytt\u00e4j\u00e4\u00e4 koskevia tietoja, kuten tietoja k\u00e4ytt\u00e4j\u00e4n toiminnasta, sivustojen tai sovellusten selaushistoriasta, kiinnostuksen kohteista, demografisista tekij\u00f6ist\u00e4 tai sijainnista mainosprofiilin muodostamiseksi tai muokkaamiseksi kohdennettua mainontaa varten.\n* yhdist\u00e4\u00e4 n\u00e4it\u00e4 tietoja muihin aiemmin ker\u00e4ttyihin tietoihin, mukaan lukien yli sivustojen ja sovellusten ker\u00e4ttyihin tietoihin, mainosprofiilin muodostamiseksi tai muokkaamiseksi kohdennettua mainontaa varten.\n"},"4":{"id":4,"name":"Personoitujen mainosten valinta","description":"Sinulle voidaan n\u00e4ytt\u00e4\u00e4 mainosprofiiliisi perustuvia kohdennettuja mainoksia","descriptionLegal":"Personoitujen mainosten valitsemiseksi toimittajat voivat\n* valita personoituja mainoksia, jotka perustuvat k\u00e4ytt\u00e4j\u00e4n mainosprofiiliin tai muihin k\u00e4ytt\u00e4j\u00e4\u00e4 koskeviin historiatietoihin, kuten aiempaan toimintaan, kiinnostuksen kohteisiin, sivustojen tai sovellusten selaushistoriaan, sijaintiin tai demografisiin tietoihin.\n"},"5":{"id":5,"name":"Personoidun sis\u00e4lt\u00f6profiilin muodostaminen","description":"Sinua ja kiinnostusten kohteitasi koskevista tiedoista voidaan muodostaa sis\u00e4lt\u00f6profiili sinua todenn\u00e4k\u00f6isesti kiinnostavan sis\u00e4ll\u00f6n n\u00e4ytt\u00e4miseksi.","descriptionLegal":"Personoidun sis\u00e4lt\u00f6profiilin muodostamiseksi toimittajat voivat\n* ker\u00e4t\u00e4 k\u00e4ytt\u00e4j\u00e4\u00e4 koskevia tietoja, kuten tietoja k\u00e4ytt\u00e4j\u00e4n toiminnasta, kiinnostuksen kohteista, sivustojen tai sovellusten selailuhistoriasta, demografisista tekij\u00f6ist\u00e4 tai sijainnista sis\u00e4lt\u00f6profiilin luomiseksi tai muokkaamiseksi personoitua sis\u00e4lt\u00f6\u00e4 varten.\n* yhdist\u00e4\u00e4 n\u00e4it\u00e4 tietoja muihin aiemmin ker\u00e4ttyihin tietoihin, mukaan lukien yli sivustojen ja sovellusten ker\u00e4ttyihin tietoihin, sis\u00e4lt\u00f6profiilin muodostamiseksi tai muokkaamiseksi sis\u00e4ll\u00f6n personointia varten.\n"},"6":{"id":6,"name":"Personoidun sis\u00e4ll\u00f6n valinta","description":"Sinulle voidaan n\u00e4ytt\u00e4\u00e4 sis\u00e4lt\u00f6profiiliisi perustuvaa personoitua sis\u00e4lt\u00f6\u00e4.","descriptionLegal":"Personoidun sis\u00e4ll\u00f6n valitsemiseksi toimittajat voivat\n* valita personoitua sis\u00e4lt\u00f6\u00e4, joka perustuu sis\u00e4lt\u00f6profiiliin tai muihin k\u00e4ytt\u00e4j\u00e4\u00e4 koskeviin historiatietoihin, kuten aiempaan toimintaan, kiinnostuksen kohteisiin, sivustojen tai sovellusten selailuhistoriaan, sijaintiin tai demografisiin tietoihin.\n"},"7":{"id":7,"name":"Mainonnan ja sen tehokkuuden mittaaminen","description":"Vaikuttavuutta ja tehokkuutta voidaan mitata mainonnasta, jota n\u00e4et tai johon reagoit.","descriptionLegal":"Mainoksen tehokkuuden mittaamiseksi toimittajat voivat\n* mitata, n\u00e4ytettiink\u00f6 mainokset k\u00e4ytt\u00e4j\u00e4lle ja miten, ja reagoiko k\u00e4ytt\u00e4j\u00e4 niihin ja miten\n* laatia mainontaa ja sen vaikuttavuutta ja tehokkuutta koskevia raportteja\n* laatia raportteja mainontaan reagoineista k\u00e4ytt\u00e4jist\u00e4 k\u00e4ytt\u00e4m\u00e4ll\u00e4 tietoja, jotka ker\u00e4ttiin k\u00e4ytt\u00e4jien reagoidessa kyseiseen mainontaan \n* laatia raportteja julkaisijoille heid\u00e4n sivustoilla tai sovelluksissa esitetyist\u00e4 mainoksista\n* mitata, n\u00e4ytet\u00e4\u00e4nk\u00f6 mainosta sopivan (br\u00e4ndille turvallisen) toimituksellisen kontekstin yhteydess\u00e4\n* m\u00e4\u00e4ritt\u00e4\u00e4 prosentuaalinen osuus mainoksesta, joka on ollut mahdollista n\u00e4hd\u00e4, ja t\u00e4m\u00e4n mahdollisuuden kesto. \n* yhdist\u00e4\u00e4 n\u00e4it\u00e4 tietoja muihin aiemmin ker\u00e4ttyihin tietoihin, mukaan lukien yli sivustojen ja sovellusten ker\u00e4ttyihin tietoihin. \nToimittajat eiv\u00e4t voi\n* k\u00e4ytt\u00e4\u00e4 yleis\u00f6paneeleista tai muista vastaavista saatuja tietoja mainonnan mittaustietoina ilman erillist\u00e4 laillista perustetta markkinatutkimusten k\u00e4ytt\u00e4miselle k\u00e4ytt\u00e4j\u00e4ymm\u00e4rryksen luomiseksi (tarkoitus 9).\n"},"8":{"id":8,"name":"Sis\u00e4ll\u00f6n ja sen tehokkuuden mittaaminen","description":"Vaikuttavuutta ja tehokkuutta voidaan mitata sis\u00e4ll\u00f6st\u00e4, jota n\u00e4et tai johon reagoit.","descriptionLegal":"Sis\u00e4ll\u00f6n tehokkuuden mittaamiseksi toimittajat voivat\n* mitata ja raportoida, kuinka sis\u00e4lt\u00f6 n\u00e4ytettiin k\u00e4ytt\u00e4j\u00e4lle, ja kuinka k\u00e4ytt\u00e4j\u00e4 reagoi sis\u00e4lt\u00f6\u00f6n \n* laatia raportteja k\u00e4ytt\u00e4m\u00e4ll\u00e4 suoraan mitattavissa olevia tai tiedossa olevia tietoja k\u00e4ytt\u00e4jist\u00e4, jotka reagoivat sis\u00e4lt\u00f6\u00f6n.\nToimittajat eiv\u00e4t voi\n* mitata, n\u00e4ytettiink\u00f6 mainokset ja kuinka ne (natiivimainonta mukaan lukien) n\u00e4ytettiin k\u00e4ytt\u00e4j\u00e4lle, ja reagoiko k\u00e4ytt\u00e4j\u00e4 niihin ja miten\n* k\u00e4ytt\u00e4\u00e4 yleis\u00f6paneeleista tai muista vastaavista saatuja tietoja mainonnan mittaustietoina ilman erillist\u00e4 laillista perustetta markkinatutkimusten k\u00e4ytt\u00e4miselle k\u00e4ytt\u00e4j\u00e4ymm\u00e4rryksen luomiseksi (tarkoitus 9).\n"},"9":{"id":9,"name":"Markkinatutkimusten soveltaminen k\u00e4ytt\u00e4j\u00e4ymm\u00e4rryksen luomiseksi","description":"Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia ja katsovat mainoksia.","descriptionLegal":"K\u00e4ytt\u00e4m\u00e4ll\u00e4 markkinatutkimuksia k\u00e4ytt\u00e4j\u00e4ymm\u00e4rryksen luomiseksi toimittajat voivat\n* laatia yleis\u00f6paneeleista tai muista vastaavista saatujen tietojen avulla mainostajille tai niiden edustajille koottuja raportteja mainosten tavoittamista yleis\u00f6ist\u00e4\n* laatia yleis\u00f6paneeleista tai muista vastaavista saatujen tietojen avulla julkaisijoille koottuja raportteja yleis\u00f6ist\u00e4, joille julkaisijoiden sivustoilla ja sovelluksissa oleva sis\u00e4lt\u00f6 ja/tai mainokset n\u00e4ytettiin tai jotka reagoivat t\u00e4h\u00e4n sis\u00e4lt\u00f6\u00f6n ja/tai mainoksiin \n* yhdist\u00e4\u00e4 muita k\u00e4ytt\u00e4j\u00e4\u00e4 koskevia tietoja (offline-tiedot) verkkok\u00e4ytt\u00e4ytymist\u00e4 koskeviin tietoihin (online-tiedot) markkinatutkimuksia varten k\u00e4ytt\u00e4j\u00e4ymm\u00e4rryksen luomiseksi, jos toimittajat ovat ilmoittaneet sovittavansa yhteen ja yhdist\u00e4v\u00e4ns\u00e4 muita k\u00e4ytt\u00e4ji\u00e4 koskevia tietoja verkkok\u00e4ytt\u00e4ytymistietoihin (ominaisuus 1).\nToimittajat eiv\u00e4t voi \n* mitata sellaisten mainosten tehokkuutta, jotka n\u00e4ytettiin tietylle k\u00e4ytt\u00e4j\u00e4lle tai joihin k\u00e4ytt\u00e4j\u00e4 reagoi, ellei toimittajalla ole erillist\u00e4 laillista perustetta mainonnan tehokkuuden mittaamiseen (tarkoitus 7)\n* mitata, mit\u00e4 sis\u00e4lt\u00f6\u00e4 tietylle k\u00e4ytt\u00e4j\u00e4lle n\u00e4ytettiin ja kuinka h\u00e4n reagoi siihen, ellei toimittajalla ole erillist\u00e4 laillista perustetta sis\u00e4ll\u00f6n tehokkuuden mittaamiseen (tarkoitus 8).\n"},"10":{"id":10,"name":"Tuotekehitys","description":"Tietojasi voidaan k\u00e4ytt\u00e4\u00e4 j\u00e4rjestelmien ja ohjelmistojen parantamiseksi sek\u00e4 uusien tuotteiden kehitt\u00e4miseksi.","descriptionLegal":"Tuotekehityst\u00e4 varten toimittajat voivat\n* k\u00e4ytt\u00e4\u00e4 tietoja parantaakseen olemassa olevia tuotteitaan uusilla ominaisuuksilla tai kehitt\u00e4\u00e4kseen uusia tuotteita\n* luoda uusia matemaattisia malleja ja algoritmeja koneoppimisen avulla\nToimittajat eiv\u00e4t voi\n* toteuttaa t\u00e4m\u00e4n tarkoituksen perusteella muuta sellaista tietojenk\u00e4sittely\u00e4, joka sallitaan jotain muuta tarkoitusta varten.\n"}},"specialPurposes":{"1":{"id":1,"name":"Tietoturva, v\u00e4\u00e4rink\u00e4yt\u00f6sten ehk\u00e4isy ja virheiden korjaaminen","description":"Tietojasi voidaan k\u00e4ytt\u00e4\u00e4 v\u00e4\u00e4rink\u00e4yt\u00f6sten valvontaan ja ehk\u00e4isyyn sek\u00e4 j\u00e4rjestelmien ja prosessien toiminnan ja turvallisuuden varmistamiseksi.","descriptionLegal":"Turvallisuuden varmistamiseksi, v\u00e4\u00e4rink\u00e4yt\u00f6sten ehk\u00e4isyyn ja virheiden korjaamiseksi toimittajat voivat\n* varmistaa, ett\u00e4 tietojen siirt\u00e4minen tapahtuu turvallisesti \n* havaita ja ehk\u00e4ist\u00e4 vahingollisia, petollisia, virheellisi\u00e4 tai laittomia toimia\n* varmistaa j\u00e4rjestelmien ja prosessien asianmukaisen ja tehokkaan toiminnan, mukaan lukien j\u00e4rjestelmien ja sallittuihin tarkoituksiin k\u00e4ytettyjen prosessien suorituskyvyn valvominen ja tehostaminen.\nToimittajat eiv\u00e4t voi\n* suorittaa t\u00e4m\u00e4n tarkoituksen perusteella muuta tiedonk\u00e4sittely\u00e4, joka sallitaan muun tarkoituksen perusteella.\nHuom: Tiedot, joita ker\u00e4t\u00e4\u00e4n ja k\u00e4ytet\u00e4\u00e4n turvallisuuden varmistamiseksi, v\u00e4\u00e4rink\u00e4yt\u00f6sten ehk\u00e4isyyn ja virheiden korjaamiseksi saattavat sis\u00e4lt\u00e4\u00e4 automaattisesti l\u00e4hetett\u00e4vi\u00e4, laitteen tunnistavia ominaisuuksia, tarkkoja sijaintitietoja, ja tietoa, jota saadaan skannaamalla aktiivisesti laitteen ominaisuuksia sen tunnistamista varten.\n\n"},"2":{"id":2,"name":"Mainonnan tai sis\u00e4ll\u00f6n tekninen jakelu","description":"Laitteesi voi vastaanottaa ja l\u00e4hett\u00e4\u00e4 tietoja, joiden avulla voit n\u00e4hd\u00e4 mainoksia ja sis\u00e4lt\u00f6\u00e4.","descriptionLegal":"Tietojen teknist\u00e4 jakelua varten ja teknisiin pyynt\u00f6ihin vastaamiseksi toimittajat voivat\n* k\u00e4ytt\u00e4\u00e4 k\u00e4ytt\u00e4j\u00e4n IP-osoitetta v\u00e4litt\u00e4\u00e4kseen teknisesti mainoksen internetin kautta\n* siirt\u00e4\u00e4 k\u00e4ytt\u00e4j\u00e4n mainostajan sivulle k\u00e4ytt\u00e4j\u00e4n reagoidessa mainokseen \n* k\u00e4ytt\u00e4\u00e4 k\u00e4ytt\u00e4j\u00e4n IP-osoitetta v\u00e4litt\u00e4\u00e4kseen sis\u00e4lt\u00f6\u00e4 internetin kautta\n* siirt\u00e4\u00e4 k\u00e4ytt\u00e4j\u00e4n mainostajan sivulle k\u00e4ytt\u00e4j\u00e4n reagoidessa sis\u00e4lt\u00f6\u00f6n \n* k\u00e4ytt\u00e4\u00e4 laitteen tyyppi\u00e4 ja ominaisuuksia koskevia tietoja mainosten tai sis\u00e4ll\u00f6n tekniseen jakeluun, esim. oikean kokoisen mainoksen tai videotiedoston jakamiseksi laitteen tukemassa muodossa.\nToimittajat eiv\u00e4t voi\n* suorittaa t\u00e4m\u00e4n tarkoituksen perusteella muuta tiedonk\u00e4sittely\u00e4, joka sallitaan muun tarkoituksen perusteella.\n"}},"features":{"1":{"id":1,"name":"Muiden tietojesi yhdist\u00e4minen verkkok\u00e4ytt\u00e4ytymist\u00e4si koskeviin tietoihin","description":"Verkkok\u00e4ytt\u00e4ytymist\u00e4si koskeviin tietoihin voidaan yhdist\u00e4\u00e4 muualta saatuja tietojasi sinulle ilmoitettuja yht\u00e4 tai useampaa tarkoitusta varten","descriptionLegal":"Toimittajat voivat \n* yhdist\u00e4\u00e4 muita tietojasi (offline-tiedot) ker\u00e4ttyihin verkkok\u00e4ytt\u00e4ytymist\u00e4 koskeviin tietoihin (online-tiedot) yhden tai useamman tarkoituksen tai erikoistarkoituksen tueksi.\n"},"2":{"id":2,"name":"Eri laitteiden yhdist\u00e4minen toisiinsa","description":"Eri laitteiden voidaan m\u00e4\u00e4ritt\u00e4\u00e4 kuuluvan sinulle tai kotitaloudellesi sinulle ilmoitettuja yht\u00e4 tai useampaa tarkoitusta varten.","descriptionLegal":"Toimittajat voivat\n* suoraan m\u00e4\u00e4ritt\u00e4\u00e4, ett\u00e4 kaksi tai useampi laitetta kuuluu samalle k\u00e4ytt\u00e4j\u00e4lle tai kotitaloudelle\n* todenn\u00e4k\u00f6isyyden perusteella m\u00e4\u00e4ritt\u00e4\u00e4, ett\u00e4 kaksi tai useampi laitetta kuuluu samalle k\u00e4ytt\u00e4j\u00e4lle tai kotitaloudelle\n* aktiivisesti skannata laitteen ominaisuuksia todenn\u00e4k\u00f6isyyteen perustuvaa tunnistamista varten, jos k\u00e4ytt\u00e4j\u00e4t ovat antaneet toimittajille luvan aktiivisesti skannata laitteen ominaisuuksia tunnistamista varten (erityisominaisuus 2).\n"},"3":{"id":3,"name":"Automaattisesti l\u00e4hetett\u00e4vien laitetietojen k\u00e4ytt\u00f6 laitteiden tunnistamisessa","description":"Laitteesi tunnistamisessa ja erottamisessa muista laitteista voidaan k\u00e4ytt\u00e4\u00e4 sen automaattisesti l\u00e4hett\u00e4m\u00e4\u00e4 tietoa kuten IP-osoitetta tai selaimen tyyppi\u00e4","descriptionLegal":"Toimittajat voivat:\n* luoda tunnistimen perustuen dataan, jota laite l\u00e4hett\u00e4\u00e4 automaattisesti, kuten IP-osoite tai selaimen tiedot (user-agent) \n* k\u00e4ytt\u00e4\u00e4 tunnistetta udelleen tunnistaakseen laitteen\nToimittajat eiv\u00e4t voi:\n* Luoda k\u00e4ytt\u00e4j\u00e4st\u00e4 tunnisteen k\u00e4ytt\u00e4en tietoja, joita on ker\u00e4tty skannaamalla aktiivisesti tiettyj\u00e4 laitteen ominaisuuksia, kuten asennettuja fontteja ja n\u00e4yt\u00f6n resoluutiota, ellei k\u00e4ytt\u00e4j\u00e4 ole erikseen antanut lupaa laitteen ominaisuuksien aktiiviseen skannaamiseen tunnistamista varten. \n* K\u00e4ytt\u00e4\u00e4 tunnistetta uudelleen tunnistaakseen laitteen.\n"}},"specialFeatures":{"1":{"id":1,"name":"Tarkkojen sijaintitietojen k\u00e4ytt\u00f6","description":"Laitteesi tarkkoja sijaintitietojasi voidaan k\u00e4ytt\u00e4\u00e4 yht\u00e4 tai useampaa","descriptionLegal":"Toimittajat voivat\n* ker\u00e4t\u00e4 ja k\u00e4sitell\u00e4 tarkkoja sijaintitietoja yhden tai useamman tarkoituksen tueksi.\nHuom. Tarkat sijaintitiedot tarkoittavat, ett\u00e4 k\u00e4ytt\u00e4j\u00e4n sijainnin tarkkuutta koskevia rajoituksia ei ole; sijainti voidaan m\u00e4\u00e4ritt\u00e4\u00e4 muutaman metrin tarkkuudella.\n"},"2":{"id":2,"name":"Laitteen ominaisuuksien aktiivinen skannaus tunnistamista varten","description":"Laitteesi voidaan tunnistaa sen ominaisuuksien yhdistelm\u00e4n skannauksen perusteella.","descriptionLegal":"Toimittajat voivat\n* luoda tunnisteen k\u00e4ytt\u00e4en tietoja, joita on ker\u00e4tty skannaamalla aktiivisesti tiettyj\u00e4 laitteen ominaisuuksia, kuten asennettuja fontteja ja n\u00e4yt\u00f6n resoluutiota \n* k\u00e4ytt\u00e4\u00e4 t\u00e4llaista tunnistetta laitteen tunnistamiseksi uudelleen.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Tarkat sijaintitiedot ja laitteen tunnistaminen laitetta skannaamalla","description":"Tarkkoja sijaintitietoja voidaan k\u00e4ytt\u00e4\u00e4 ja laite tunnistaa skannaamalla sen ominaisuuksia."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Tavalliset mainokset ja mainonnan mittaus","description":"Tavallisia mainoksia voidaan n\u00e4ytt\u00e4\u00e4 ja niiden tehokkuutta mitata."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Personoidut mainokset","description":"Mainosprofiiliin voidaan ker\u00e4t\u00e4 tietoja kohdentamisen parantamiseksi ja mainoksia voidaan kohdentaa mainosprofiilin perusteella."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Tavalliset mainokset, mainonnan mittaus ja yleis\u00f6tutkimukset","description":"Tavallisia mainoksia voidaan n\u00e4ytt\u00e4\u00e4 ja niiden tehokkuutta mitata. Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Tavalliset mainokset, personoitu mainosprofiili ja mainonnan mittaus","description":"Tavallisia mainoksia voidaan n\u00e4ytt\u00e4\u00e4 ja niiden tehokkuutta mitata. Mainosprofiiliin voidaan ker\u00e4t\u00e4 tietoja kohdentamisen parantamiseksi."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Personoitujen mainosten n\u00e4ytt\u00e4minen ja mainonnan mittaus","description":"Mainoksia voidaan kohdentaa mainosprofiilin perusteella. Mainonnan tehokkuutta voidaan mitata."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Personoitujen mainosten n\u00e4ytt\u00e4minen, mainonnan mittaus ja k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys","description":"Mainoksia voidaan kohdentaa mainosprofiilin perusteella. Mainonnan tehokkuutta voidaan mitata. Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Personoidut mainokset ja mainonnan mittaus","description":"Mainosprofiiliin voidaan ker\u00e4t\u00e4 tietoja kohdentamisen parantamiseksi, ja mainoksia voidaan kohdentaa mainosprofiilin perusteella. Mainonnan tehokkuutta voidaan mitata."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Personoidut mainokset, mainonnan mittaus ja k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys","description":"Mainosprofiiliin voidaan ker\u00e4t\u00e4 tietoja kohdentamisen parantamiseksi ja mainoksia voidaan kohdentaa mainosprofiilin perusteella. Mainonnan tehokkuutta voidaan mitata, ja markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Personoitu mainosprofiili ja personoitujen mainosten n\u00e4ytt\u00e4minen","description":"Mainosprofiiliin voidaan ker\u00e4t\u00e4 tietoja kohdentamisen parantamiseksi ja mainoksia voidaan kohdentaa mainosprofiilin perusteella."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Personoitu sis\u00e4lt\u00f6","description":"Sis\u00e4lt\u00f6profiiliin voidaan ker\u00e4t\u00e4 tietoja personoinnin parantamiseksi ja sis\u00e4lt\u00f6 voidaan personoida sis\u00e4lt\u00f6profiilin perusteella."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Personoidun sis\u00e4ll\u00f6n n\u00e4ytt\u00e4minen ja sis\u00e4ll\u00f6n mittaus","description":"Sis\u00e4lt\u00f6 voidaan personoida sis\u00e4lt\u00f6profiilin perusteella ja sis\u00e4ll\u00f6n tehokkuutta voidaan mitata."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Personoidun sis\u00e4ll\u00f6n n\u00e4ytt\u00e4minen, sis\u00e4ll\u00f6n mittaus ja k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys","description":"Sis\u00e4lt\u00f6 voidaan personoida sis\u00e4lt\u00f6profiilin perusteella ja sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Personoitu sis\u00e4lt\u00f6 ja sis\u00e4ll\u00f6n mittaus","description":"Sis\u00e4lt\u00f6profiiliin voidaan ker\u00e4t\u00e4 tietoja personoinnin parantamiseksi ja sis\u00e4lt\u00f6 voidaan personoida sis\u00e4lt\u00f6profiilin perusteella. Sis\u00e4ll\u00f6n tehokkuutta voidaan mitata."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Personoitu sis\u00e4lt\u00f6, sis\u00e4ll\u00f6n mittaus ja k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys","description":"Sis\u00e4lt\u00f6profiiliin voidaan ker\u00e4t\u00e4 tietoja personoinnin parantamiseksi ja sis\u00e4lt\u00f6 voidaan personoida sis\u00e4lt\u00f6profiilin perusteella. Sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Personoitu sis\u00e4lt\u00f6, sis\u00e4ll\u00f6n mittaus, k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys ja tuotekehitys","description":"Sis\u00e4lt\u00f6profiiliin voidaan ker\u00e4t\u00e4 tietoja personoinnin parantamiseksi ja sis\u00e4lt\u00f6 voidaan personoida sis\u00e4lt\u00f6profiilin perusteella. Sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia. Tietoja voidaan k\u00e4ytt\u00e4\u00e4 my\u00f6s k\u00e4ytt\u00e4j\u00e4kokemuksen, j\u00e4rjestelmien ja ohjelmistojen kehityksess\u00e4."},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Mainonnan ja sis\u00e4ll\u00f6n mittaus sek\u00e4 k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys","description":"Mainonnan ja sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Mainonnan ja sis\u00e4ll\u00f6n mittaus sek\u00e4 k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys","description":"Mainonnan ja sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Mainonnan mittaus ja k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys","description":"Mainonnan tehokkuutta voidaan mitata. Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Mainonnan ja sis\u00e4ll\u00f6n mittaus, k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys ja tuotekehitys","description":"Mainonnan ja sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia. Tietoja voidaan k\u00e4ytt\u00e4\u00e4 my\u00f6s k\u00e4ytt\u00e4j\u00e4kokemuksen, j\u00e4rjestelmien ja ohjelmistojen kehityksess\u00e4."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Sis\u00e4ll\u00f6n mittaus, k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys ja tuotekehitys","description":"Sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia. Tietoja voidaan k\u00e4ytt\u00e4\u00e4 my\u00f6s k\u00e4ytt\u00e4j\u00e4kokemuksen, j\u00e4rjestelmien ja ohjelmistojen kehityksess\u00e4."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Sis\u00e4ll\u00f6n mittaus ja tuotekehitys","description":"Sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Tietoja voidaan k\u00e4ytt\u00e4\u00e4 my\u00f6s k\u00e4ytt\u00e4j\u00e4kokemuksen, j\u00e4rjestelmien ja ohjelmistojen kehityksess\u00e4."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Personoitujen mainosten ja sis\u00e4ll\u00f6n n\u00e4ytt\u00e4minen sek\u00e4 mainonnan ja sis\u00e4ll\u00f6n mittaus","description":"Mainoksia voidaan kohdentaa ja sis\u00e4lt\u00f6 personoida profiilin perusteella. Mainonnan ja sis\u00e4ll\u00f6n tehokkuutta voidaan mitata."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Personoitujen mainosten ja sis\u00e4ll\u00f6n n\u00e4ytt\u00e4minen, mainonnan ja sis\u00e4ll\u00f6n mittaus sek\u00e4 k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys","description":"Mainoksia voidaan kohdentaa ja sis\u00e4lt\u00f6 personoida profiilin perusteella. Mainonnan ja sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia. Tietoja voidaan k\u00e4ytt\u00e4\u00e4 my\u00f6s k\u00e4ytt\u00e4j\u00e4kokemuksen, j\u00e4rjestelmien ja ohjelmistojen kehityksess\u00e4."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Personoitu mainonta ja sis\u00e4lt\u00f6 sek\u00e4 mainonnan ja sis\u00e4ll\u00f6n mittaus","description":"Mainos- ja sis\u00e4lt\u00f6profiileihin voidaan ker\u00e4t\u00e4 tietoja kohdentamisen ja personoinnin parantamiseksi ja mainoksia voidaan kohdentaa ja sis\u00e4lt\u00f6 personoida profiilien perusteella. Mainonnan ja sis\u00e4ll\u00f6n tehokkuutta voidaan mitata."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Personoitu mainonta ja sis\u00e4lt\u00f6, mainonnan ja sis\u00e4ll\u00f6n mittaus sek\u00e4 k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys","description":"Mainos- ja sis\u00e4lt\u00f6profiileihin voidaan ker\u00e4t\u00e4 tietoja kohdentamisen ja personoinnin parantamiseksi. Mainoksia voidaan kohdentaa ja sis\u00e4lt\u00f6 personoida profiilien perusteella. Mainonnan ja sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Personoidut mainokset ja personoitu sis\u00e4lt\u00f6","description":"Mainos- ja sis\u00e4lt\u00f6profiileihin voidaan ker\u00e4t\u00e4 tietoja mainonnan kohdentamisen ja sis\u00e4ll\u00f6n personoinnin parantamiseksi."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Personoidun mainonnan ja sis\u00e4ll\u00f6n n\u00e4ytt\u00e4minen","description":"Mainoksia voidaan kohdentaa ja sis\u00e4lt\u00f6 personoida profiilin perusteella."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Tavalliset mainokset, mainonnan ja sis\u00e4ll\u00f6n mittaus ja k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys","description":"Tavallisia mainoksia voidaan n\u00e4ytt\u00e4\u00e4. Mainonnan ja sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Personoitujen mainosten n\u00e4ytt\u00e4minen, personoitu sis\u00e4lt\u00f6, mainonnan ja sis\u00e4ll\u00f6n mittaus sek\u00e4 k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys","description":"Sis\u00e4lt\u00f6profiiliin voidaan ker\u00e4t\u00e4 tietoja personoinnin parantamiseksi ja mainoksia voidaan kohdentaa ja sis\u00e4lt\u00f6 personoida profiilin perusteella. Mainonnan ja sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Personoitujen mainosten n\u00e4ytt\u00e4minen, personoitu sis\u00e4lt\u00f6, mainonnan ja sis\u00e4ll\u00f6n mittaus, k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys ja tuotekehitys","description":"Sis\u00e4lt\u00f6profiiliin voidaan ker\u00e4t\u00e4 tietoja personoinnin parantamiseksi. Mainoksia voidaan kohdentaa ja sis\u00e4lt\u00f6 personoida profiilin perusteella. Mainonnan ja sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia. Tietoja voidaan k\u00e4ytt\u00e4\u00e4 my\u00f6s k\u00e4ytt\u00e4j\u00e4kokemuksen, j\u00e4rjestelmien ja ohjelmistojen kehityksess\u00e4."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Tavalliset mainokset, personoitu sis\u00e4lt\u00f6, mainonnan ja sis\u00e4ll\u00f6n mittaus sek\u00e4 k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys","description":"Tavallisia mainoksia voidaan n\u00e4ytt\u00e4\u00e4. Sis\u00e4lt\u00f6profiiliin voidaan ker\u00e4t\u00e4 lis\u00e4\u00e4 tietoja personoinnin parantamiseksi ja sis\u00e4lt\u00f6 voidaan personoida profiilin perusteella. Mainonnan ja sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Tavalliset mainokset, personoitu sis\u00e4lt\u00f6, mainonnan ja sis\u00e4ll\u00f6n mittaus, k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys sek\u00e4 tuotekehitys","description":"Tavallisia mainoksia voidaan n\u00e4ytt\u00e4\u00e4. Sis\u00e4lt\u00f6profiiliin voidaan ker\u00e4t\u00e4 tietoja personoinnin parantamiseksi ja sis\u00e4lt\u00f6 voidaan personoida profiilin perusteella. Mainonnan ja sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia. Tietoja voidaan k\u00e4ytt\u00e4\u00e4 my\u00f6s k\u00e4ytt\u00e4j\u00e4kokemuksen, j\u00e4rjestelmien ja ohjelmistojen kehityksess\u00e4."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Tavalliset mainokset, personoitu sis\u00e4lt\u00f6, sis\u00e4ll\u00f6n mittaus ja k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys","description":"Tavallisia mainoksia voidaan n\u00e4ytt\u00e4\u00e4. Sis\u00e4lt\u00f6profiiliin voidaan ker\u00e4t\u00e4 tietoja personoinnin parantamiseksi ja sis\u00e4lt\u00f6 voidaan personoida profiilin perusteella. Mainonnan ja sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia. \n"},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Tavalliset mainokset, personoitu sis\u00e4lt\u00f6, sis\u00e4ll\u00f6n mittaus, k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys ja tuotekehitys","description":"Tavallisia mainoksia voidaan n\u00e4ytt\u00e4\u00e4. Sis\u00e4lt\u00f6profiiliin voidaan ker\u00e4t\u00e4 tietoja personoinnin parantamiseksi ja sis\u00e4lt\u00f6 voidaan personoida profiilin perusteella. Sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia. Tietoja voidaan k\u00e4ytt\u00e4\u00e4 my\u00f6s k\u00e4ytt\u00e4j\u00e4kokemuksen, j\u00e4rjestelmien ja ohjelmistojen kehityksess\u00e4."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Tavalliset mainokset, personoitu sis\u00e4lt\u00f6 ja mainonnan mittaus","description":"Tavallisia mainoksia voidaan n\u00e4ytt\u00e4\u00e4. Sis\u00e4lt\u00f6profiiliin voidaan ker\u00e4t\u00e4 tietoja personoinnin parantamiseksi, ja sis\u00e4lt\u00f6 voidaan personoida profiilin perusteella. Mainonnan tehokkuutta voidaan mitata."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Tavalliset mainokset, personoitu sis\u00e4lt\u00f6, mainonnan mittaus ja tuotekehitys","description":"Tavallisia mainoksia voidaan n\u00e4ytt\u00e4\u00e4. Sis\u00e4lt\u00f6profiiliin voidaan ker\u00e4t\u00e4 tietoja personoinnin parantamiseksi ja sis\u00e4lt\u00f6 voidaan personoida profiilin perusteella. Mainosten tehokkuutta voidaan mitata. Tietoja voidaan k\u00e4ytt\u00e4\u00e4 my\u00f6s k\u00e4ytt\u00e4j\u00e4kokemuksen, j\u00e4rjestelmien ja ohjelmistojen kehityksess\u00e4."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Personoidut mainokset, mainonnan mittaus ja tuotekehitys","description":"Mainosprofiiliin voidaan ker\u00e4t\u00e4 tietoja kohdentamisen parantamiseksi ja mainoksia voidaan kohdentaa mainosprofiilien perusteella. Mainonnan tehokkuutta voidaan mitata. Tietoja voidaan k\u00e4ytt\u00e4\u00e4 k\u00e4ytt\u00e4j\u00e4kokemuksen, j\u00e4rjestelmien ja ohjelmistojen kehityksess\u00e4. "},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Personoidut mainokset, mainonnan mittaus, k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys ja tuotekehitys","description":"Mainosprofiiliin voidaan ker\u00e4t\u00e4 tietoja kohdentamisen parantamiseksi ja mainoksia voidaan kohdentaa mainosprofiilien perusteella. Mainonnan tehokkuutta voidaan mitata. Markkinatutkimusten avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia. Tietoja voidaan k\u00e4ytt\u00e4\u00e4 my\u00f6s k\u00e4ytt\u00e4j\u00e4kokemuksen, j\u00e4rjestelmien ja ohjelmistojen kehityksess\u00e4. "},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Personoidut mainokset, mainonnan ja sis\u00e4ll\u00f6n mittaus, k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys ja tuotekehitys","description":"Mainosprofiiliin voidaan ker\u00e4t\u00e4 tietoja kohdentamisen parantamiseksi ja mainoksia voidaan kohdentaa mainosprofiilien perusteella. Mainonnan ja sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Markkinatutkimusten avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia. Tietoja voidaan k\u00e4ytt\u00e4\u00e4 my\u00f6s k\u00e4ytt\u00e4j\u00e4kokemuksen, j\u00e4rjestelmien ja ohjelmistojen kehityksess\u00e4. "},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Personoidut mainokset, personoitujen mainoksien n\u00e4ytt\u00e4minen, mainonnan ja sis\u00e4ll\u00f6n mittaus, k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys ja tuotekehitys","description":"Mainosprofiiliin voidaan ker\u00e4t\u00e4 tietoja kohdentamisen parantamiseksi ja mainoksia voidaan kohdentaa mainosprofiilien perusteella. Mainonnan ja sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Markkinatutkimusten avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia. Tietoja voidaan k\u00e4ytt\u00e4\u00e4 my\u00f6s k\u00e4ytt\u00e4j\u00e4kokemuksen, j\u00e4rjestelmien ja ohjelmistojen kehityksess\u00e4. "},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Personoitujen mainosten ja sis\u00e4ll\u00f6n n\u00e4ytt\u00e4minen, mainonnan ja sis\u00e4ll\u00f6n mittaus, k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys sek\u00e4 tuotekehitys","description":"Mainos- ja sis\u00e4lt\u00f6profiileihin voidaan ker\u00e4t\u00e4 tietoja kohdentamisen ja personoinnin parantamiseksi. Mainoksia voidaan kohdentaa ja sis\u00e4lt\u00f6\u00e4 personoida profiilin perusteella. Mainonnan ja sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Markkinatutkimusten avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia. Tietoja voidaan k\u00e4ytt\u00e4\u00e4 my\u00f6s k\u00e4ytt\u00e4j\u00e4kokemuksen, j\u00e4rjestelmien ja ohjelmistojen kehityksess\u00e4. "}}} \ No newline at end of file +{"vendorListVersion":94,"lastUpdated":"2021-06-10T16:43:57Z","purposes":{"1":{"id":1,"name":"Tietojen tallennus laitteelle ja/tai laitteella olevien tietojen k\u00e4ytt\u00f6","description":"Laitteellesi voidaan tallentaa ev\u00e4steit\u00e4, laitetunnisteita tai muita tietoja ja niit\u00e4 voidaan k\u00e4ytt\u00e4\u00e4 sinulle esitettyihin tarkoituksiin.","descriptionLegal":"Toimittajat voivat\n* tallentaa laitteelle tietoja, kuten ev\u00e4steit\u00e4 ja laitetunnisteita, ja k\u00e4ytt\u00e4\u00e4 tietoja k\u00e4ytt\u00e4j\u00e4lle esitettyihin tarkoituksiin."},"2":{"id":2,"name":"Tavallisten mainosten valinta","description":"N\u00e4ytett\u00e4v\u00e4t mainokset voidaan valita katsomasi sis\u00e4ll\u00f6n, k\u00e4ytt\u00e4m\u00e4si sovelluksen tai laitteen, tai likim\u00e4\u00e4r\u00e4isen sijaintisi perusteella.","descriptionLegal":"Tavallisten mainosten valitsemiseksi toimittajat voivat\n* k\u00e4ytt\u00e4\u00e4 reaaliaikaisia tietoja kontekstista, kun mainos n\u00e4ytet\u00e4\u00e4n, mukaan lukien sis\u00e4lt\u00f6\u00e4 ja laitetta koskevat tiedot, kuten laitetyyppi ja ominaisuudet, selaimen tiedot (user-agent), URL-osoite ja IP-osoite. \n* k\u00e4ytt\u00e4\u00e4 k\u00e4ytt\u00e4j\u00e4n likim\u00e4\u00e4r\u00e4isi\u00e4 sijaintitietoja\n* m\u00e4\u00e4ritt\u00e4\u00e4, kuinka usein mainokset n\u00e4ytet\u00e4\u00e4n k\u00e4ytt\u00e4j\u00e4lle\n* m\u00e4\u00e4ritt\u00e4\u00e4 j\u00e4rjestyksen, jossa mainokset n\u00e4ytet\u00e4\u00e4n k\u00e4ytt\u00e4j\u00e4lle\n* est\u00e4\u00e4 mainosta n\u00e4kym\u00e4st\u00e4 sopimattomassa toimituksellisessa kontekstissa (joka ei ole br\u00e4ndin kannalta turvallinen).\n Toimittajat eiv\u00e4t voi\n* k\u00e4ytt\u00e4\u00e4 n\u00e4it\u00e4 tietoja muodostaakseen personoidun mainosprofiilin tulevien mainosten valintaa varten.\n Huom. Likim\u00e4\u00e4r\u00e4inen tarkoittaa ep\u00e4tarkkaa sijaintia, jonka s\u00e4de on v\u00e4hint\u00e4\u00e4n 500 metri\u00e4."},"3":{"id":3,"name":"Personoidun mainosprofiilin muodostaminen","description":"Sinua ja kiinnostusten kohteistasi koskevista tiedoista voidaan muodostaa mainosprofiili sinua todenn\u00e4k\u00f6isesti kiinnostavien mainosten n\u00e4ytt\u00e4miseksi.","descriptionLegal":"Personoidun mainosprofiilin muodostamiseksi toimittajat voivat\n* ker\u00e4t\u00e4 k\u00e4ytt\u00e4j\u00e4\u00e4 koskevia tietoja, kuten tietoja k\u00e4ytt\u00e4j\u00e4n toiminnasta, sivustojen tai sovellusten selaushistoriasta, kiinnostuksen kohteista, demografisista tekij\u00f6ist\u00e4 tai sijainnista mainosprofiilin muodostamiseksi tai muokkaamiseksi kohdennettua mainontaa varten.\n* yhdist\u00e4\u00e4 n\u00e4it\u00e4 tietoja muihin aiemmin ker\u00e4ttyihin tietoihin, mukaan lukien yli sivustojen ja sovellusten ker\u00e4ttyihin tietoihin, mainosprofiilin muodostamiseksi tai muokkaamiseksi kohdennettua mainontaa varten.\n"},"4":{"id":4,"name":"Personoitujen mainosten valinta","description":"Sinulle voidaan n\u00e4ytt\u00e4\u00e4 mainosprofiiliisi perustuvia kohdennettuja mainoksia","descriptionLegal":"Personoitujen mainosten valitsemiseksi toimittajat voivat\n* valita personoituja mainoksia, jotka perustuvat k\u00e4ytt\u00e4j\u00e4n mainosprofiiliin tai muihin k\u00e4ytt\u00e4j\u00e4\u00e4 koskeviin historiatietoihin, kuten aiempaan toimintaan, kiinnostuksen kohteisiin, sivustojen tai sovellusten selaushistoriaan, sijaintiin tai demografisiin tietoihin.\n"},"5":{"id":5,"name":"Personoidun sis\u00e4lt\u00f6profiilin muodostaminen","description":"Sinua ja kiinnostusten kohteitasi koskevista tiedoista voidaan muodostaa sis\u00e4lt\u00f6profiili sinua todenn\u00e4k\u00f6isesti kiinnostavan sis\u00e4ll\u00f6n n\u00e4ytt\u00e4miseksi.","descriptionLegal":"Personoidun sis\u00e4lt\u00f6profiilin muodostamiseksi toimittajat voivat\n* ker\u00e4t\u00e4 k\u00e4ytt\u00e4j\u00e4\u00e4 koskevia tietoja, kuten tietoja k\u00e4ytt\u00e4j\u00e4n toiminnasta, kiinnostuksen kohteista, sivustojen tai sovellusten selailuhistoriasta, demografisista tekij\u00f6ist\u00e4 tai sijainnista sis\u00e4lt\u00f6profiilin luomiseksi tai muokkaamiseksi personoitua sis\u00e4lt\u00f6\u00e4 varten.\n* yhdist\u00e4\u00e4 n\u00e4it\u00e4 tietoja muihin aiemmin ker\u00e4ttyihin tietoihin, mukaan lukien yli sivustojen ja sovellusten ker\u00e4ttyihin tietoihin, sis\u00e4lt\u00f6profiilin muodostamiseksi tai muokkaamiseksi sis\u00e4ll\u00f6n personointia varten.\n"},"6":{"id":6,"name":"Personoidun sis\u00e4ll\u00f6n valinta","description":"Sinulle voidaan n\u00e4ytt\u00e4\u00e4 sis\u00e4lt\u00f6profiiliisi perustuvaa personoitua sis\u00e4lt\u00f6\u00e4.","descriptionLegal":"Personoidun sis\u00e4ll\u00f6n valitsemiseksi toimittajat voivat\n* valita personoitua sis\u00e4lt\u00f6\u00e4, joka perustuu sis\u00e4lt\u00f6profiiliin tai muihin k\u00e4ytt\u00e4j\u00e4\u00e4 koskeviin historiatietoihin, kuten aiempaan toimintaan, kiinnostuksen kohteisiin, sivustojen tai sovellusten selailuhistoriaan, sijaintiin tai demografisiin tietoihin.\n"},"7":{"id":7,"name":"Mainonnan ja sen tehokkuuden mittaaminen","description":"Vaikuttavuutta ja tehokkuutta voidaan mitata mainonnasta, jota n\u00e4et tai johon reagoit.","descriptionLegal":"Mainoksen tehokkuuden mittaamiseksi toimittajat voivat\n* mitata, n\u00e4ytettiink\u00f6 mainokset k\u00e4ytt\u00e4j\u00e4lle ja miten, ja reagoiko k\u00e4ytt\u00e4j\u00e4 niihin ja miten\n* laatia mainontaa ja sen vaikuttavuutta ja tehokkuutta koskevia raportteja\n* laatia raportteja mainontaan reagoineista k\u00e4ytt\u00e4jist\u00e4 k\u00e4ytt\u00e4m\u00e4ll\u00e4 tietoja, jotka ker\u00e4ttiin k\u00e4ytt\u00e4jien reagoidessa kyseiseen mainontaan \n* laatia raportteja julkaisijoille heid\u00e4n sivustoilla tai sovelluksissa esitetyist\u00e4 mainoksista\n* mitata, n\u00e4ytet\u00e4\u00e4nk\u00f6 mainosta sopivan (br\u00e4ndille turvallisen) toimituksellisen kontekstin yhteydess\u00e4\n* m\u00e4\u00e4ritt\u00e4\u00e4 prosentuaalinen osuus mainoksesta, joka on ollut mahdollista n\u00e4hd\u00e4, ja t\u00e4m\u00e4n mahdollisuuden kesto. \n* yhdist\u00e4\u00e4 n\u00e4it\u00e4 tietoja muihin aiemmin ker\u00e4ttyihin tietoihin, mukaan lukien yli sivustojen ja sovellusten ker\u00e4ttyihin tietoihin. \nToimittajat eiv\u00e4t voi\n* k\u00e4ytt\u00e4\u00e4 yleis\u00f6paneeleista tai muista vastaavista saatuja tietoja mainonnan mittaustietoina ilman erillist\u00e4 laillista perustetta markkinatutkimusten k\u00e4ytt\u00e4miselle k\u00e4ytt\u00e4j\u00e4ymm\u00e4rryksen luomiseksi (tarkoitus 9).\n"},"8":{"id":8,"name":"Sis\u00e4ll\u00f6n ja sen tehokkuuden mittaaminen","description":"Vaikuttavuutta ja tehokkuutta voidaan mitata sis\u00e4ll\u00f6st\u00e4, jota n\u00e4et tai johon reagoit.","descriptionLegal":"Sis\u00e4ll\u00f6n tehokkuuden mittaamiseksi toimittajat voivat\n* mitata ja raportoida, kuinka sis\u00e4lt\u00f6 n\u00e4ytettiin k\u00e4ytt\u00e4j\u00e4lle, ja kuinka k\u00e4ytt\u00e4j\u00e4 reagoi sis\u00e4lt\u00f6\u00f6n \n* laatia raportteja k\u00e4ytt\u00e4m\u00e4ll\u00e4 suoraan mitattavissa olevia tai tiedossa olevia tietoja k\u00e4ytt\u00e4jist\u00e4, jotka reagoivat sis\u00e4lt\u00f6\u00f6n.\nToimittajat eiv\u00e4t voi\n* mitata, n\u00e4ytettiink\u00f6 mainokset ja kuinka ne (natiivimainonta mukaan lukien) n\u00e4ytettiin k\u00e4ytt\u00e4j\u00e4lle, ja reagoiko k\u00e4ytt\u00e4j\u00e4 niihin ja miten\n* k\u00e4ytt\u00e4\u00e4 yleis\u00f6paneeleista tai muista vastaavista saatuja tietoja mainonnan mittaustietoina ilman erillist\u00e4 laillista perustetta markkinatutkimusten k\u00e4ytt\u00e4miselle k\u00e4ytt\u00e4j\u00e4ymm\u00e4rryksen luomiseksi (tarkoitus 9).\n"},"9":{"id":9,"name":"Markkinatutkimusten soveltaminen k\u00e4ytt\u00e4j\u00e4ymm\u00e4rryksen luomiseksi","description":"Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia ja katsovat mainoksia.","descriptionLegal":"K\u00e4ytt\u00e4m\u00e4ll\u00e4 markkinatutkimuksia k\u00e4ytt\u00e4j\u00e4ymm\u00e4rryksen luomiseksi toimittajat voivat\n* laatia yleis\u00f6paneeleista tai muista vastaavista saatujen tietojen avulla mainostajille tai niiden edustajille koottuja raportteja mainosten tavoittamista yleis\u00f6ist\u00e4\n* laatia yleis\u00f6paneeleista tai muista vastaavista saatujen tietojen avulla julkaisijoille koottuja raportteja yleis\u00f6ist\u00e4, joille julkaisijoiden sivustoilla ja sovelluksissa oleva sis\u00e4lt\u00f6 ja/tai mainokset n\u00e4ytettiin tai jotka reagoivat t\u00e4h\u00e4n sis\u00e4lt\u00f6\u00f6n ja/tai mainoksiin \n* yhdist\u00e4\u00e4 muita k\u00e4ytt\u00e4j\u00e4\u00e4 koskevia tietoja (offline-tiedot) verkkok\u00e4ytt\u00e4ytymist\u00e4 koskeviin tietoihin (online-tiedot) markkinatutkimuksia varten k\u00e4ytt\u00e4j\u00e4ymm\u00e4rryksen luomiseksi, jos toimittajat ovat ilmoittaneet sovittavansa yhteen ja yhdist\u00e4v\u00e4ns\u00e4 muita k\u00e4ytt\u00e4ji\u00e4 koskevia tietoja verkkok\u00e4ytt\u00e4ytymistietoihin (ominaisuus 1).\nToimittajat eiv\u00e4t voi \n* mitata sellaisten mainosten tehokkuutta, jotka n\u00e4ytettiin tietylle k\u00e4ytt\u00e4j\u00e4lle tai joihin k\u00e4ytt\u00e4j\u00e4 reagoi, ellei toimittajalla ole erillist\u00e4 laillista perustetta mainonnan tehokkuuden mittaamiseen (tarkoitus 7)\n* mitata, mit\u00e4 sis\u00e4lt\u00f6\u00e4 tietylle k\u00e4ytt\u00e4j\u00e4lle n\u00e4ytettiin ja kuinka h\u00e4n reagoi siihen, ellei toimittajalla ole erillist\u00e4 laillista perustetta sis\u00e4ll\u00f6n tehokkuuden mittaamiseen (tarkoitus 8).\n"},"10":{"id":10,"name":"Tuotekehitys","description":"Tietojasi voidaan k\u00e4ytt\u00e4\u00e4 j\u00e4rjestelmien ja ohjelmistojen parantamiseksi sek\u00e4 uusien tuotteiden kehitt\u00e4miseksi.","descriptionLegal":"Tuotekehityst\u00e4 varten toimittajat voivat\n* k\u00e4ytt\u00e4\u00e4 tietoja parantaakseen olemassa olevia tuotteitaan uusilla ominaisuuksilla tai kehitt\u00e4\u00e4kseen uusia tuotteita\n* luoda uusia matemaattisia malleja ja algoritmeja koneoppimisen avulla\nToimittajat eiv\u00e4t voi\n* toteuttaa t\u00e4m\u00e4n tarkoituksen perusteella muuta sellaista tietojenk\u00e4sittely\u00e4, joka sallitaan jotain muuta tarkoitusta varten.\n"}},"specialPurposes":{"1":{"id":1,"name":"Tietoturva, v\u00e4\u00e4rink\u00e4yt\u00f6sten ehk\u00e4isy ja virheiden korjaaminen","description":"Tietojasi voidaan k\u00e4ytt\u00e4\u00e4 v\u00e4\u00e4rink\u00e4yt\u00f6sten valvontaan ja ehk\u00e4isyyn sek\u00e4 j\u00e4rjestelmien ja prosessien toiminnan ja turvallisuuden varmistamiseksi.","descriptionLegal":"Turvallisuuden varmistamiseksi, v\u00e4\u00e4rink\u00e4yt\u00f6sten ehk\u00e4isyyn ja virheiden korjaamiseksi toimittajat voivat\n* varmistaa, ett\u00e4 tietojen siirt\u00e4minen tapahtuu turvallisesti \n* havaita ja ehk\u00e4ist\u00e4 vahingollisia, petollisia, virheellisi\u00e4 tai laittomia toimia\n* varmistaa j\u00e4rjestelmien ja prosessien asianmukaisen ja tehokkaan toiminnan, mukaan lukien j\u00e4rjestelmien ja sallittuihin tarkoituksiin k\u00e4ytettyjen prosessien suorituskyvyn valvominen ja tehostaminen.\nToimittajat eiv\u00e4t voi\n* suorittaa t\u00e4m\u00e4n tarkoituksen perusteella muuta tiedonk\u00e4sittely\u00e4, joka sallitaan muun tarkoituksen perusteella.\nHuom: Tiedot, joita ker\u00e4t\u00e4\u00e4n ja k\u00e4ytet\u00e4\u00e4n turvallisuuden varmistamiseksi, v\u00e4\u00e4rink\u00e4yt\u00f6sten ehk\u00e4isyyn ja virheiden korjaamiseksi saattavat sis\u00e4lt\u00e4\u00e4 automaattisesti l\u00e4hetett\u00e4vi\u00e4, laitteen tunnistavia ominaisuuksia, tarkkoja sijaintitietoja, ja tietoa, jota saadaan skannaamalla aktiivisesti laitteen ominaisuuksia sen tunnistamista varten.\n\n"},"2":{"id":2,"name":"Mainonnan tai sis\u00e4ll\u00f6n tekninen jakelu","description":"Laitteesi voi vastaanottaa ja l\u00e4hett\u00e4\u00e4 tietoja, joiden avulla voit n\u00e4hd\u00e4 mainoksia ja sis\u00e4lt\u00f6\u00e4.","descriptionLegal":"Tietojen teknist\u00e4 jakelua varten ja teknisiin pyynt\u00f6ihin vastaamiseksi toimittajat voivat\n* k\u00e4ytt\u00e4\u00e4 k\u00e4ytt\u00e4j\u00e4n IP-osoitetta v\u00e4litt\u00e4\u00e4kseen teknisesti mainoksen internetin kautta\n* siirt\u00e4\u00e4 k\u00e4ytt\u00e4j\u00e4n mainostajan sivulle k\u00e4ytt\u00e4j\u00e4n reagoidessa mainokseen \n* k\u00e4ytt\u00e4\u00e4 k\u00e4ytt\u00e4j\u00e4n IP-osoitetta v\u00e4litt\u00e4\u00e4kseen sis\u00e4lt\u00f6\u00e4 internetin kautta\n* siirt\u00e4\u00e4 k\u00e4ytt\u00e4j\u00e4n mainostajan sivulle k\u00e4ytt\u00e4j\u00e4n reagoidessa sis\u00e4lt\u00f6\u00f6n \n* k\u00e4ytt\u00e4\u00e4 laitteen tyyppi\u00e4 ja ominaisuuksia koskevia tietoja mainosten tai sis\u00e4ll\u00f6n tekniseen jakeluun, esim. oikean kokoisen mainoksen tai videotiedoston jakamiseksi laitteen tukemassa muodossa.\nToimittajat eiv\u00e4t voi\n* suorittaa t\u00e4m\u00e4n tarkoituksen perusteella muuta tiedonk\u00e4sittely\u00e4, joka sallitaan muun tarkoituksen perusteella.\n"}},"features":{"1":{"id":1,"name":"Muiden tietojesi yhdist\u00e4minen verkkok\u00e4ytt\u00e4ytymist\u00e4si koskeviin tietoihin","description":"Verkkok\u00e4ytt\u00e4ytymist\u00e4si koskeviin tietoihin voidaan yhdist\u00e4\u00e4 muualta saatuja tietojasi sinulle ilmoitettuja yht\u00e4 tai useampaa tarkoitusta varten","descriptionLegal":"Toimittajat voivat \n* yhdist\u00e4\u00e4 muita tietojasi (offline-tiedot) ker\u00e4ttyihin verkkok\u00e4ytt\u00e4ytymist\u00e4 koskeviin tietoihin (online-tiedot) yhden tai useamman tarkoituksen tai erikoistarkoituksen tueksi.\n"},"2":{"id":2,"name":"Eri laitteiden yhdist\u00e4minen toisiinsa","description":"Eri laitteiden voidaan m\u00e4\u00e4ritt\u00e4\u00e4 kuuluvan sinulle tai kotitaloudellesi sinulle ilmoitettuja yht\u00e4 tai useampaa tarkoitusta varten.","descriptionLegal":"Toimittajat voivat\n* suoraan m\u00e4\u00e4ritt\u00e4\u00e4, ett\u00e4 kaksi tai useampi laitetta kuuluu samalle k\u00e4ytt\u00e4j\u00e4lle tai kotitaloudelle\n* todenn\u00e4k\u00f6isyyden perusteella m\u00e4\u00e4ritt\u00e4\u00e4, ett\u00e4 kaksi tai useampi laitetta kuuluu samalle k\u00e4ytt\u00e4j\u00e4lle tai kotitaloudelle\n* aktiivisesti skannata laitteen ominaisuuksia todenn\u00e4k\u00f6isyyteen perustuvaa tunnistamista varten, jos k\u00e4ytt\u00e4j\u00e4t ovat antaneet toimittajille luvan aktiivisesti skannata laitteen ominaisuuksia tunnistamista varten (erityisominaisuus 2).\n"},"3":{"id":3,"name":"Automaattisesti l\u00e4hetett\u00e4vien laitetietojen k\u00e4ytt\u00f6 laitteiden tunnistamisessa","description":"Laitteesi tunnistamisessa ja erottamisessa muista laitteista voidaan k\u00e4ytt\u00e4\u00e4 sen automaattisesti l\u00e4hett\u00e4m\u00e4\u00e4 tietoa kuten IP-osoitetta tai selaimen tyyppi\u00e4","descriptionLegal":"Toimittajat voivat:\n* luoda tunnistimen perustuen dataan, jota laite l\u00e4hett\u00e4\u00e4 automaattisesti, kuten IP-osoite tai selaimen tiedot (user-agent) \n* k\u00e4ytt\u00e4\u00e4 tunnistetta udelleen tunnistaakseen laitteen\nToimittajat eiv\u00e4t voi:\n* Luoda k\u00e4ytt\u00e4j\u00e4st\u00e4 tunnisteen k\u00e4ytt\u00e4en tietoja, joita on ker\u00e4tty skannaamalla aktiivisesti tiettyj\u00e4 laitteen ominaisuuksia, kuten asennettuja fontteja ja n\u00e4yt\u00f6n resoluutiota, ellei k\u00e4ytt\u00e4j\u00e4 ole erikseen antanut lupaa laitteen ominaisuuksien aktiiviseen skannaamiseen tunnistamista varten. \n* K\u00e4ytt\u00e4\u00e4 tunnistetta uudelleen tunnistaakseen laitteen.\n"}},"specialFeatures":{"1":{"id":1,"name":"Tarkkojen sijaintitietojen k\u00e4ytt\u00f6","description":"Laitteesi tarkkoja sijaintitietojasi voidaan k\u00e4ytt\u00e4\u00e4 yht\u00e4 tai useampaa","descriptionLegal":"Toimittajat voivat\n* ker\u00e4t\u00e4 ja k\u00e4sitell\u00e4 tarkkoja sijaintitietoja yhden tai useamman tarkoituksen tueksi.\nHuom. Tarkat sijaintitiedot tarkoittavat, ett\u00e4 k\u00e4ytt\u00e4j\u00e4n sijainnin tarkkuutta koskevia rajoituksia ei ole; sijainti voidaan m\u00e4\u00e4ritt\u00e4\u00e4 muutaman metrin tarkkuudella.\n"},"2":{"id":2,"name":"Laitteen ominaisuuksien aktiivinen skannaus tunnistamista varten","description":"Laitteesi voidaan tunnistaa sen ominaisuuksien yhdistelm\u00e4n skannauksen perusteella.","descriptionLegal":"Toimittajat voivat\n* luoda tunnisteen k\u00e4ytt\u00e4en tietoja, joita on ker\u00e4tty skannaamalla aktiivisesti tiettyj\u00e4 laitteen ominaisuuksia, kuten asennettuja fontteja ja n\u00e4yt\u00f6n resoluutiota \n* k\u00e4ytt\u00e4\u00e4 t\u00e4llaista tunnistetta laitteen tunnistamiseksi uudelleen.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Tarkat sijaintitiedot ja laitteen tunnistaminen laitetta skannaamalla","description":"Tarkkoja sijaintitietoja voidaan k\u00e4ytt\u00e4\u00e4 ja laite tunnistaa skannaamalla sen ominaisuuksia."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Tavalliset mainokset ja mainonnan mittaus","description":"Tavallisia mainoksia voidaan n\u00e4ytt\u00e4\u00e4 ja niiden tehokkuutta mitata."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Personoidut mainokset","description":"Mainosprofiiliin voidaan ker\u00e4t\u00e4 tietoja kohdentamisen parantamiseksi ja mainoksia voidaan kohdentaa mainosprofiilin perusteella."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Tavalliset mainokset, mainonnan mittaus ja yleis\u00f6tutkimukset","description":"Tavallisia mainoksia voidaan n\u00e4ytt\u00e4\u00e4 ja niiden tehokkuutta mitata. Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Tavalliset mainokset, personoitu mainosprofiili ja mainonnan mittaus","description":"Tavallisia mainoksia voidaan n\u00e4ytt\u00e4\u00e4 ja niiden tehokkuutta mitata. Mainosprofiiliin voidaan ker\u00e4t\u00e4 tietoja kohdentamisen parantamiseksi."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Personoitujen mainosten n\u00e4ytt\u00e4minen ja mainonnan mittaus","description":"Mainoksia voidaan kohdentaa mainosprofiilin perusteella. Mainonnan tehokkuutta voidaan mitata."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Personoitujen mainosten n\u00e4ytt\u00e4minen, mainonnan mittaus ja k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys","description":"Mainoksia voidaan kohdentaa mainosprofiilin perusteella. Mainonnan tehokkuutta voidaan mitata. Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Personoidut mainokset ja mainonnan mittaus","description":"Mainosprofiiliin voidaan ker\u00e4t\u00e4 tietoja kohdentamisen parantamiseksi, ja mainoksia voidaan kohdentaa mainosprofiilin perusteella. Mainonnan tehokkuutta voidaan mitata."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Personoidut mainokset, mainonnan mittaus ja k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys","description":"Mainosprofiiliin voidaan ker\u00e4t\u00e4 tietoja kohdentamisen parantamiseksi ja mainoksia voidaan kohdentaa mainosprofiilin perusteella. Mainonnan tehokkuutta voidaan mitata, ja markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Personoitu mainosprofiili ja personoitujen mainosten n\u00e4ytt\u00e4minen","description":"Mainosprofiiliin voidaan ker\u00e4t\u00e4 tietoja kohdentamisen parantamiseksi ja mainoksia voidaan kohdentaa mainosprofiilin perusteella."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Personoitu sis\u00e4lt\u00f6","description":"Sis\u00e4lt\u00f6profiiliin voidaan ker\u00e4t\u00e4 tietoja personoinnin parantamiseksi ja sis\u00e4lt\u00f6 voidaan personoida sis\u00e4lt\u00f6profiilin perusteella."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Personoidun sis\u00e4ll\u00f6n n\u00e4ytt\u00e4minen ja sis\u00e4ll\u00f6n mittaus","description":"Sis\u00e4lt\u00f6 voidaan personoida sis\u00e4lt\u00f6profiilin perusteella ja sis\u00e4ll\u00f6n tehokkuutta voidaan mitata."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Personoidun sis\u00e4ll\u00f6n n\u00e4ytt\u00e4minen, sis\u00e4ll\u00f6n mittaus ja k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys","description":"Sis\u00e4lt\u00f6 voidaan personoida sis\u00e4lt\u00f6profiilin perusteella ja sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Personoitu sis\u00e4lt\u00f6 ja sis\u00e4ll\u00f6n mittaus","description":"Sis\u00e4lt\u00f6profiiliin voidaan ker\u00e4t\u00e4 tietoja personoinnin parantamiseksi ja sis\u00e4lt\u00f6 voidaan personoida sis\u00e4lt\u00f6profiilin perusteella. Sis\u00e4ll\u00f6n tehokkuutta voidaan mitata."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Personoitu sis\u00e4lt\u00f6, sis\u00e4ll\u00f6n mittaus ja k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys","description":"Sis\u00e4lt\u00f6profiiliin voidaan ker\u00e4t\u00e4 tietoja personoinnin parantamiseksi ja sis\u00e4lt\u00f6 voidaan personoida sis\u00e4lt\u00f6profiilin perusteella. Sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Personoitu sis\u00e4lt\u00f6, sis\u00e4ll\u00f6n mittaus, k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys ja tuotekehitys","description":"Sis\u00e4lt\u00f6profiiliin voidaan ker\u00e4t\u00e4 tietoja personoinnin parantamiseksi ja sis\u00e4lt\u00f6 voidaan personoida sis\u00e4lt\u00f6profiilin perusteella. Sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia. Tietoja voidaan k\u00e4ytt\u00e4\u00e4 my\u00f6s k\u00e4ytt\u00e4j\u00e4kokemuksen, j\u00e4rjestelmien ja ohjelmistojen kehityksess\u00e4."},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Mainonnan ja sis\u00e4ll\u00f6n mittaus sek\u00e4 k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys","description":"Mainonnan ja sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Mainonnan ja sis\u00e4ll\u00f6n mittaus sek\u00e4 k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys","description":"Mainonnan ja sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Mainonnan mittaus ja k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys","description":"Mainonnan tehokkuutta voidaan mitata. Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Mainonnan ja sis\u00e4ll\u00f6n mittaus, k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys ja tuotekehitys","description":"Mainonnan ja sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia. Tietoja voidaan k\u00e4ytt\u00e4\u00e4 my\u00f6s k\u00e4ytt\u00e4j\u00e4kokemuksen, j\u00e4rjestelmien ja ohjelmistojen kehityksess\u00e4."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Sis\u00e4ll\u00f6n mittaus, k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys ja tuotekehitys","description":"Sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia. Tietoja voidaan k\u00e4ytt\u00e4\u00e4 my\u00f6s k\u00e4ytt\u00e4j\u00e4kokemuksen, j\u00e4rjestelmien ja ohjelmistojen kehityksess\u00e4."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Sis\u00e4ll\u00f6n mittaus ja tuotekehitys","description":"Sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Tietoja voidaan k\u00e4ytt\u00e4\u00e4 my\u00f6s k\u00e4ytt\u00e4j\u00e4kokemuksen, j\u00e4rjestelmien ja ohjelmistojen kehityksess\u00e4."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Personoitujen mainosten ja sis\u00e4ll\u00f6n n\u00e4ytt\u00e4minen sek\u00e4 mainonnan ja sis\u00e4ll\u00f6n mittaus","description":"Mainoksia voidaan kohdentaa ja sis\u00e4lt\u00f6 personoida profiilin perusteella. Mainonnan ja sis\u00e4ll\u00f6n tehokkuutta voidaan mitata."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Personoitujen mainosten ja sis\u00e4ll\u00f6n n\u00e4ytt\u00e4minen, mainonnan ja sis\u00e4ll\u00f6n mittaus sek\u00e4 k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys","description":"Mainoksia voidaan kohdentaa ja sis\u00e4lt\u00f6 personoida profiilin perusteella. Mainonnan ja sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia. Tietoja voidaan k\u00e4ytt\u00e4\u00e4 my\u00f6s k\u00e4ytt\u00e4j\u00e4kokemuksen, j\u00e4rjestelmien ja ohjelmistojen kehityksess\u00e4."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Personoitu mainonta ja sis\u00e4lt\u00f6 sek\u00e4 mainonnan ja sis\u00e4ll\u00f6n mittaus","description":"Mainos- ja sis\u00e4lt\u00f6profiileihin voidaan ker\u00e4t\u00e4 tietoja kohdentamisen ja personoinnin parantamiseksi ja mainoksia voidaan kohdentaa ja sis\u00e4lt\u00f6 personoida profiilien perusteella. Mainonnan ja sis\u00e4ll\u00f6n tehokkuutta voidaan mitata."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Personoitu mainonta ja sis\u00e4lt\u00f6, mainonnan ja sis\u00e4ll\u00f6n mittaus sek\u00e4 k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys","description":"Mainos- ja sis\u00e4lt\u00f6profiileihin voidaan ker\u00e4t\u00e4 tietoja kohdentamisen ja personoinnin parantamiseksi. Mainoksia voidaan kohdentaa ja sis\u00e4lt\u00f6 personoida profiilien perusteella. Mainonnan ja sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Personoidut mainokset ja personoitu sis\u00e4lt\u00f6","description":"Mainos- ja sis\u00e4lt\u00f6profiileihin voidaan ker\u00e4t\u00e4 tietoja mainonnan kohdentamisen ja sis\u00e4ll\u00f6n personoinnin parantamiseksi."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Personoidun mainonnan ja sis\u00e4ll\u00f6n n\u00e4ytt\u00e4minen","description":"Mainoksia voidaan kohdentaa ja sis\u00e4lt\u00f6 personoida profiilin perusteella."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Tavalliset mainokset, mainonnan ja sis\u00e4ll\u00f6n mittaus ja k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys","description":"Tavallisia mainoksia voidaan n\u00e4ytt\u00e4\u00e4. Mainonnan ja sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Personoitujen mainosten n\u00e4ytt\u00e4minen, personoitu sis\u00e4lt\u00f6, mainonnan ja sis\u00e4ll\u00f6n mittaus sek\u00e4 k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys","description":"Sis\u00e4lt\u00f6profiiliin voidaan ker\u00e4t\u00e4 tietoja personoinnin parantamiseksi ja mainoksia voidaan kohdentaa ja sis\u00e4lt\u00f6 personoida profiilin perusteella. Mainonnan ja sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Personoitujen mainosten n\u00e4ytt\u00e4minen, personoitu sis\u00e4lt\u00f6, mainonnan ja sis\u00e4ll\u00f6n mittaus, k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys ja tuotekehitys","description":"Sis\u00e4lt\u00f6profiiliin voidaan ker\u00e4t\u00e4 tietoja personoinnin parantamiseksi. Mainoksia voidaan kohdentaa ja sis\u00e4lt\u00f6 personoida profiilin perusteella. Mainonnan ja sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia. Tietoja voidaan k\u00e4ytt\u00e4\u00e4 my\u00f6s k\u00e4ytt\u00e4j\u00e4kokemuksen, j\u00e4rjestelmien ja ohjelmistojen kehityksess\u00e4."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Tavalliset mainokset, personoitu sis\u00e4lt\u00f6, mainonnan ja sis\u00e4ll\u00f6n mittaus sek\u00e4 k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys","description":"Tavallisia mainoksia voidaan n\u00e4ytt\u00e4\u00e4. Sis\u00e4lt\u00f6profiiliin voidaan ker\u00e4t\u00e4 lis\u00e4\u00e4 tietoja personoinnin parantamiseksi ja sis\u00e4lt\u00f6 voidaan personoida profiilin perusteella. Mainonnan ja sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Tavalliset mainokset, personoitu sis\u00e4lt\u00f6, mainonnan ja sis\u00e4ll\u00f6n mittaus, k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys sek\u00e4 tuotekehitys","description":"Tavallisia mainoksia voidaan n\u00e4ytt\u00e4\u00e4. Sis\u00e4lt\u00f6profiiliin voidaan ker\u00e4t\u00e4 tietoja personoinnin parantamiseksi ja sis\u00e4lt\u00f6 voidaan personoida profiilin perusteella. Mainonnan ja sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia. Tietoja voidaan k\u00e4ytt\u00e4\u00e4 my\u00f6s k\u00e4ytt\u00e4j\u00e4kokemuksen, j\u00e4rjestelmien ja ohjelmistojen kehityksess\u00e4."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Tavalliset mainokset, personoitu sis\u00e4lt\u00f6, sis\u00e4ll\u00f6n mittaus ja k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys","description":"Tavallisia mainoksia voidaan n\u00e4ytt\u00e4\u00e4. Sis\u00e4lt\u00f6profiiliin voidaan ker\u00e4t\u00e4 tietoja personoinnin parantamiseksi ja sis\u00e4lt\u00f6 voidaan personoida profiilin perusteella. Mainonnan ja sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia. \n"},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Tavalliset mainokset, personoitu sis\u00e4lt\u00f6, sis\u00e4ll\u00f6n mittaus, k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys ja tuotekehitys","description":"Tavallisia mainoksia voidaan n\u00e4ytt\u00e4\u00e4. Sis\u00e4lt\u00f6profiiliin voidaan ker\u00e4t\u00e4 tietoja personoinnin parantamiseksi ja sis\u00e4lt\u00f6 voidaan personoida profiilin perusteella. Sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Markkinatutkimuksen avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia. Tietoja voidaan k\u00e4ytt\u00e4\u00e4 my\u00f6s k\u00e4ytt\u00e4j\u00e4kokemuksen, j\u00e4rjestelmien ja ohjelmistojen kehityksess\u00e4."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Tavalliset mainokset, personoitu sis\u00e4lt\u00f6 ja mainonnan mittaus","description":"Tavallisia mainoksia voidaan n\u00e4ytt\u00e4\u00e4. Sis\u00e4lt\u00f6profiiliin voidaan ker\u00e4t\u00e4 tietoja personoinnin parantamiseksi, ja sis\u00e4lt\u00f6 voidaan personoida profiilin perusteella. Mainonnan tehokkuutta voidaan mitata."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Tavalliset mainokset, personoitu sis\u00e4lt\u00f6, mainonnan mittaus ja tuotekehitys","description":"Tavallisia mainoksia voidaan n\u00e4ytt\u00e4\u00e4. Sis\u00e4lt\u00f6profiiliin voidaan ker\u00e4t\u00e4 tietoja personoinnin parantamiseksi ja sis\u00e4lt\u00f6 voidaan personoida profiilin perusteella. Mainosten tehokkuutta voidaan mitata. Tietoja voidaan k\u00e4ytt\u00e4\u00e4 my\u00f6s k\u00e4ytt\u00e4j\u00e4kokemuksen, j\u00e4rjestelmien ja ohjelmistojen kehityksess\u00e4."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Personoidut mainokset, mainonnan mittaus ja tuotekehitys","description":"Mainosprofiiliin voidaan ker\u00e4t\u00e4 tietoja kohdentamisen parantamiseksi ja mainoksia voidaan kohdentaa mainosprofiilien perusteella. Mainonnan tehokkuutta voidaan mitata. Tietoja voidaan k\u00e4ytt\u00e4\u00e4 k\u00e4ytt\u00e4j\u00e4kokemuksen, j\u00e4rjestelmien ja ohjelmistojen kehityksess\u00e4. "},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Personoidut mainokset, mainonnan mittaus, k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys ja tuotekehitys","description":"Mainosprofiiliin voidaan ker\u00e4t\u00e4 tietoja kohdentamisen parantamiseksi ja mainoksia voidaan kohdentaa mainosprofiilien perusteella. Mainonnan tehokkuutta voidaan mitata. Markkinatutkimusten avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia. Tietoja voidaan k\u00e4ytt\u00e4\u00e4 my\u00f6s k\u00e4ytt\u00e4j\u00e4kokemuksen, j\u00e4rjestelmien ja ohjelmistojen kehityksess\u00e4. "},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Personoidut mainokset, mainonnan ja sis\u00e4ll\u00f6n mittaus, k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys ja tuotekehitys","description":"Mainosprofiiliin voidaan ker\u00e4t\u00e4 tietoja kohdentamisen parantamiseksi ja mainoksia voidaan kohdentaa mainosprofiilien perusteella. Mainonnan ja sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Markkinatutkimusten avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia. Tietoja voidaan k\u00e4ytt\u00e4\u00e4 my\u00f6s k\u00e4ytt\u00e4j\u00e4kokemuksen, j\u00e4rjestelmien ja ohjelmistojen kehityksess\u00e4. "},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Personoidut mainokset, personoitujen mainoksien n\u00e4ytt\u00e4minen, mainonnan ja sis\u00e4ll\u00f6n mittaus, k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys ja tuotekehitys","description":"Mainosprofiiliin voidaan ker\u00e4t\u00e4 tietoja kohdentamisen parantamiseksi ja mainoksia voidaan kohdentaa mainosprofiilien perusteella. Mainonnan ja sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Markkinatutkimusten avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia. Tietoja voidaan k\u00e4ytt\u00e4\u00e4 my\u00f6s k\u00e4ytt\u00e4j\u00e4kokemuksen, j\u00e4rjestelmien ja ohjelmistojen kehityksess\u00e4. "},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Personoitujen mainosten ja sis\u00e4ll\u00f6n n\u00e4ytt\u00e4minen, mainonnan ja sis\u00e4ll\u00f6n mittaus, k\u00e4ytt\u00e4j\u00e4ymm\u00e4rrys sek\u00e4 tuotekehitys","description":"Mainos- ja sis\u00e4lt\u00f6profiileihin voidaan ker\u00e4t\u00e4 tietoja kohdentamisen ja personoinnin parantamiseksi. Mainoksia voidaan kohdentaa ja sis\u00e4lt\u00f6\u00e4 personoida profiilin perusteella. Mainonnan ja sis\u00e4ll\u00f6n tehokkuutta voidaan mitata. Markkinatutkimusten avulla voidaan lis\u00e4t\u00e4 ymm\u00e4rryst\u00e4 yleis\u00f6ist\u00e4, jotka k\u00e4yv\u00e4t verkkosivustoilla tai k\u00e4ytt\u00e4v\u00e4t sovelluksia. Tietoja voidaan k\u00e4ytt\u00e4\u00e4 my\u00f6s k\u00e4ytt\u00e4j\u00e4kokemuksen, j\u00e4rjestelmien ja ohjelmistojen kehityksess\u00e4. "}}} \ No newline at end of file diff --git a/src/s1/config/2.0/purposes/purposes-fr.json b/src/s1/config/2.0/purposes/purposes-fr.json index c03bad06..6509983e 100644 --- a/src/s1/config/2.0/purposes/purposes-fr.json +++ b/src/s1/config/2.0/purposes/purposes-fr.json @@ -1 +1 @@ -{"vendorListVersion":79,"lastUpdated":"2021-02-25T16:36:18Z","purposes":{"1":{"id":1,"name":"Stocker et/ou acc\u00e9der \u00e0 des informations sur un terminal","description":"Les cookies, identifiants de votre terminal ou autres informations peuvent \u00eatre stock\u00e9s ou consult\u00e9s sur votre terminal pour les finalit\u00e9s qui vous sont pr\u00e9sent\u00e9es.","descriptionLegal":"Les partenaires peuvent :\n* Stocker des informations et acc\u00e9der \u00e0 des informations stock\u00e9es sur le terminal, comme les cookies et les identifiants du terminal pr\u00e9sent\u00e9s \u00e0 un utilisateur.\n"},"2":{"id":2,"name":"S\u00e9lectionner des publicit\u00e9s standard","description":"Les publicit\u00e9s peuvent vous \u00eatre pr\u00e9sent\u00e9es en fonction du contenu \u00e9ditorial que vous consultez, de l\u2019application que vous utilisez, de votre localisation approximative, ou de votre type de terminal\n","descriptionLegal":"Pour s\u00e9lectionner des publicit\u00e9s standard, les partenaires peuvent :\n* Utiliser des informations en temps r\u00e9el sur le contexte dans lequel la publicit\u00e9 sera affich\u00e9e, pour afficher la publicit\u00e9, y compris des informations sur le contenu et le terminal, telles que : type de terminal et capacit\u00e9s, user agent, URL, adresse IP \n* Utiliser des donn\u00e9es de g\u00e9olocalisation non-pr\u00e9cises d\u2019un utilisateur\n* Contr\u00f4ler la fr\u00e9quence de diffusion des publicit\u00e9s \u00e0 un utilisateur.\n* D\u00e9finir l\u2019ordre dans lequel les publicit\u00e9s sont pr\u00e9sent\u00e9es \u00e0 un utilisateur.\n* Emp\u00eacher une publicit\u00e9 de s\u2019afficher dans un contexte \u00e9ditorial inadapt\u00e9 (dangereux pour la marque)\nLes partenaires ne peuvent pas :\n* Cr\u00e9er un profil publicitaire personnalis\u00e9 \u00e0 l\u2019aide de ces informations pour la s\u00e9lection de publicit\u00e9s futures sans base l\u00e9gale distincte. \nN.B. \u00ab Non-pr\u00e9cises \u00bb signifie qu\u2019une g\u00e9olocalisation approximative dans un rayon d\u2019au moins 500 m\u00e8tres est autoris\u00e9e.\n"},"3":{"id":3,"name":"Cr\u00e9er un profil personnalis\u00e9 de publicit\u00e9s","description":"Un profil peut \u00eatre cr\u00e9\u00e9 sur vous et sur vos centres d\u2019int\u00e9r\u00eat pour vous pr\u00e9senter des publicit\u00e9s personnalis\u00e9es susceptibles de vous int\u00e9resser.","descriptionLegal":"Pour cr\u00e9er un profil de publicit\u00e9s personnalis\u00e9es, les partenaires peuvent :\n* Collecter des informations sur un utilisateur, notamment son activit\u00e9, ses centres d\u2019int\u00e9r\u00eat, les sites ou applications consult\u00e9s, les donn\u00e9es d\u00e9mographiques ou la g\u00e9olocalisation d\u2019un utilisateur, pour cr\u00e9er ou modifier un profil utilisateur \u00e0 utiliser dans des publicit\u00e9s personnalis\u00e9es.\n* Combiner ces informations avec d'autres informations pr\u00e9c\u00e9demment collect\u00e9es, y compris \u00e0 partir de sites Web et d'applications, pour cr\u00e9er ou modifier un profil d'utilisateur pour de la publicit\u00e9 personnalis\u00e9e."},"4":{"id":4,"name":"S\u00e9lectionner des publicit\u00e9s personnalis\u00e9es","description":"Des publicit\u00e9s personnalis\u00e9es peuvent vous \u00eatre pr\u00e9sent\u00e9es sur la base d\u2019un profil cr\u00e9\u00e9 sur vous.","descriptionLegal":"Pour s\u00e9lectionner des publicit\u00e9s personnalis\u00e9es, les partenaires peuvent :\n* S\u00e9lectionner des publicit\u00e9s personnalis\u00e9es sur la base d\u2019un profil utilisateur ou d\u2019autres donn\u00e9es d\u2019utilisateur historiques, y compris l\u2019activit\u00e9 pass\u00e9e d\u2019un utilisateur, ses centres d\u2019int\u00e9r\u00eat, les sites qu\u2019il a visit\u00e9s ou les applications qu\u2019il a utilis\u00e9es, sa localisation ou ses donn\u00e9es d\u00e9mographiques.\n"},"5":{"id":5,"name":"Cr\u00e9er un profil pour afficher un contenu personnalis\u00e9","description":"Un profil peut \u00eatre cr\u00e9\u00e9 sur vous et sur vos centres d\u2019int\u00e9r\u00eat afin de vous pr\u00e9senter du contenu personnalis\u00e9 susceptible de vous int\u00e9resser.","descriptionLegal":"Pour cr\u00e9er un profil pour afficher du contenu personnalis\u00e9, les partenaires peuvent :\n* Collecter des informations sur un utilisateur, y compris l\u2019activit\u00e9 d\u2019un utilisateur, ses centres d\u2019int\u00e9r\u00eat, les sites qu\u2019il a visit\u00e9s ou les applications qu\u2019il a utilis\u00e9es, ses donn\u00e9es d\u00e9mographiques ou sa localisation, pour cr\u00e9er ou modifier un profil utilisateur pour afficher du contenu personnalis\u00e9.\n* Combiner ces informations avec d'autres informations pr\u00e9c\u00e9demment collect\u00e9es, y compris \u00e0 partir de sites Web et d'applications, pour cr\u00e9er ou modifier un profil utilisateur \u00e0 utiliser dans la personnalisation du contenu."},"6":{"id":6,"name":"S\u00e9lectionner du contenu personnalis\u00e9","description":"Du contenu personnalis\u00e9 peut vous \u00eatre pr\u00e9sent\u00e9 sur la base de votre profil utilisateur.","descriptionLegal":"Pour s\u00e9lectionner du contenu personnalis\u00e9, les partenaires peuvent :\n* S\u00e9lectionner du contenu personnalis\u00e9 sur la base d\u2019un profil utilisateur induit des donn\u00e9es relatives \u00e0 son activit\u00e9 en ligne, ses centres d\u2019int\u00e9r\u00eat, les sites qu\u2019il a visit\u00e9s, les applications qu\u2019il a utilis\u00e9es, sa localisation ou ses donn\u00e9es socio-d\u00e9mographiques.\n"},"7":{"id":7,"name":"Mesurer la performance des publicit\u00e9s","description":"La performance et l\u2019efficacit\u00e9 des publicit\u00e9s que vous voyez ou avec lesquelles vous interagissez peuvent \u00eatre mesur\u00e9es.","descriptionLegal":"Pour mesurer la performance des publicit\u00e9s, les partenaires peuvent:\n* Mesurer si et comment des publicit\u00e9s ont \u00e9t\u00e9 pr\u00e9sent\u00e9e \u00e0 un utilisateur et comment celui-ci a interagi avec celles-ci\n* G\u00e9n\u00e9rer des rapports sur les publicit\u00e9s, notamment sur leur performance\n* G\u00e9n\u00e9rer des rapports sur les utilisateurs ayant interagi avec des publicit\u00e9s en utilisant des donn\u00e9es issues de cette interaction \n* Fournir des rapports aux \u00e9diteurs sur les publicit\u00e9s pr\u00e9sent\u00e9es/affich\u00e9es sur leurs propri\u00e9t\u00e9s num\u00e9riques \n* \u00c9valuer si une publicit\u00e9 diffus\u00e9e dans un contexte \u00e9ditorial appropri\u00e9 (conforme \u00e0 l\u2019image de la marque) sans danger pour la marque)\n* D\u00e9terminer le pourcentage du visionnage \u00e9ventuel de la publicit\u00e9 et sa dur\u00e9e \n* Combiner ces informations avec d\u2019autres informations collect\u00e9es au pr\u00e9alable, pouvant provenir de sites internet et applications\nLes partenaires ne peuvent pas: \n* Croiser des donn\u00e9es d\u2019audience, issues ou d\u00e9riv\u00e9es d\u2019un panel, avec des donn\u00e9es de mesure de performance, sans base l\u00e9gale pour titre \"Finalit\u00e9 9\". \n"},"8":{"id":8,"name":"Mesurer la performance du contenu","description":"La performance et l\u2019efficacit\u00e9 du contenu que vous voyez ou avec lequel vous interagissez peuvent \u00eatre mesur\u00e9es.","descriptionLegal":"Pour mesurer la performance du contenu, les partenaires peuvent:\n* Mesurer comment le contenu a \u00e9t\u00e9 diffus\u00e9 et comment les utilisateurs ont interagi avec, et g\u00e9n\u00e9rer des rapports.\n* G\u00e9n\u00e9rer des rapports \u00e0 l\u2019aide d\u2019informations directement mesurables ou connues, sur les utilisateurs qui ont interagi avec le contenu\nLes partenaires ne peuvent pas:\n* Mesurer si et comment des publicit\u00e9s (y compris des publicit\u00e9s natives) ont \u00e9t\u00e9 pr\u00e9sent\u00e9es \u00e0 un utilisateur et comment celui-ci a interagi avec, sans base l\u00e9gale distincte\n* Croiser des donn\u00e9es d\u2019audience, issues ou d\u00e9riv\u00e9es d\u2019un panel, avec des donn\u00e9es de mesure de performance, sans base l\u00e9gale pour titre \"Finalit\u00e9 9\u201d."},"9":{"id":9,"name":"Exploiter des \u00e9tudes de march\u00e9 afin de g\u00e9n\u00e9rer des donn\u00e9es d\u2019audience","description":"Les \u00e9tudes de march\u00e9 peuvent servir \u00e0 en apprendre davantage sur les audiences qui visitent des sites/utilisent des applications et voient des publicit\u00e9s.","descriptionLegal":"Pour utiliser des \u00e9tudes de march\u00e9 afin de g\u00e9n\u00e9rer des donn\u00e9es d\u2019audience, les partenaires peuvent:\n* Fournir des rapports agr\u00e9g\u00e9s aux annonceurs ou \u00e0 leurs repr\u00e9sentants sur les audiences expos\u00e9es \u00e0 leurs publicit\u00e9s, en utilisant des donn\u00e9es issues d\u2019un panel ou d\u2019un autre dispositif.\n* Fournir des rapports agr\u00e9g\u00e9s aux \u00e9diteurs sur les audiences expos\u00e9es \u00e0 des contenus et/ou des publicit\u00e9s ou qui ont interagi avec des contenus et/ou les publicit\u00e9s sur leurs sites, en utilisant des donn\u00e9es issues d\u2019un panel ou d\u2019un autre dispositif. \n* Combiner des donn\u00e9es hors ligne \u00e0 celles d\u2019un utilisateur en ligne dans le cadre d\u2019\u00e9tudes de march\u00e9 pour g\u00e9n\u00e9rer des donn\u00e9es d\u2019audience si les partenaires ont d\u00e9clar\u00e9 faire correspondre et associer des sources de donn\u00e9es hors ligne (Fonctionnalit\u00e9 1)\n* Texte dans la version anglaise : Combiner ces informations avec des donn\u00e9es d\u00e9j\u00e0 collect\u00e9es que ce soit sur le web ou via des applications. \nLes partenaires ne peuvent pas : \n* Mesurer la performance et l\u2019efficacit\u00e9 des publicit\u00e9s qui ont \u00e9t\u00e9 pr\u00e9sent\u00e9es \u00e0 un utilisateur en particulier, ou avec lesquelles il a interagi, sans s\u2019appuyer sur une base l\u00e9gale sp\u00e9cifique pour la mesure de la performance publicitaire.\n* \u00c9valuer le contenu qui a \u00e9t\u00e9 pr\u00e9sent\u00e9 \u00e0 un utilisateur en particulier et la fa\u00e7on dont ce dernier a r\u00e9agi sans s\u2019appuyer sur une base l\u00e9gale sp\u00e9cifique pour la mesure de la performance des contenus.\n"},"10":{"id":10,"name":"D\u00e9velopper et am\u00e9liorer les produits","description":"Vos donn\u00e9es peuvent \u00eatre utilis\u00e9es pour am\u00e9liorer les syst\u00e8mes et logiciels existants et pour d\u00e9velopper de nouveaux produits.","descriptionLegal":"Pour d\u00e9velopper de nouveaux produits et am\u00e9liorer des produits existants, les partenaires peuvent:\n* Utiliser des informations pour am\u00e9liorer leurs produits existants en y ajoutant de nouvelles fonctionnalit\u00e9s et pour d\u00e9velopper de nouveaux produits\n* Cr\u00e9er de nouveaux mod\u00e8les et algorithmes gr\u00e2ce au machine-learning \nLes partenaires ne peuvent pas:\n* Effectuer toute autre op\u00e9ration de traitement des donn\u00e9es autoris\u00e9e par une autre finalit\u00e9 dans le cadre de cette finalit\u00e9\n"}},"specialPurposes":{"1":{"id":1,"name":"Assurer la s\u00e9curit\u00e9, pr\u00e9venir la fraude et d\u00e9boguer","description":"Vos donn\u00e9es peuvent \u00eatre utilis\u00e9es pour surveiller et pr\u00e9venir les activit\u00e9s frauduleuses, et s\u2019assurer que les syst\u00e8mes et processus fonctionnent correctement et en toute s\u00e9curit\u00e9.","descriptionLegal":"Pour garantir la s\u00e9curit\u00e9, pr\u00e9venir la fraude et d\u00e9boguer, les partenaires peuvent:\n* Veiller \u00e0 ce que les donn\u00e9es soient transmises en toute s\u00e9curit\u00e9 \n* D\u00e9tecter et pr\u00e9venir les activit\u00e9s malveillantes, frauduleuses, inappropri\u00e9es ou ill\u00e9gales.\n* Assurer un fonctionnement correct et efficace des syst\u00e8mes et des processus, y compris surveiller et am\u00e9liorer la performance des syst\u00e8mes et processus utilis\u00e9s pour des finalit\u00e9s autoris\u00e9es\nLes partenaires ne peuvent pas:\n* Effectuer, au titre de cette finalit\u00e9, toute autre op\u00e9ration de traitement des donn\u00e9es autoris\u00e9e pour une finalit\u00e9 diff\u00e9rente .\nRemarque: Les donn\u00e9es collect\u00e9es et utilis\u00e9es pour assurer la s\u00e9curit\u00e9, pr\u00e9venir la fraude et d\u00e9boguer peuvent inclure des caract\u00e9ristiques d\u2019appareil envoy\u00e9es automatiquement \u00e0 des fins d'identification, des donn\u00e9es de g\u00e9olocalisation pr\u00e9cises et des donn\u00e9es obtenues par l\u2019analyse active des caract\u00e9ristiques de l\u2019appareil \u00e0 des fins d\u2019identification sans notification distincte et/ou opt-in distinct \n"},"2":{"id":2,"name":"Diffuser techniquement les publicit\u00e9s ou le contenu","description":"Votre terminal peut recevoir et envoyer des informations qui vous permettent de voir des publicit\u00e9s et du contenu et d\u2019interagir avec eux.","descriptionLegal":"Pour fournir des informations et r\u00e9pondre aux appels techniques, les partenaires peuvent:\n* Utiliser l\u2019adresse IP d\u2019un utilisateur pour diffuser une publicit\u00e9 sur Internet\n* R\u00e9agir \u00e0 l\u2019interaction d\u2019un utilisateur avec une publicit\u00e9 en dirigeant l\u2019utilisateur vers une page d\u2019accueil\n* Utiliser l\u2019adresse IP d\u2019un utilisateur pour diffuser du contenu sur Internet\n* R\u00e9agir \u00e0 l\u2019interaction d\u2019un utilisateur avec du contenu en dirigeant l\u2019utilisateur vers une page d\u2019accueil\n* Utiliser des informations sur le type de terminal et les capacit\u00e9s du terminal pour pr\u00e9senter des publicit\u00e9s ou du contenu, par exemple, pour pr\u00e9senter une publicit\u00e9 \u00e0 la bonne taille ou une vid\u00e9o dans un format pris en charge par le terminal \nLes partenaires ne peuvent pas:\n* Effectuer, au titre de cette finalit\u00e9, toute autre op\u00e9ration de traitement des donn\u00e9es autoris\u00e9e pour une finalit\u00e9 diff\u00e9rente \n"}},"features":{"1":{"id":1,"name":"Mettre en correspondance et combiner des sources de donn\u00e9es hors ligne","description":"Les donn\u00e9es issues de sources de donn\u00e9es hors ligne peuvent \u00eatre combin\u00e9es \u00e0 votre activit\u00e9 en ligne \u00e0 l\u2019appui d\u2019une ou de plusieurs finalit\u00e9s.","descriptionLegal":"Les partenaires peuvent : \n* Combiner des donn\u00e9es obtenues hors ligne avec des donn\u00e9es collect\u00e9es en ligne \u00e0 l\u2019appui d\u2019une ou de plusieurs Finalit\u00e9s ou Finalit\u00e9s sp\u00e9ciales.\n"},"2":{"id":2,"name":"Relier diff\u00e9rents terminaux","description":"Diff\u00e9rents terminaux peuvent \u00eatre identifi\u00e9s comme vous appartenant ou appartenant \u00e0 votre foyer \u00e0 l\u2019appui d\u2019une ou de plusieurs finalit\u00e9s","descriptionLegal":"Les partenaires peuvent :\n* D\u00e9terminer, selon une approche d\u00e9terministe, que deux terminaux ou plus appartiennent au m\u00eame utilisateur ou au m\u00eame foyer\n* D\u00e9terminer, selon une approche probabiliste, que deux terminaux ou plus appartiennent au m\u00eame utilisateur ou au m\u00eame foyer\n* Analyser activement les caract\u00e9ristiques du terminal pour l\u2019identification probabiliste si les utilisateurs ont autoris\u00e9 les partenaires \u00e0 analyser activement les caract\u00e9ristiques du terminal pour l\u2019identification (Fonctionnalit\u00e9 sp\u00e9ciale 2)\n"},"3":{"id":3,"name":"Recevoir et utiliser des caract\u00e9ristiques d\u2019identification d\u2019appareil envoy\u00e9es automatiquement","description":"Votre appareil peut \u00eatre distingu\u00e9 d\u2019autres appareils en fonction des informations qu\u2019il envoie automatiquement, telles que l\u2019adresse IP ou le type de navigateur.","descriptionLegal":"Les partenaires peuvent :\n* Cr\u00e9er un identifiant \u00e0 l\u2019aide des donn\u00e9es collect\u00e9es automatiquement \u00e0 partir d\u2019un appareil pour des caract\u00e9ristiques sp\u00e9cifiques ; par ex., adresse IP, cha\u00eene d\u2019agent utilisateur.\n* Utiliser cet identifiant pour r\u00e9identifier un appareil.\nLes partenaires ne peuvent pas :\n* Cr\u00e9er un identifiant \u00e0 l\u2019aide des donn\u00e9es collect\u00e9es via une analyse active d\u2019un terminal pour l\u2019identification de caract\u00e9ristiques sp\u00e9cifiques (par exemple, des polices install\u00e9es ou la r\u00e9solution d\u2019\u00e9cran) sans une adh\u00e9sion distincte de l\u2019utilisateur \u00e0 l\u2019analyse active des caract\u00e9ristiques de l\u2019appareil \u00e0 des fins d\u2019identification.\n* Utiliser cet identifiant pour r\u00e9-identifier un terminal.\n"}},"specialFeatures":{"1":{"id":1,"name":"Utiliser des donn\u00e9es de g\u00e9olocalisation pr\u00e9cises","description":"Vos donn\u00e9es de g\u00e9olocalisation pr\u00e9cises peuvent \u00eatre utilis\u00e9es \u00e0 l\u2019appui d\u2019une ou de plusieurs finalit\u00e9s. Cela signifie que votre localisation peut \u00eatre pr\u00e9cise \u00e0 plusieurs m\u00e8tres pr\u00e8s.","descriptionLegal":"Les partenaires peuvent :\n* Collecter et traiter des donn\u00e9es de g\u00e9olocalisation pr\u00e9cises \u00e0 l\u2019appui d\u2019une ou de plusieurs finalit\u00e9s.\nN.B. Une g\u00e9olocalisation pr\u00e9cise signifie qu\u2019il n\u2019y a aucune restriction \u00e0 la pr\u00e9cision de la localisation d\u2019un utilisateur ; elle peut \u00eatre pr\u00e9cise \u00e0 quelques m\u00e8tres pr\u00e8s.\n"},"2":{"id":2,"name":"Analyser activement les caract\u00e9ristiques du terminal pour l\u2019identification","description":"Votre terminal peut \u00eatre identifi\u00e9 sur la base d\u2019une analyse de la combinaison unique de caract\u00e9ristiques de votre terminal.","descriptionLegal":"Les partenaires peuvent :\n* Cr\u00e9er un identifiant \u00e0 l\u2019aide des donn\u00e9es collect\u00e9es via une analyse active d\u2019un terminal pour l\u2019identification de caract\u00e9ristiques sp\u00e9cifiques, par exemple des polices install\u00e9es ou la r\u00e9solution d\u2019\u00e9cran. \n* Utiliser cet identifiant pour r\u00e9-identifier un terminal.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Donn\u00e9es de g\u00e9olocalisation pr\u00e9cises et identification par analyse du terminal","description":"Des informations de g\u00e9olocalisation pr\u00e9cises et des informations sur les caract\u00e9ristiques de l\u2019appareil peuvent \u00eatre utilis\u00e9es."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Publicit\u00e9s standards et mesure de performance des publicit\u00e9s","description":"Des publicit\u00e9s standards peuvent \u00eatre diffus\u00e9es. La performance des publicit\u00e9s peut \u00eatre mesur\u00e9e."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Publicit\u00e9s personnalis\u00e9es","description":"Les publicit\u00e9s peuvent \u00eatre personnalis\u00e9es sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser les publicit\u00e9s."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Publicit\u00e9s standard, mesure de performance des publicit\u00e9s et donn\u00e9es d\u2019audience","description":"Des publicit\u00e9s standards peuvent \u00eatre diffus\u00e9es. La performance des publicit\u00e9s peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Publicit\u00e9s standards, profil de publicit\u00e9s personnalis\u00e9es et mesure de performance des publicit\u00e9s","description":"Des publicit\u00e9s standards peuvent \u00eatre diffus\u00e9es. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser les publicit\u00e9s. La performance des publicit\u00e9s peut \u00eatre mesur\u00e9e."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Affichage de publicit\u00e9s personnalis\u00e9es et mesure de performance des publicit\u00e9s","description":"Les publicit\u00e9s peuvent \u00eatre personnalis\u00e9es sur la base d\u2019un profil. La performance des publicit\u00e9s peut \u00eatre mesur\u00e9e."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Affichage de publicit\u00e9s personnalis\u00e9es, mesure de performance des publicit\u00e9s, et donn\u00e9es d\u2019audience","description":"Les publicit\u00e9s peuvent \u00eatre personnalis\u00e9es sur la base d\u2019un profil. La performance des publicit\u00e9s peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Publicit\u00e9s personnalis\u00e9es et mesure de performance des publicit\u00e9s","description":"Les publicit\u00e9s peuvent \u00eatre personnalis\u00e9es sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser les publicit\u00e9s. La performance des publicit\u00e9s peut \u00eatre mesur\u00e9e."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Publicit\u00e9s personnalis\u00e9es, mesure de performance des publicit\u00e9s, et donn\u00e9es d\u2019audience","description":"Les publicit\u00e9s peuvent \u00eatre personnalis\u00e9es sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser les publicit\u00e9s. La performance des publicit\u00e9s peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Profil de publicit\u00e9s personnalis\u00e9es et affichage","description":"Les publicit\u00e9s peuvent \u00eatre personnalis\u00e9es sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser les publicit\u00e9s."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Contenu personnalis\u00e9","description":"Le contenu peut \u00eatre personnalis\u00e9 sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser le contenu."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Affichage de contenu personnalis\u00e9 et mesure de performance du contenu","description":"Le contenu peut \u00eatre personnalis\u00e9 sur la base d\u2019un profil. La performance du contenu peut \u00eatre mesur\u00e9e."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Affichage de contenu personnalis\u00e9, mesure de performance du contenu et donn\u00e9es d\u2019audience","description":"Le contenu peut \u00eatre personnalis\u00e9 sur la base d\u2019un profil. La performance du contenu peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Contenu personnalis\u00e9 et mesure de performance du contenu","description":"Le contenu peut \u00eatre personnalis\u00e9 sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser le contenu. La performance du contenu peut \u00eatre mesur\u00e9e."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Contenu personnalis\u00e9, mesure de performance du contenu et donn\u00e9es d\u2019audience","description":"Le contenu peut \u00eatre personnalis\u00e9 sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser le contenu. La performance du contenu peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Contenu personnalis\u00e9, mesure de performance du contenu, donn\u00e9es d\u2019audience, et d\u00e9veloppement produit","description":"Le contenu peut \u00eatre personnalis\u00e9 sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser le contenu. La performance du contenu peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu. Les donn\u00e9es peuvent \u00eatre utilis\u00e9es pour cr\u00e9er ou am\u00e9liorer l\u2019exp\u00e9rience utilisateur, des syst\u00e8mes et logiciels"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Mesure de performance des publicit\u00e9s et du contenu et donn\u00e9es d\u2019audience","description":"La performance des publicit\u00e9s et du contenu peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Mesure de performance des publicit\u00e9s et du contenu","description":"La performance des publicit\u00e9s et du contenu peut \u00eatre mesur\u00e9e."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Mesure de performance des publicit\u00e9s et donn\u00e9es d\u2019audience","description":"La performance des publicit\u00e9s peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu"},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Mesure de performance des publicit\u00e9s et du contenu, donn\u00e9es d\u2019audience, et d\u00e9veloppement produit","description":"La performance des publicit\u00e9s et du contenu peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu. Les donn\u00e9es peuvent \u00eatre utilis\u00e9es pour cr\u00e9er ou am\u00e9liorer l\u2019exp\u00e9rience utilisateur, les syst\u00e8mes et les logiciels. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Mesure de performance du contenu, donn\u00e9es d\u2019audience, et d\u00e9veloppement produit.","description":"La performance du contenu peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu. Les donn\u00e9es peuvent \u00eatre utilis\u00e9es pour cr\u00e9er ou am\u00e9liorer l\u2019exp\u00e9rience utilisateur, les syst\u00e8mes et les logiciels."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Mesure de performance du contenu, et d\u00e9veloppement produit","description":"La performance du contenu peut \u00eatre mesur\u00e9e. Les donn\u00e9es peuvent \u00eatre utilis\u00e9es pour cr\u00e9er ou am\u00e9liorer l\u2019exp\u00e9rience utilisateur, les syst\u00e8mes et les logiciels."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Affichage de publicit\u00e9s et de contenu personnalis\u00e9s, mesure de performance des publicit\u00e9s et du contenu","description":"Les publicit\u00e9s et le contenu peuvent \u00eatre personnalis\u00e9s sur la base d\u2019un profil. La performance des publicit\u00e9s et du contenu peut \u00eatre mesur\u00e9e."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Affichage de publicit\u00e9s et de contenu personnalis\u00e9s, mesure de performance des publicit\u00e9s et du contenu, et donn\u00e9es d\u2019audience","description":"Les publicit\u00e9s et le contenu peuvent \u00eatre personnalis\u00e9s sur la base d\u2019un profil. La performance des publicit\u00e9s et du contenu peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu. Les donn\u00e9es peuvent \u00eatre utilis\u00e9es pour cr\u00e9er ou am\u00e9liorer l\u2019exp\u00e9rience utilisateur, les syst\u00e8mes et les logiciels."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Publicit\u00e9s et contenu personnalis\u00e9s, mesure de performance des publicit\u00e9s et du contenu","description":"Les publicit\u00e9s et le contenu peuvent \u00eatre personnalis\u00e9s sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser les publicit\u00e9s et le contenu. La performance des publicit\u00e9s et du contenu peut \u00eatre mesur\u00e9e."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Publicit\u00e9s et contenu personnalis\u00e9s, mesure de performance des publicit\u00e9s et du contenu, et donn\u00e9es d\u2019audience","description":"Les publicit\u00e9s et le contenu peuvent \u00eatre personnalis\u00e9s sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser les publicit\u00e9s et le contenu. La performance des publicit\u00e9s et du contenu peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Publicit\u00e9s personnalis\u00e9es et profil de contenu","description":"Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour personnaliser les publicit\u00e9s et le contenu."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Affichage de publicit\u00e9s et de contenu personnalis\u00e9s","description":"Les publicit\u00e9s et le contenu peuvent \u00eatre personnalis\u00e9s sur la base d\u2019un profil."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Publicit\u00e9s standards, mesure de performance des publicit\u00e9s et du contenu, et donn\u00e9es d\u2019audience","description":"Des publicit\u00e9s standards peuvent \u00eatre diffus\u00e9es. La performance des publicit\u00e9s et du contenu peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Affichage de publicit\u00e9s personnalis\u00e9es, contenu personnalis\u00e9, mesure de performance des publicit\u00e9s et du contenu, et donn\u00e9es d\u2019audience","description":"Les publicit\u00e9s et le contenu peuvent \u00eatre personnalis\u00e9s sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser le contenu. La performance des publicit\u00e9s et du contenu peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Affichage de publicit\u00e9s personnalis\u00e9es, contenu personnalis\u00e9, mesure de performance des publicit\u00e9s et du contenu, donn\u00e9es d\u2019audience et d\u00e9veloppement de produit","description":"Les publicit\u00e9s et le contenu peuvent \u00eatre personnalis\u00e9s sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser le contenu. La performance des publicit\u00e9s et du contenu peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu. Les donn\u00e9es peuvent \u00eatre utilis\u00e9es pour cr\u00e9er ou am\u00e9liorer l\u2019exp\u00e9rience utilisateur, les syst\u00e8mes et les logiciels."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Publicit\u00e9s standards, contenu personnalis\u00e9, mesure de performance des publicit\u00e9s et du contenu, et donn\u00e9es d\u2019audience","description":"Des publicit\u00e9s standards peuvent \u00eatre diffus\u00e9es. Le contenu peut \u00eatre personnalis\u00e9 sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser le contenu. La performance des publicit\u00e9s et du contenu peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Publicit\u00e9s standards, contenu personnalis\u00e9, mesure de performance des publicit\u00e9s et du contenu, donn\u00e9es d\u2019audience, et d\u00e9veloppement produit","description":"Des publicit\u00e9s standards peuvent \u00eatre diffus\u00e9es. Le contenu peut \u00eatre personnalis\u00e9 sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser le contenu. La performance des publicit\u00e9s et du contenu peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu. Les donn\u00e9es peuvent \u00eatre utilis\u00e9es pour cr\u00e9er ou am\u00e9liorer l\u2019exp\u00e9rience utilisateur, les syst\u00e8mes et les logiciels."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Publicit\u00e9s standards, contenu personnalis\u00e9, mesure de performance du contenu, et donn\u00e9es d\u2019audience","description":"Des publicit\u00e9s standards peuvent \u00eatre diffus\u00e9es. Le contenu peut \u00eatre personnalis\u00e9 sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser le contenu. La performance des publicit\u00e9s et du contenu peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Publicit\u00e9s standards, contenu personnalis\u00e9, mesure de performance du contenu, donn\u00e9es d\u2019audience et d\u00e9veloppement de produit","description":"Des publicit\u00e9s standards peuvent \u00eatre diffus\u00e9es. Le contenu peut \u00eatre personnalis\u00e9 sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser le contenu. La performance du contenu peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu. Les donn\u00e9es peuvent \u00eatre utilis\u00e9es pour cr\u00e9er ou am\u00e9liorer l\u2019exp\u00e9rience utilisateur, les syst\u00e8mes et les logiciels."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Publicit\u00e9s standard, contenu personnalis\u00e9 et mesure de performance des publicit\u00e9s","description":"Des publicit\u00e9s standards peuvent \u00eatre diffus\u00e9es. Le contenu peut \u00eatre personnalis\u00e9 sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser le contenu. La performance des publicit\u00e9s peut \u00eatre mesur\u00e9e."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Publicit\u00e9s standards, contenu personnalis\u00e9, mesure de performance des publicit\u00e9s, et d\u00e9veloppement produit","description":"Des publicit\u00e9s standards peuvent \u00eatre diffus\u00e9es. Le contenu peut \u00eatre personnalis\u00e9 sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser le contenu. La performance des publicit\u00e9s peut \u00eatre mesur\u00e9e. Les donn\u00e9es peuvent \u00eatre utilis\u00e9es pour cr\u00e9er ou am\u00e9liorer l\u2019exp\u00e9rience utilisateur, les syst\u00e8mes et les logiciels."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Publicit\u00e9s personnalis\u00e9es, mesure de performance des publicit\u00e9s et d\u00e9veloppement de produit","description":"Les publicit\u00e9s peuvent \u00eatre personnalis\u00e9es sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser les publicit\u00e9s. La performance des publicit\u00e9s peut \u00eatre mesur\u00e9e. Les donn\u00e9es peuvent \u00eatre utilis\u00e9es pour cr\u00e9er ou am\u00e9liorer l\u2019exp\u00e9rience utilisateur, les syst\u00e8mes et les logiciels."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Publicit\u00e9s personnalis\u00e9es, mesure de performance des publicit\u00e9s, donn\u00e9es d\u2019audience et d\u00e9veloppement de produit","description":"Les publicit\u00e9s peuvent \u00eatre personnalis\u00e9es sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser les publicit\u00e9s. La performance des publicit\u00e9s peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les publics qui ont vu les publicit\u00e9s et le contenu. Les donn\u00e9es peuvent \u00eatre utilis\u00e9es pour cr\u00e9er ou am\u00e9liorer l\u2019exp\u00e9rience utilisateur, les syst\u00e8mes et les logiciels."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Publicit\u00e9s personnalis\u00e9es, mesure de performance des publicit\u00e9s et du contenu, donn\u00e9es d\u2019audience et d\u00e9veloppement de produit","description":"Les publicit\u00e9s peuvent \u00eatre personnalis\u00e9es sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser les publicit\u00e9s. La performance des publicit\u00e9s et du contenu peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les publics qui ont vu les publicit\u00e9s et le contenu. Les donn\u00e9es peuvent \u00eatre utilis\u00e9es pour cr\u00e9er ou am\u00e9liorer l\u2019exp\u00e9rience utilisateur, les syst\u00e8mes et les logiciels."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Publicit\u00e9s personnalis\u00e9es, affichage de contenu personnalis\u00e9, mesure de performance des publicit\u00e9s et du contenu, donn\u00e9es d\u2019audience et d\u00e9veloppement de produit","description":"Les publicit\u00e9s et le contenu peuvent \u00eatre personnalis\u00e9s sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser les publicit\u00e9s. La performance des publicit\u00e9s et du contenu peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les publics qui ont vu les publicit\u00e9s et le contenu. Les donn\u00e9es peuvent \u00eatre utilis\u00e9es pour cr\u00e9er ou am\u00e9liorer l\u2019exp\u00e9rience utilisateur, les syst\u00e8mes et les logiciels."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Publicit\u00e9s et contenu personnalis\u00e9s, mesure de performance des publicit\u00e9s et du contenu, donn\u00e9es d\u2019audience et d\u00e9veloppement de produit","description":"Les publicit\u00e9s et le contenu peuvent \u00eatre personnalis\u00e9s sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser les publicit\u00e9s et le contenu. La performance des publicit\u00e9s et du contenu peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les publics qui ont vu les publicit\u00e9s et le contenu. Les donn\u00e9es peuvent \u00eatre utilis\u00e9es pour cr\u00e9er ou am\u00e9liorer l\u2019exp\u00e9rience utilisateur, les syst\u00e8mes et les logiciels."}}} \ No newline at end of file +{"vendorListVersion":94,"lastUpdated":"2021-06-10T16:43:57Z","purposes":{"1":{"id":1,"name":"Stocker et/ou acc\u00e9der \u00e0 des informations sur un terminal","description":"Les cookies, identifiants de votre terminal ou autres informations peuvent \u00eatre stock\u00e9s ou consult\u00e9s sur votre terminal pour les finalit\u00e9s qui vous sont pr\u00e9sent\u00e9es.","descriptionLegal":"Les partenaires peuvent :\n* Stocker des informations et acc\u00e9der \u00e0 des informations stock\u00e9es sur le terminal, comme les cookies et les identifiants du terminal pr\u00e9sent\u00e9s \u00e0 un utilisateur.\n"},"2":{"id":2,"name":"S\u00e9lectionner des publicit\u00e9s standard","description":"Les publicit\u00e9s peuvent vous \u00eatre pr\u00e9sent\u00e9es en fonction du contenu \u00e9ditorial que vous consultez, de l\u2019application que vous utilisez, de votre localisation approximative, ou de votre type de terminal\n","descriptionLegal":"Pour s\u00e9lectionner des publicit\u00e9s standard, les partenaires peuvent :\n* Utiliser des informations en temps r\u00e9el sur le contexte dans lequel la publicit\u00e9 sera affich\u00e9e, pour afficher la publicit\u00e9, y compris des informations sur le contenu et le terminal, telles que : type de terminal et capacit\u00e9s, user agent, URL, adresse IP \n* Utiliser des donn\u00e9es de g\u00e9olocalisation non-pr\u00e9cises d\u2019un utilisateur\n* Contr\u00f4ler la fr\u00e9quence de diffusion des publicit\u00e9s \u00e0 un utilisateur.\n* D\u00e9finir l\u2019ordre dans lequel les publicit\u00e9s sont pr\u00e9sent\u00e9es \u00e0 un utilisateur.\n* Emp\u00eacher une publicit\u00e9 de s\u2019afficher dans un contexte \u00e9ditorial inadapt\u00e9 (dangereux pour la marque)\nLes partenaires ne peuvent pas :\n* Cr\u00e9er un profil publicitaire personnalis\u00e9 \u00e0 l\u2019aide de ces informations pour la s\u00e9lection de publicit\u00e9s futures sans base l\u00e9gale distincte. \nN.B. \u00ab Non-pr\u00e9cises \u00bb signifie qu\u2019une g\u00e9olocalisation approximative dans un rayon d\u2019au moins 500 m\u00e8tres est autoris\u00e9e.\n"},"3":{"id":3,"name":"Cr\u00e9er un profil personnalis\u00e9 de publicit\u00e9s","description":"Un profil peut \u00eatre cr\u00e9\u00e9 sur vous et sur vos centres d\u2019int\u00e9r\u00eat pour vous pr\u00e9senter des publicit\u00e9s personnalis\u00e9es susceptibles de vous int\u00e9resser.","descriptionLegal":"Pour cr\u00e9er un profil de publicit\u00e9s personnalis\u00e9es, les partenaires peuvent :\n* Collecter des informations sur un utilisateur, notamment son activit\u00e9, ses centres d\u2019int\u00e9r\u00eat, les sites ou applications consult\u00e9s, les donn\u00e9es d\u00e9mographiques ou la g\u00e9olocalisation d\u2019un utilisateur, pour cr\u00e9er ou modifier un profil utilisateur \u00e0 utiliser dans des publicit\u00e9s personnalis\u00e9es.\n* Combiner ces informations avec d'autres informations pr\u00e9c\u00e9demment collect\u00e9es, y compris \u00e0 partir de sites Web et d'applications, pour cr\u00e9er ou modifier un profil d'utilisateur pour de la publicit\u00e9 personnalis\u00e9e."},"4":{"id":4,"name":"S\u00e9lectionner des publicit\u00e9s personnalis\u00e9es","description":"Des publicit\u00e9s personnalis\u00e9es peuvent vous \u00eatre pr\u00e9sent\u00e9es sur la base d\u2019un profil cr\u00e9\u00e9 sur vous.","descriptionLegal":"Pour s\u00e9lectionner des publicit\u00e9s personnalis\u00e9es, les partenaires peuvent :\n* S\u00e9lectionner des publicit\u00e9s personnalis\u00e9es sur la base d\u2019un profil utilisateur ou d\u2019autres donn\u00e9es d\u2019utilisateur historiques, y compris l\u2019activit\u00e9 pass\u00e9e d\u2019un utilisateur, ses centres d\u2019int\u00e9r\u00eat, les sites qu\u2019il a visit\u00e9s ou les applications qu\u2019il a utilis\u00e9es, sa localisation ou ses donn\u00e9es d\u00e9mographiques.\n"},"5":{"id":5,"name":"Cr\u00e9er un profil pour afficher un contenu personnalis\u00e9","description":"Un profil peut \u00eatre cr\u00e9\u00e9 sur vous et sur vos centres d\u2019int\u00e9r\u00eat afin de vous pr\u00e9senter du contenu personnalis\u00e9 susceptible de vous int\u00e9resser.","descriptionLegal":"Pour cr\u00e9er un profil pour afficher du contenu personnalis\u00e9, les partenaires peuvent :\n* Collecter des informations sur un utilisateur, y compris l\u2019activit\u00e9 d\u2019un utilisateur, ses centres d\u2019int\u00e9r\u00eat, les sites qu\u2019il a visit\u00e9s ou les applications qu\u2019il a utilis\u00e9es, ses donn\u00e9es d\u00e9mographiques ou sa localisation, pour cr\u00e9er ou modifier un profil utilisateur pour afficher du contenu personnalis\u00e9.\n* Combiner ces informations avec d'autres informations pr\u00e9c\u00e9demment collect\u00e9es, y compris \u00e0 partir de sites Web et d'applications, pour cr\u00e9er ou modifier un profil utilisateur \u00e0 utiliser dans la personnalisation du contenu."},"6":{"id":6,"name":"S\u00e9lectionner du contenu personnalis\u00e9","description":"Du contenu personnalis\u00e9 peut vous \u00eatre pr\u00e9sent\u00e9 sur la base de votre profil utilisateur.","descriptionLegal":"Pour s\u00e9lectionner du contenu personnalis\u00e9, les partenaires peuvent :\n* S\u00e9lectionner du contenu personnalis\u00e9 sur la base d\u2019un profil utilisateur induit des donn\u00e9es relatives \u00e0 son activit\u00e9 en ligne, ses centres d\u2019int\u00e9r\u00eat, les sites qu\u2019il a visit\u00e9s, les applications qu\u2019il a utilis\u00e9es, sa localisation ou ses donn\u00e9es socio-d\u00e9mographiques.\n"},"7":{"id":7,"name":"Mesurer la performance des publicit\u00e9s","description":"La performance et l\u2019efficacit\u00e9 des publicit\u00e9s que vous voyez ou avec lesquelles vous interagissez peuvent \u00eatre mesur\u00e9es.","descriptionLegal":"Pour mesurer la performance des publicit\u00e9s, les partenaires peuvent:\n* Mesurer si et comment des publicit\u00e9s ont \u00e9t\u00e9 pr\u00e9sent\u00e9e \u00e0 un utilisateur et comment celui-ci a interagi avec celles-ci\n* G\u00e9n\u00e9rer des rapports sur les publicit\u00e9s, notamment sur leur performance\n* G\u00e9n\u00e9rer des rapports sur les utilisateurs ayant interagi avec des publicit\u00e9s en utilisant des donn\u00e9es issues de cette interaction \n* Fournir des rapports aux \u00e9diteurs sur les publicit\u00e9s pr\u00e9sent\u00e9es/affich\u00e9es sur leurs propri\u00e9t\u00e9s num\u00e9riques \n* \u00c9valuer si une publicit\u00e9 diffus\u00e9e dans un contexte \u00e9ditorial appropri\u00e9 (conforme \u00e0 l\u2019image de la marque) sans danger pour la marque)\n* D\u00e9terminer le pourcentage du visionnage \u00e9ventuel de la publicit\u00e9 et sa dur\u00e9e \n* Combiner ces informations avec d\u2019autres informations collect\u00e9es au pr\u00e9alable, pouvant provenir de sites internet et applications\nLes partenaires ne peuvent pas: \n* Croiser des donn\u00e9es d\u2019audience, issues ou d\u00e9riv\u00e9es d\u2019un panel, avec des donn\u00e9es de mesure de performance, sans base l\u00e9gale pour titre \"Finalit\u00e9 9\". \n"},"8":{"id":8,"name":"Mesurer la performance du contenu","description":"La performance et l\u2019efficacit\u00e9 du contenu que vous voyez ou avec lequel vous interagissez peuvent \u00eatre mesur\u00e9es.","descriptionLegal":"Pour mesurer la performance du contenu, les partenaires peuvent:\n* Mesurer comment le contenu a \u00e9t\u00e9 diffus\u00e9 et comment les utilisateurs ont interagi avec, et g\u00e9n\u00e9rer des rapports.\n* G\u00e9n\u00e9rer des rapports \u00e0 l\u2019aide d\u2019informations directement mesurables ou connues, sur les utilisateurs qui ont interagi avec le contenu\nLes partenaires ne peuvent pas:\n* Mesurer si et comment des publicit\u00e9s (y compris des publicit\u00e9s natives) ont \u00e9t\u00e9 pr\u00e9sent\u00e9es \u00e0 un utilisateur et comment celui-ci a interagi avec, sans base l\u00e9gale distincte\n* Croiser des donn\u00e9es d\u2019audience, issues ou d\u00e9riv\u00e9es d\u2019un panel, avec des donn\u00e9es de mesure de performance, sans base l\u00e9gale pour titre \"Finalit\u00e9 9\u201d."},"9":{"id":9,"name":"Exploiter des \u00e9tudes de march\u00e9 afin de g\u00e9n\u00e9rer des donn\u00e9es d\u2019audience","description":"Les \u00e9tudes de march\u00e9 peuvent servir \u00e0 en apprendre davantage sur les audiences qui visitent des sites/utilisent des applications et voient des publicit\u00e9s.","descriptionLegal":"Pour utiliser des \u00e9tudes de march\u00e9 afin de g\u00e9n\u00e9rer des donn\u00e9es d\u2019audience, les partenaires peuvent:\n* Fournir des rapports agr\u00e9g\u00e9s aux annonceurs ou \u00e0 leurs repr\u00e9sentants sur les audiences expos\u00e9es \u00e0 leurs publicit\u00e9s, en utilisant des donn\u00e9es issues d\u2019un panel ou d\u2019un autre dispositif.\n* Fournir des rapports agr\u00e9g\u00e9s aux \u00e9diteurs sur les audiences expos\u00e9es \u00e0 des contenus et/ou des publicit\u00e9s ou qui ont interagi avec des contenus et/ou les publicit\u00e9s sur leurs sites, en utilisant des donn\u00e9es issues d\u2019un panel ou d\u2019un autre dispositif. \n* Combiner des donn\u00e9es hors ligne \u00e0 celles d\u2019un utilisateur en ligne dans le cadre d\u2019\u00e9tudes de march\u00e9 pour g\u00e9n\u00e9rer des donn\u00e9es d\u2019audience si les partenaires ont d\u00e9clar\u00e9 faire correspondre et associer des sources de donn\u00e9es hors ligne (Fonctionnalit\u00e9 1)\n* Texte dans la version anglaise : Combiner ces informations avec des donn\u00e9es d\u00e9j\u00e0 collect\u00e9es que ce soit sur le web ou via des applications. \nLes partenaires ne peuvent pas : \n* Mesurer la performance et l\u2019efficacit\u00e9 des publicit\u00e9s qui ont \u00e9t\u00e9 pr\u00e9sent\u00e9es \u00e0 un utilisateur en particulier, ou avec lesquelles il a interagi, sans s\u2019appuyer sur une base l\u00e9gale sp\u00e9cifique pour la mesure de la performance publicitaire.\n* \u00c9valuer le contenu qui a \u00e9t\u00e9 pr\u00e9sent\u00e9 \u00e0 un utilisateur en particulier et la fa\u00e7on dont ce dernier a r\u00e9agi sans s\u2019appuyer sur une base l\u00e9gale sp\u00e9cifique pour la mesure de la performance des contenus.\n"},"10":{"id":10,"name":"D\u00e9velopper et am\u00e9liorer les produits","description":"Vos donn\u00e9es peuvent \u00eatre utilis\u00e9es pour am\u00e9liorer les syst\u00e8mes et logiciels existants et pour d\u00e9velopper de nouveaux produits.","descriptionLegal":"Pour d\u00e9velopper de nouveaux produits et am\u00e9liorer des produits existants, les partenaires peuvent:\n* Utiliser des informations pour am\u00e9liorer leurs produits existants en y ajoutant de nouvelles fonctionnalit\u00e9s et pour d\u00e9velopper de nouveaux produits\n* Cr\u00e9er de nouveaux mod\u00e8les et algorithmes gr\u00e2ce au machine-learning \nLes partenaires ne peuvent pas:\n* Effectuer toute autre op\u00e9ration de traitement des donn\u00e9es autoris\u00e9e par une autre finalit\u00e9 dans le cadre de cette finalit\u00e9\n"}},"specialPurposes":{"1":{"id":1,"name":"Assurer la s\u00e9curit\u00e9, pr\u00e9venir la fraude et d\u00e9boguer","description":"Vos donn\u00e9es peuvent \u00eatre utilis\u00e9es pour surveiller et pr\u00e9venir les activit\u00e9s frauduleuses, et s\u2019assurer que les syst\u00e8mes et processus fonctionnent correctement et en toute s\u00e9curit\u00e9.","descriptionLegal":"Pour garantir la s\u00e9curit\u00e9, pr\u00e9venir la fraude et d\u00e9boguer, les partenaires peuvent:\n* Veiller \u00e0 ce que les donn\u00e9es soient transmises en toute s\u00e9curit\u00e9 \n* D\u00e9tecter et pr\u00e9venir les activit\u00e9s malveillantes, frauduleuses, inappropri\u00e9es ou ill\u00e9gales.\n* Assurer un fonctionnement correct et efficace des syst\u00e8mes et des processus, y compris surveiller et am\u00e9liorer la performance des syst\u00e8mes et processus utilis\u00e9s pour des finalit\u00e9s autoris\u00e9es\nLes partenaires ne peuvent pas:\n* Effectuer, au titre de cette finalit\u00e9, toute autre op\u00e9ration de traitement des donn\u00e9es autoris\u00e9e pour une finalit\u00e9 diff\u00e9rente .\nRemarque: Les donn\u00e9es collect\u00e9es et utilis\u00e9es pour assurer la s\u00e9curit\u00e9, pr\u00e9venir la fraude et d\u00e9boguer peuvent inclure des caract\u00e9ristiques d\u2019appareil envoy\u00e9es automatiquement \u00e0 des fins d'identification, des donn\u00e9es de g\u00e9olocalisation pr\u00e9cises et des donn\u00e9es obtenues par l\u2019analyse active des caract\u00e9ristiques de l\u2019appareil \u00e0 des fins d\u2019identification sans notification distincte et/ou opt-in distinct \n"},"2":{"id":2,"name":"Diffuser techniquement les publicit\u00e9s ou le contenu","description":"Votre terminal peut recevoir et envoyer des informations qui vous permettent de voir des publicit\u00e9s et du contenu et d\u2019interagir avec eux.","descriptionLegal":"Pour fournir des informations et r\u00e9pondre aux appels techniques, les partenaires peuvent:\n* Utiliser l\u2019adresse IP d\u2019un utilisateur pour diffuser une publicit\u00e9 sur Internet\n* R\u00e9agir \u00e0 l\u2019interaction d\u2019un utilisateur avec une publicit\u00e9 en dirigeant l\u2019utilisateur vers une page d\u2019accueil\n* Utiliser l\u2019adresse IP d\u2019un utilisateur pour diffuser du contenu sur Internet\n* R\u00e9agir \u00e0 l\u2019interaction d\u2019un utilisateur avec du contenu en dirigeant l\u2019utilisateur vers une page d\u2019accueil\n* Utiliser des informations sur le type de terminal et les capacit\u00e9s du terminal pour pr\u00e9senter des publicit\u00e9s ou du contenu, par exemple, pour pr\u00e9senter une publicit\u00e9 \u00e0 la bonne taille ou une vid\u00e9o dans un format pris en charge par le terminal \nLes partenaires ne peuvent pas:\n* Effectuer, au titre de cette finalit\u00e9, toute autre op\u00e9ration de traitement des donn\u00e9es autoris\u00e9e pour une finalit\u00e9 diff\u00e9rente \n"}},"features":{"1":{"id":1,"name":"Mettre en correspondance et combiner des sources de donn\u00e9es hors ligne","description":"Les donn\u00e9es issues de sources de donn\u00e9es hors ligne peuvent \u00eatre combin\u00e9es \u00e0 votre activit\u00e9 en ligne \u00e0 l\u2019appui d\u2019une ou de plusieurs finalit\u00e9s.","descriptionLegal":"Les partenaires peuvent : \n* Combiner des donn\u00e9es obtenues hors ligne avec des donn\u00e9es collect\u00e9es en ligne \u00e0 l\u2019appui d\u2019une ou de plusieurs Finalit\u00e9s ou Finalit\u00e9s sp\u00e9ciales.\n"},"2":{"id":2,"name":"Relier diff\u00e9rents terminaux","description":"Diff\u00e9rents terminaux peuvent \u00eatre identifi\u00e9s comme vous appartenant ou appartenant \u00e0 votre foyer \u00e0 l\u2019appui d\u2019une ou de plusieurs finalit\u00e9s","descriptionLegal":"Les partenaires peuvent :\n* D\u00e9terminer, selon une approche d\u00e9terministe, que deux terminaux ou plus appartiennent au m\u00eame utilisateur ou au m\u00eame foyer\n* D\u00e9terminer, selon une approche probabiliste, que deux terminaux ou plus appartiennent au m\u00eame utilisateur ou au m\u00eame foyer\n* Analyser activement les caract\u00e9ristiques du terminal pour l\u2019identification probabiliste si les utilisateurs ont autoris\u00e9 les partenaires \u00e0 analyser activement les caract\u00e9ristiques du terminal pour l\u2019identification (Fonctionnalit\u00e9 sp\u00e9ciale 2)\n"},"3":{"id":3,"name":"Recevoir et utiliser des caract\u00e9ristiques d\u2019identification d\u2019appareil envoy\u00e9es automatiquement","description":"Votre appareil peut \u00eatre distingu\u00e9 d\u2019autres appareils en fonction des informations qu\u2019il envoie automatiquement, telles que l\u2019adresse IP ou le type de navigateur.","descriptionLegal":"Les partenaires peuvent :\n* Cr\u00e9er un identifiant \u00e0 l\u2019aide des donn\u00e9es collect\u00e9es automatiquement \u00e0 partir d\u2019un appareil pour des caract\u00e9ristiques sp\u00e9cifiques ; par ex., adresse IP, cha\u00eene d\u2019agent utilisateur.\n* Utiliser cet identifiant pour r\u00e9identifier un appareil.\nLes partenaires ne peuvent pas :\n* Cr\u00e9er un identifiant \u00e0 l\u2019aide des donn\u00e9es collect\u00e9es via une analyse active d\u2019un terminal pour l\u2019identification de caract\u00e9ristiques sp\u00e9cifiques (par exemple, des polices install\u00e9es ou la r\u00e9solution d\u2019\u00e9cran) sans une adh\u00e9sion distincte de l\u2019utilisateur \u00e0 l\u2019analyse active des caract\u00e9ristiques de l\u2019appareil \u00e0 des fins d\u2019identification.\n* Utiliser cet identifiant pour r\u00e9-identifier un terminal.\n"}},"specialFeatures":{"1":{"id":1,"name":"Utiliser des donn\u00e9es de g\u00e9olocalisation pr\u00e9cises","description":"Vos donn\u00e9es de g\u00e9olocalisation pr\u00e9cises peuvent \u00eatre utilis\u00e9es \u00e0 l\u2019appui d\u2019une ou de plusieurs finalit\u00e9s. Cela signifie que votre localisation peut \u00eatre pr\u00e9cise \u00e0 plusieurs m\u00e8tres pr\u00e8s.","descriptionLegal":"Les partenaires peuvent :\n* Collecter et traiter des donn\u00e9es de g\u00e9olocalisation pr\u00e9cises \u00e0 l\u2019appui d\u2019une ou de plusieurs finalit\u00e9s.\nN.B. Une g\u00e9olocalisation pr\u00e9cise signifie qu\u2019il n\u2019y a aucune restriction \u00e0 la pr\u00e9cision de la localisation d\u2019un utilisateur ; elle peut \u00eatre pr\u00e9cise \u00e0 quelques m\u00e8tres pr\u00e8s.\n"},"2":{"id":2,"name":"Analyser activement les caract\u00e9ristiques du terminal pour l\u2019identification","description":"Votre terminal peut \u00eatre identifi\u00e9 sur la base d\u2019une analyse de la combinaison unique de caract\u00e9ristiques de votre terminal.","descriptionLegal":"Les partenaires peuvent :\n* Cr\u00e9er un identifiant \u00e0 l\u2019aide des donn\u00e9es collect\u00e9es via une analyse active d\u2019un terminal pour l\u2019identification de caract\u00e9ristiques sp\u00e9cifiques, par exemple des polices install\u00e9es ou la r\u00e9solution d\u2019\u00e9cran. \n* Utiliser cet identifiant pour r\u00e9-identifier un terminal.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Donn\u00e9es de g\u00e9olocalisation pr\u00e9cises et identification par analyse du terminal","description":"Des informations de g\u00e9olocalisation pr\u00e9cises et des informations sur les caract\u00e9ristiques de l\u2019appareil peuvent \u00eatre utilis\u00e9es."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Publicit\u00e9s standards et mesure de performance des publicit\u00e9s","description":"Des publicit\u00e9s standards peuvent \u00eatre diffus\u00e9es. La performance des publicit\u00e9s peut \u00eatre mesur\u00e9e."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Publicit\u00e9s personnalis\u00e9es","description":"Les publicit\u00e9s peuvent \u00eatre personnalis\u00e9es sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser les publicit\u00e9s."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Publicit\u00e9s standard, mesure de performance des publicit\u00e9s et donn\u00e9es d\u2019audience","description":"Des publicit\u00e9s standards peuvent \u00eatre diffus\u00e9es. La performance des publicit\u00e9s peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Publicit\u00e9s standards, profil de publicit\u00e9s personnalis\u00e9es et mesure de performance des publicit\u00e9s","description":"Des publicit\u00e9s standards peuvent \u00eatre diffus\u00e9es. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser les publicit\u00e9s. La performance des publicit\u00e9s peut \u00eatre mesur\u00e9e."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Affichage de publicit\u00e9s personnalis\u00e9es et mesure de performance des publicit\u00e9s","description":"Les publicit\u00e9s peuvent \u00eatre personnalis\u00e9es sur la base d\u2019un profil. La performance des publicit\u00e9s peut \u00eatre mesur\u00e9e."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Affichage de publicit\u00e9s personnalis\u00e9es, mesure de performance des publicit\u00e9s, et donn\u00e9es d\u2019audience","description":"Les publicit\u00e9s peuvent \u00eatre personnalis\u00e9es sur la base d\u2019un profil. La performance des publicit\u00e9s peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Publicit\u00e9s personnalis\u00e9es et mesure de performance des publicit\u00e9s","description":"Les publicit\u00e9s peuvent \u00eatre personnalis\u00e9es sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser les publicit\u00e9s. La performance des publicit\u00e9s peut \u00eatre mesur\u00e9e."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Publicit\u00e9s personnalis\u00e9es, mesure de performance des publicit\u00e9s, et donn\u00e9es d\u2019audience","description":"Les publicit\u00e9s peuvent \u00eatre personnalis\u00e9es sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser les publicit\u00e9s. La performance des publicit\u00e9s peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Profil de publicit\u00e9s personnalis\u00e9es et affichage","description":"Les publicit\u00e9s peuvent \u00eatre personnalis\u00e9es sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser les publicit\u00e9s."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Contenu personnalis\u00e9","description":"Le contenu peut \u00eatre personnalis\u00e9 sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser le contenu."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Affichage de contenu personnalis\u00e9 et mesure de performance du contenu","description":"Le contenu peut \u00eatre personnalis\u00e9 sur la base d\u2019un profil. La performance du contenu peut \u00eatre mesur\u00e9e."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Affichage de contenu personnalis\u00e9, mesure de performance du contenu et donn\u00e9es d\u2019audience","description":"Le contenu peut \u00eatre personnalis\u00e9 sur la base d\u2019un profil. La performance du contenu peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Contenu personnalis\u00e9 et mesure de performance du contenu","description":"Le contenu peut \u00eatre personnalis\u00e9 sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser le contenu. La performance du contenu peut \u00eatre mesur\u00e9e."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Contenu personnalis\u00e9, mesure de performance du contenu et donn\u00e9es d\u2019audience","description":"Le contenu peut \u00eatre personnalis\u00e9 sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser le contenu. La performance du contenu peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Contenu personnalis\u00e9, mesure de performance du contenu, donn\u00e9es d\u2019audience, et d\u00e9veloppement produit","description":"Le contenu peut \u00eatre personnalis\u00e9 sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser le contenu. La performance du contenu peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu. Les donn\u00e9es peuvent \u00eatre utilis\u00e9es pour cr\u00e9er ou am\u00e9liorer l\u2019exp\u00e9rience utilisateur, des syst\u00e8mes et logiciels"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Mesure de performance des publicit\u00e9s et du contenu et donn\u00e9es d\u2019audience","description":"La performance des publicit\u00e9s et du contenu peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Mesure de performance des publicit\u00e9s et du contenu","description":"La performance des publicit\u00e9s et du contenu peut \u00eatre mesur\u00e9e."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Mesure de performance des publicit\u00e9s et donn\u00e9es d\u2019audience","description":"La performance des publicit\u00e9s peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu"},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Mesure de performance des publicit\u00e9s et du contenu, donn\u00e9es d\u2019audience, et d\u00e9veloppement produit","description":"La performance des publicit\u00e9s et du contenu peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu. Les donn\u00e9es peuvent \u00eatre utilis\u00e9es pour cr\u00e9er ou am\u00e9liorer l\u2019exp\u00e9rience utilisateur, les syst\u00e8mes et les logiciels. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Mesure de performance du contenu, donn\u00e9es d\u2019audience, et d\u00e9veloppement produit","description":"La performance du contenu peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu. Les donn\u00e9es peuvent \u00eatre utilis\u00e9es pour cr\u00e9er ou am\u00e9liorer l\u2019exp\u00e9rience utilisateur, les syst\u00e8mes et les logiciels."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Mesure de performance du contenu, et d\u00e9veloppement produit","description":"La performance du contenu peut \u00eatre mesur\u00e9e. Les donn\u00e9es peuvent \u00eatre utilis\u00e9es pour cr\u00e9er ou am\u00e9liorer l\u2019exp\u00e9rience utilisateur, les syst\u00e8mes et les logiciels."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Affichage de publicit\u00e9s et de contenu personnalis\u00e9s, mesure de performance des publicit\u00e9s et du contenu","description":"Les publicit\u00e9s et le contenu peuvent \u00eatre personnalis\u00e9s sur la base d\u2019un profil. La performance des publicit\u00e9s et du contenu peut \u00eatre mesur\u00e9e."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Affichage de publicit\u00e9s et de contenu personnalis\u00e9s, mesure de performance des publicit\u00e9s et du contenu, et donn\u00e9es d\u2019audience","description":"Les publicit\u00e9s et le contenu peuvent \u00eatre personnalis\u00e9s sur la base d\u2019un profil. La performance des publicit\u00e9s et du contenu peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu. Les donn\u00e9es peuvent \u00eatre utilis\u00e9es pour cr\u00e9er ou am\u00e9liorer l\u2019exp\u00e9rience utilisateur, les syst\u00e8mes et les logiciels."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Publicit\u00e9s et contenu personnalis\u00e9s, mesure de performance des publicit\u00e9s et du contenu","description":"Les publicit\u00e9s et le contenu peuvent \u00eatre personnalis\u00e9s sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser les publicit\u00e9s et le contenu. La performance des publicit\u00e9s et du contenu peut \u00eatre mesur\u00e9e."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Publicit\u00e9s et contenu personnalis\u00e9s, mesure de performance des publicit\u00e9s et du contenu, et donn\u00e9es d\u2019audience","description":"Les publicit\u00e9s et le contenu peuvent \u00eatre personnalis\u00e9s sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser les publicit\u00e9s et le contenu. La performance des publicit\u00e9s et du contenu peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Publicit\u00e9s personnalis\u00e9es et profil de contenu","description":"Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour personnaliser les publicit\u00e9s et le contenu."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Affichage de publicit\u00e9s et de contenu personnalis\u00e9s","description":"Les publicit\u00e9s et le contenu peuvent \u00eatre personnalis\u00e9s sur la base d\u2019un profil."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Publicit\u00e9s standards, mesure de performance des publicit\u00e9s et du contenu, et donn\u00e9es d\u2019audience","description":"Des publicit\u00e9s standards peuvent \u00eatre diffus\u00e9es. La performance des publicit\u00e9s et du contenu peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Affichage de publicit\u00e9s personnalis\u00e9es, contenu personnalis\u00e9, mesure de performance des publicit\u00e9s et du contenu, et donn\u00e9es d\u2019audience","description":"Les publicit\u00e9s et le contenu peuvent \u00eatre personnalis\u00e9s sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser le contenu. La performance des publicit\u00e9s et du contenu peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Affichage de publicit\u00e9s personnalis\u00e9es, contenu personnalis\u00e9, mesure de performance des publicit\u00e9s et du contenu, donn\u00e9es d\u2019audience et d\u00e9veloppement de produit","description":"Les publicit\u00e9s et le contenu peuvent \u00eatre personnalis\u00e9s sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser le contenu. La performance des publicit\u00e9s et du contenu peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu. Les donn\u00e9es peuvent \u00eatre utilis\u00e9es pour cr\u00e9er ou am\u00e9liorer l\u2019exp\u00e9rience utilisateur, les syst\u00e8mes et les logiciels."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Publicit\u00e9s standards, contenu personnalis\u00e9, mesure de performance des publicit\u00e9s et du contenu, et donn\u00e9es d\u2019audience","description":"Des publicit\u00e9s standards peuvent \u00eatre diffus\u00e9es. Le contenu peut \u00eatre personnalis\u00e9 sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser le contenu. La performance des publicit\u00e9s et du contenu peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Publicit\u00e9s standards, contenu personnalis\u00e9, mesure de performance des publicit\u00e9s et du contenu, donn\u00e9es d\u2019audience, et d\u00e9veloppement produit","description":"Des publicit\u00e9s standards peuvent \u00eatre diffus\u00e9es. Le contenu peut \u00eatre personnalis\u00e9 sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser le contenu. La performance des publicit\u00e9s et du contenu peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu. Les donn\u00e9es peuvent \u00eatre utilis\u00e9es pour cr\u00e9er ou am\u00e9liorer l\u2019exp\u00e9rience utilisateur, les syst\u00e8mes et les logiciels."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Publicit\u00e9s standards, contenu personnalis\u00e9, mesure de performance du contenu, et donn\u00e9es d\u2019audience","description":"Des publicit\u00e9s standards peuvent \u00eatre diffus\u00e9es. Le contenu peut \u00eatre personnalis\u00e9 sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser le contenu. La performance des publicit\u00e9s et du contenu peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Publicit\u00e9s standards, contenu personnalis\u00e9, mesure de performance du contenu, donn\u00e9es d\u2019audience et d\u00e9veloppement de produit","description":"Des publicit\u00e9s standards peuvent \u00eatre diffus\u00e9es. Le contenu peut \u00eatre personnalis\u00e9 sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser le contenu. La performance du contenu peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les audiences qui ont vu les publicit\u00e9s et le contenu. Les donn\u00e9es peuvent \u00eatre utilis\u00e9es pour cr\u00e9er ou am\u00e9liorer l\u2019exp\u00e9rience utilisateur, les syst\u00e8mes et les logiciels."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Publicit\u00e9s standard, contenu personnalis\u00e9 et mesure de performance des publicit\u00e9s","description":"Des publicit\u00e9s standards peuvent \u00eatre diffus\u00e9es. Le contenu peut \u00eatre personnalis\u00e9 sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser le contenu. La performance des publicit\u00e9s peut \u00eatre mesur\u00e9e."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Publicit\u00e9s standards, contenu personnalis\u00e9, mesure de performance des publicit\u00e9s, et d\u00e9veloppement produit","description":"Des publicit\u00e9s standards peuvent \u00eatre diffus\u00e9es. Le contenu peut \u00eatre personnalis\u00e9 sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser le contenu. La performance des publicit\u00e9s peut \u00eatre mesur\u00e9e. Les donn\u00e9es peuvent \u00eatre utilis\u00e9es pour cr\u00e9er ou am\u00e9liorer l\u2019exp\u00e9rience utilisateur, les syst\u00e8mes et les logiciels."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Publicit\u00e9s personnalis\u00e9es, mesure de performance des publicit\u00e9s et d\u00e9veloppement de produit","description":"Les publicit\u00e9s peuvent \u00eatre personnalis\u00e9es sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser les publicit\u00e9s. La performance des publicit\u00e9s peut \u00eatre mesur\u00e9e. Les donn\u00e9es peuvent \u00eatre utilis\u00e9es pour cr\u00e9er ou am\u00e9liorer l\u2019exp\u00e9rience utilisateur, les syst\u00e8mes et les logiciels."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Publicit\u00e9s personnalis\u00e9es, mesure de performance des publicit\u00e9s, donn\u00e9es d\u2019audience et d\u00e9veloppement de produit","description":"Les publicit\u00e9s peuvent \u00eatre personnalis\u00e9es sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser les publicit\u00e9s. La performance des publicit\u00e9s peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les publics qui ont vu les publicit\u00e9s et le contenu. Les donn\u00e9es peuvent \u00eatre utilis\u00e9es pour cr\u00e9er ou am\u00e9liorer l\u2019exp\u00e9rience utilisateur, les syst\u00e8mes et les logiciels."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Publicit\u00e9s personnalis\u00e9es, mesure de performance des publicit\u00e9s et du contenu, donn\u00e9es d\u2019audience et d\u00e9veloppement de produit","description":"Les publicit\u00e9s peuvent \u00eatre personnalis\u00e9es sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser les publicit\u00e9s. La performance des publicit\u00e9s et du contenu peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les publics qui ont vu les publicit\u00e9s et le contenu. Les donn\u00e9es peuvent \u00eatre utilis\u00e9es pour cr\u00e9er ou am\u00e9liorer l\u2019exp\u00e9rience utilisateur, les syst\u00e8mes et les logiciels."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Publicit\u00e9s personnalis\u00e9es, affichage de contenu personnalis\u00e9, mesure de performance des publicit\u00e9s et du contenu, donn\u00e9es d\u2019audience et d\u00e9veloppement de produit","description":"Les publicit\u00e9s et le contenu peuvent \u00eatre personnalis\u00e9s sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser les publicit\u00e9s. La performance des publicit\u00e9s et du contenu peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les publics qui ont vu les publicit\u00e9s et le contenu. Les donn\u00e9es peuvent \u00eatre utilis\u00e9es pour cr\u00e9er ou am\u00e9liorer l\u2019exp\u00e9rience utilisateur, les syst\u00e8mes et les logiciels."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Publicit\u00e9s et contenu personnalis\u00e9s, mesure de performance des publicit\u00e9s et du contenu, donn\u00e9es d\u2019audience et d\u00e9veloppement de produit","description":"Les publicit\u00e9s et le contenu peuvent \u00eatre personnalis\u00e9s sur la base d\u2019un profil. Des donn\u00e9es suppl\u00e9mentaires peuvent \u00eatre ajout\u00e9es pour mieux personnaliser les publicit\u00e9s et le contenu. La performance des publicit\u00e9s et du contenu peut \u00eatre mesur\u00e9e. Des informations peuvent \u00eatre g\u00e9n\u00e9r\u00e9es sur les publics qui ont vu les publicit\u00e9s et le contenu. Les donn\u00e9es peuvent \u00eatre utilis\u00e9es pour cr\u00e9er ou am\u00e9liorer l\u2019exp\u00e9rience utilisateur, les syst\u00e8mes et les logiciels."}}} \ No newline at end of file diff --git a/src/s1/config/2.0/purposes/purposes-hr.json b/src/s1/config/2.0/purposes/purposes-hr.json index 15c1ae84..ded9f012 100644 --- a/src/s1/config/2.0/purposes/purposes-hr.json +++ b/src/s1/config/2.0/purposes/purposes-hr.json @@ -1 +1 @@ -{"vendorListVersion":79,"lastUpdated":"2021-02-25T16:36:18Z","purposes":{"1":{"id":1,"name":"Pohrana i/ili pristup informacijama na ure\u0111aju","description":"Kola\u010di\u0107i, identifikatori ure\u0111aja ili druge informacije mogu se pohraniti ili im pristupiti na va\u0161em ure\u0111aju u svrhe koje su vam prikazane.","descriptionLegal":"Dobavlja\u010di mogu:\n* pohraniti informacije i pristupiti im na ure\u0111aju, kao \u0161to su kola\u010di\u0107i i identifikatori ure\u0111aja koji se prikazuju korisniku.\n"},"2":{"id":2,"name":"Odabir osnovnih oglasa","description":"Oglasi se mogu prikazivati na temelju sadr\u017eaja koji pregledavate, aplikacije koju koristite, va\u0161e pribli\u017ene lokacije ili vrste ure\u0111aja.","descriptionLegal":"Kako bi napravili odabir osnovnih oglasa dobavlja\u010di mogu:\n* koristiti informacije u stvarnom vremenu o kontekstu u kojem \u0107e se oglas prikazivati za prikazivanje oglasa, uklju\u010duju\u0107i informacije o sadr\u017eaju i ure\u0111aju, kao \u0161to su: vrsta i mogu\u0107nosti ure\u0111aja, korisni\u010dki agent, URL, IP adresa \n* koristiti neprecizne geolokacijske podatke korisnika\n* kontrolirati u\u010destalost oglasa prikazanih korisniku.\n* odre\u0111ivati redoslijed u kojem se oglasi prikazuju korisniku.\n* sprje\u010davati oglas da se prikazuje u neodgovaraju\u0107em uredni\u010dkom (nesigurnom po brend) kontekstu\nDobavlja\u010di ne mogu:\n* kreirati profil personaliziranog oglasa pomo\u0107u tih podataka za odabir budu\u0107ih oglasa bez zasebne pravne osnove za kreiranje profila personaliziranog oglasa.\nNapomena: neprecizno zna\u010di samo pribli\u017ena lokacija koja uklju\u010duje najmanje dopu\u0161ten radijus od barem 500 metara.\n"},"3":{"id":3,"name":"Kreiranje profila personaliziranog oglasa","description":"Mo\u017ee se kreirati profil o vama i va\u0161im interesima za prikaz personaliziranih oglasa koji su relevantni za vas.","descriptionLegal":"Kako bi izradili profil personaliziranih oglasa, dobavlja\u010di mogu:\n\u2022 prikupiti informacije o korisniku, uklju\u010duju\u0107i aktivnost korisnika, interese, posjete web-mjestima ili aplikacijama, demografske informacije ili lokaciju radi kreiranja ili ure\u0111ivanja korisni\u010dkog profila za uporabu u personaliziranom ogla\u0161avanju.\n* Kombinirajte ove podatke s ostalim prethodno prikupljenim podacima, uklju\u010duju\u0107i s razli\u010ditih web lokacija i u aplikacijama, da biste stvorili ili uredili korisni\u010dki profil za upotrebu u personaliziranom ogla\u0161avanju."},"4":{"id":4,"name":"Odabir personaliziranih oglasa","description":"Personalizirani oglasi mogu vam se prikazati na temelju va\u0161eg profila.","descriptionLegal":"Za odabir personaliziranih oglasa dobavlja\u010di mogu:\n* odabrati personalizirane oglase na temelju korisni\u010dkog profila ili drugih povijesnih korisni\u010dkih podataka, uklju\u010duju\u0107i prethodnu aktivnost korisnika, interese, posjete web-lokacijama ili aplikacijama, lokacije ili demografske informacije.\n"},"5":{"id":5,"name":"Kreiranje profila personaliziranog sadr\u017eaja","description":"Mo\u017ee se kreirati profil o vama i va\u0161im interesima za prikaz personaliziranog sadr\u017eaja koji je relevantan za vas.","descriptionLegal":"Za kreiranje profila personaliziranog sadr\u017eaja dobavlja\u010di mogu:\n* prikupljati informacije o korisniku, uklju\u010duju\u0107i aktivnost korisnika, interese, posjete web-lokacijama ili aplikacijama, demografske informacije ili lokaciju, kreirati ili ure\u0111ivati korisni\u010dki profil za personalizaciju sadr\u017eaja.\n* Kombinirajte ove podatke s ostalim prethodno prikupljenim podacima, uklju\u010duju\u0107i s razli\u010ditih web lokacija i u aplikacijama, da biste stvorili ili uredili korisni\u010dki profil za upotrebu u personalizaciji sadr\u017eaja.\nOpen in Google Translate\t\nFeedback\n\n"},"6":{"id":6,"name":"Odabir personaliziranog sadr\u017eaja","description":"Personalizirani sadr\u017eaj mo\u017ee vam se prikazati na temelju va\u0161eg profila.","descriptionLegal":"Kako bi odabrali personalizirani sadr\u017eaj, dobavlja\u010di mogu:\n* odabrati personalizirani sadr\u017eaj na temelju korisni\u010dkog profila ili drugih povijesnih korisni\u010dkih podataka, uklju\u010duju\u0107i prethodnu aktivnost korisnika, interese, posjete web-lokacijama ili aplikacijama, lokacije ili demografske informacije.\n"},"7":{"id":7,"name":"Mjerenje performansi oglasa","description":"Mogu se mjeriti performanse i u\u010dinkovitost oglasa koje vi mo\u017eete vidjeti ili s kojima mo\u017eete imati interakciju.","descriptionLegal":"Kako bi izmjerili performanse oglasa, dobavlja\u010di mogu:\n* izmjeriti jesu li i kako su oglasi isporu\u010deni i povezani s korisnikom\n* pru\u017eati izvje\u0161\u0107a o oglasima, uklju\u010duju\u0107i njihovu u\u010dinkovitost i performanse\n* pru\u017eati izvje\u0161\u0107a o korisnicima koji su bili u interakciji s oglasima pomo\u0107u podataka uo\u010denih tijekom interakcije korisnika s tim oglasom\n* pru\u017eati izvje\u0161\u0107a izdava\u010dima o oglasima prikazanim na njihovoj imovini\n* izmjeriti ho\u0107e li oglas poslu\u017eiti u odgovaraju\u0107em (sigurnom po brend) kontekstu uredni\u010dkog okru\u017eenja\n* odrediti postotak oglasa za koji su imali priliku da ga pregledaju i trajanje te prilike \nDobavlja\u010di ne mogu:\n* primijeniti podatke o mjerenju oglasa na podatke iz panela ili na sli\u010dan na\u010din prikupljene podatke sa svrhom analize pona\u0161anja korisnike za izradu generalnog uvida u publiku bez pravne osnove da rade generalni uvid u publiku.\n"},"8":{"id":8,"name":"Mjerenje performansi sadr\u017eaja","description":"Mogu se mjeriti performanse i u\u010dinkovitost oglasa koje vi mo\u017eete vidjeti ili s kojima mo\u017eete imati interakciju.","descriptionLegal":"Za mjerenje performansi sadr\u017eaja dobavlja\u010di mogu:\n* izmjeriti i izvijestiti o tome kako je sadr\u017eaj dostavljen i koje su interakcije sa sadr\u017eajem.\n* pru\u017eati izvje\u0161\u0107a o korisnicima koji su imali interakciju sa sadr\u017eajem koriste\u0107i izravno mjerljive ili poznate informacije\nDobavlja\u010di ne mogu:\n* izmjeriti jesu li i kako su oglasi (uklju\u010duju\u0107i izvorne oglase) isporu\u010deni i koje su interakcije sa korisnikom.\n* Primijeniti podatke o mjerenju oglasa na podatke iz panela ili na sli\u010dan na\u010din prikupljene podatke sa svrhom analize pona\u0161anja korisnike za izradu generalnog uvida u publiku bez pravne osnove da rade generalni uvid u publiku.\n"},"9":{"id":9,"name":"Primjena istra\u017eivanja tr\u017ei\u0161ta za generiranje uvida u publiku","description":"Istra\u017eivanje tr\u017ei\u0161ta mo\u017ee se koristiti kako bi se saznalo vi\u0161e o publici koja posje\u0107uje web-mjesta/aplikacije i gleda oglase.","descriptionLegal":"Za primjenu istra\u017eivanja tr\u017ei\u0161ta za generiranje uvida u publiku dobavlja\u010di mogu:\n* dostaviti skupno izvje\u0161\u0107e ogla\u0161iva\u010dima ili njihovim predstavnicima o publici koja je obuhva\u0107ena njihovim oglasima, kroz panele i na sli\u010dan na\u010din izvedene uvide.\n* dostaviti skupno izvje\u0161\u0107e ogla\u0161iva\u010dima o publici kojoj su dostavljeni oglasi ili je imala interakciju s njima na njihovoj imovini, kroz panele i na sli\u010dan na\u010din izvedene uvide. \n* povezati izvanmre\u017ene podatke s mre\u017enim korisnikom u svrhu istra\u017eivanja tr\u017ei\u0161ta za generiranje uvida publike ako su dobavlja\u010di prijavili podudaranje i kombinirati izvanmre\u017ene izvore podataka (zna\u010dajka 1)\nDobavlja\u010di ne mogu: \n* izmjeriti performanse i u\u010dinkovitost oglasa koji su dostavljeni odre\u0111enom korisniku ili je imao interakciju s njima, bez pravne osnove za mjerenje performansi oglasa.\n* izmjeriti koji je sadr\u017eaj dostavljen odre\u0111enom korisniku i kakva je bila interakcija s njim, bez zasebne pravne osnove za mjerenje performansi sadr\u017eaja.\n"},"10":{"id":10,"name":"Razvoj i pobolj\u0161anje proizvoda","description":"Va\u0161i se podaci mogu koristiti za pobolj\u0161anje postoje\u0107ih sustava i softvera te za razvoj novih proizvoda.","descriptionLegal":"Za razvoj novih proizvoda i njihovo pobolj\u0161anje dobavlja\u010di mogu:\n* koristiti informacije kako bi pobolj\u0161ali svoje postoje\u0107e proizvode novim zna\u010dajkama i razvili nove proizvode\n* kreirati nove modele i algoritme kroz strojno u\u010denje\nDobavlja\u010di ne mogu:\n* provoditi bilo koju drugu vrstu obrade podataka koja je dopu\u0161tena u drugoj svrsi, a ne u ovoj\n"}},"specialPurposes":{"1":{"id":1,"name":"Pru\u017eanje sigurnosti, sprje\u010davanje prijevara i ispravljanje pogre\u0161aka","description":"Va\u0161i se podaci mogu koristiti za pra\u0107enje i sprje\u010davanje prijevarnih aktivnosti te osiguravanje pravilnog i sigurnog rada sustava i procesa.","descriptionLegal":"Kako bi pru\u017eili sigurnost, sprije\u010dili prijevaru i ispravljali pogre\u0161ke dobavlja\u010di mogu:\n* osigurati da se podaci sigurno prenose \n* otkrivati i sprje\u010davati zlonamjerne, la\u017ene, neva\u017ee\u0107e ili nezakonite aktivnosti.\n* osigurati ispravno i u\u010dinkovito funkcioniranje sustava i procesa, uklju\u010duju\u0107i pra\u0107enje i pobolj\u0161anje performansi sustava i postupaka u dopu\u0161tenim svrhama\nDobavlja\u010di ne mogu:\n* Provoditi bilo koju drugu vrstu obrade podataka koja je dopu\u0161tena u drugoj svrsi, a ne u ovoj.\nNapomena: podaci prikupljeni i kori\u0161teni za osiguravanje sigurnosti, sprje\u010davanje prijevara i ispravljanje pogre\u0161aka mogu uklju\u010divati automatski poslane karakteristike ure\u0111aja za identifikaciju, precizne podatke o geolokaciji i podatke dobivene aktivnim skeniranjem karakteristika ure\u0111aja za identifikaciju bez odvojenog otkrivanja i/ili prijave.\n"},"2":{"id":2,"name":"Tehni\u010dka isporuka oglasa ili sadr\u017eaja","description":"Va\u0161 ure\u0111aj mo\u017ee primati i slati informacije koje vam omogu\u0107uju da vidite oglase i sadr\u017eaj te da imate interakciju s njima.","descriptionLegal":"Kako bi dostavili informacije i odgovorili na tehni\u010dke zahtjeve, dobavlja\u010di mogu:\n* koristiti IP adresu korisnika za isporuku oglasa putem interneta\n* odgovarati na korisnikovu interakciju s oglasom slanjem korisnika na odredi\u0161nu stranicu\n* koristiti IP adresu korisnika za isporuku sadr\u017eaja putem interneta\n* odgovarati na korisnikovu interakciju sa sadr\u017eajem slanjem korisnika na odredi\u0161nu stranicu\n* koristiti informacije o vrsti i mogu\u0107nostima ure\u0111aja za isporuku oglasa ili sadr\u017eaja, primjerice, za isporuku prave veli\u010dine oglasa kreativne ili video datoteke u formatu koji podr\u017eava ure\u0111aj\nDobavlja\u010di ne mogu:\n* provoditi bilo koju drugu vrstu obrade podataka koja je dopu\u0161tena u drugoj svrsi, a ne u ovoj\n"}},"features":{"1":{"id":1,"name":"Uskla\u0111ivati i kombinirati izvanmre\u017ene izvore podataka","description":"Podaci iz izvanmre\u017enih izvora podataka mogu se kombinirati s va\u0161om mre\u017enom aktivno\u0161\u0107u kao podr\u0161ka jednoj ili vi\u0161e svrha.","descriptionLegal":"Dobavlja\u010di mogu: \n* kombinirati podatke dobivene izvanmre\u017eno s podacima prikupljenim putem interneta kao podr\u0161ka jednoj ili vi\u0161e svrha ili posebnih svrha.\n"},"2":{"id":2,"name":"Povezivanje razli\u010ditih ure\u0111aja","description":"Razli\u010diti ure\u0111aji mogu se odrediti kao pripadaju\u0107i vama ili va\u0161em ku\u0107anstvu kao podr\u0161ka jednoj ili vi\u0161e svrha.","descriptionLegal":"Dobavlja\u010di mogu:\n* deterministi\u010dki odrediti da dva ili vi\u0161e ure\u0111aja pripadaju istom korisniku ili ku\u0107anstvu\n* probabilisti\u010dki utvrditi da dva ili vi\u0161e ure\u0111aja pripadaju istom korisniku ili ku\u0107anstvu \n* aktivno skenirati karakteristike ure\u0111aja za utvr\u0111ivanje probabilisti\u010dke identifikacije ako su korisnici dopustili dobavlja\u010dima da aktivno skeniraju karakteristike ure\u0111aja za identifikaciju (posebna zna\u010dajka broj 2)\n"},"3":{"id":3,"name":"Primanje i uporaba automatski poslanih karakteristika ure\u0111aja za identifikaciju","description":"Va\u0161 se ure\u0111aj mo\u017ee razlikovati od drugih ure\u0111aja na temelju informacija koje automatski \u0161alje, kao \u0161to su IP adresa ili vrsta preglednika.","descriptionLegal":"Dobavlja\u010di mogu:\n* kreirati identifikator pomo\u0107u podataka prikupljenih automatski s ure\u0111aja za odre\u0111ene karakteristike, primjerice IP adrese, niz korisni\u010dkih nizova.\n* Koristiti takav identifikator da bi ponovno identificirali ure\u0111aj.\nDobavlja\u010di ne mogu:\n* kreirati identifikator pomo\u0107u podataka prikupljenih putem aktivnog skeniranja ure\u0111aja za odre\u0111ene karakteristike, npr. instalirani fontovi ili razlu\u010divost zaslona bez posebne prijave korisnika radi aktivnog skeniranja karakteristika ure\u0111aja radi identifikacije.\n* Koristiti takav identifikator da bi ponovno identificirali ure\u0111aj.\n"}},"specialFeatures":{"1":{"id":1,"name":"Uporaba preciznih podataka o geolokaciji","description":"Va\u0161i se precizni podaci o geolokaciji mogu koristiti kao podr\u0161ka jednoj ili vi\u0161e svrha. To zna\u010di da va\u0161a lokacija mo\u017ee biti to\u010dna u opsegu od nekoliko metara.","descriptionLegal":"Dobavlja\u010di mogu:\n* prikupiti i obraditi precizne geolokacijske podatke kao podr\u0161ku jednoj ili vi\u0161e svrha.\nNapomena: precizna geolokacija zna\u010di da nema ograni\u010denja preciznosti korisnikove lokacije; to mo\u017ee biti precizno u opsegu od nekoliko metara.\n"},"2":{"id":2,"name":"Aktivno skeniranje karakteristika ure\u0111aja za identifikaciju","description":"Va\u0161 se ure\u0111aj mo\u017ee identificirati na temelju skeniranja jedinstvene kombinacije karakteristika va\u0161eg ure\u0111aja.","descriptionLegal":"Dobavlja\u010di mogu:\n* kreirati identifikator pomo\u0107u podataka prikupljenih putem aktivnog skeniranja ure\u0111aja za odre\u0111ene karakteristike, npr. instalirani fontovi ili razlu\u010divost zaslona. \n* koristiti takav identifikator da bi ponovno identificirali ure\u0111aj.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Precizni geolokacijski podaci i identifikacija putem skeniranja ure\u0111aja","description":"Precizna geolokacija i informacije o karakteristikama ure\u0111aja mogu se koristiti."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Osnovni oglasi i mjerenje oglasa","description":"Osnovni oglasi mogu se pru\u017eati. Performanse oglasa mogu se mjeriti."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Personalizirani oglasi","description":"Oglasi se mogu personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se oglasi bolje personalizirali."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Osnovni oglasi i mjerenje oglasa","description":"Osnovni oglasi mogu se pru\u017eati. Performanse oglasa mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Osnovni oglasi, profil personaliziranih oglasa i mjerenje oglasa","description":"Osnovni oglasi mogu se pru\u017eati. Mo\u017ee se dodati vi\u0161e podataka kako bi se oglasi bolje personalizirali. Performanse oglasa mogu se mjeriti."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Prikaz personaliziranih oglasa i mjerenje","description":"Oglasi se mogu personalizirati na temelju profila. Performanse oglasa mogu se mjeriti."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Prikaz personaliziranih oglasa, mjerenje oglasa i uvidi u publiku","description":"Oglasi se mogu personalizirati na temelju profila. Performanse oglasa mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Personalizirani oglasi i mjerenje oglasa","description":"Oglasi se mogu personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se oglasi bolje personalizirali. Performanse oglasa mogu se mjeriti."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Personalizirani oglasi, mjerenje oglasa i uvidi u publiku","description":"Oglasi se mogu personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se oglasi bolje personalizirali. Performanse oglasa mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Profil i prikaz personaliziranih oglasa","description":"Oglasi se mogu personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se oglasi bolje personalizirali."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Personalizirani sadr\u017eaj","description":"Sadr\u017eaj se mo\u017ee personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se sadr\u017eaj bolje personalizirao."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Prikaz i mjerenje personaliziranog sadr\u017eaja","description":"Sadr\u017eaj se mo\u017ee personalizirati na temelju profila. Performanse sadr\u017eaja mogu se mjeriti."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Prikaz personaliziranog sadr\u017eaja, mjerenje sadr\u017eaja i uvidi u publiku","description":"Sadr\u017eaj se mo\u017ee personalizirati na temelju profila. Performanse sadr\u017eaja mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Personalizirani sadr\u017eaj i mjerenje sadr\u017eaja","description":"Sadr\u017eaj se mo\u017ee personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se sadr\u017eaj bolje personalizirao. Performanse sadr\u017eaja mogu se mjeriti."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Personalizirani sadr\u017eaj, mjerenje sadr\u017eaja i uvidi u publiku","description":"Sadr\u017eaj se mo\u017ee personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se sadr\u017eaj bolje personalizirao. Performanse sadr\u017eaja mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Personalizirani sadr\u017eaj, mjerenje sadr\u017eaja, uvidi u publiku i razvoj proizvoda","description":"Sadr\u017eaj se mo\u017ee personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se sadr\u017eaj bolje personalizirao. Performanse sadr\u017eaja mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti. Podaci se mogu koristiti za izgradnju ili pobolj\u0161anje korisni\u010dkog iskustva, sustava i softvera."},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Mjerenje oglasa i sadr\u017eaja te uvidi u publiku","description":"Performanse oglasa i sadr\u017eaja mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Mjerenje oglasa i sadr\u017eaja","description":"Performanse oglasa i sadr\u017eaja mogu se mjeriti."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Mjerenje oglasa i uvidi u publiku","description":"Oglas se mo\u017ee mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Mjerenje oglasa i sadr\u017eaja, uvidi u publiku i razvoj proizvoda","description":"Performanse oglasa i sadr\u017eaja mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti. Podaci se mogu koristiti za izgradnju ili pobolj\u0161anje korisni\u010dkog iskustva, sustava i softvera.Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Mjerenje sadr\u017eaja, uvidi u publiku i razvoj proizvoda.","description":"Performanse sadr\u017eaja mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti. Podaci se mogu koristiti za izgradnju ili pobolj\u0161anje korisni\u010dkog iskustva, sustava i softvera."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Mjerenje sadr\u017eaja i razvoj proizvoda","description":"Performanse sadr\u017eaja mogu se mjeriti. Podaci se mogu koristiti za izgradnju ili pobolj\u0161anje korisni\u010dkog iskustva, sustava i softvera."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Prikaz personaliziranih oglasa i sadr\u017eaja, mjerenje oglasa i sadr\u017eaja","description":"Oglasi i sadr\u017eaj mogu se personalizirati na temelju profila. Performanse oglasa i sadr\u017eaja mogu se mjeriti."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Prikaz personaliziranih oglasa i sadr\u017eaja, mjerenje oglasa i sadr\u017eaja te uvidi u publiku","description":"Oglasi i sadr\u017eaj mogu se personalizirati na temelju profila. Performanse oglasa i sadr\u017eaja mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti. Podaci se mogu koristiti za izgradnju ili pobolj\u0161anje korisni\u010dkog iskustva, sustava i softvera."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Personalizirani oglasi i sadr\u017eaj, mjerenje oglasa i sadr\u017eaja","description":"Oglasi i sadr\u017eaj mogu se personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se oglasi i sadr\u017eaj bolje personalizirali. Performanse oglasa i sadr\u017eaja mogu se mjeriti."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Personalizirani oglasi i sadr\u017eaj, mjerenje oglasa i sadr\u017eaja te uvidi u publiku","description":"Oglasi i sadr\u017eaj mogu se personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se oglasi i sadr\u017eaj bolje personalizirali. Performanse oglasa i sadr\u017eaja mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Profil personaliziranih oglasa i sadr\u017eaja","description":"Mo\u017ee se dodati vi\u0161e podataka kako bi se personalizirali oglasi i sadr\u017eaj."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Prikaz personaliziranih oglasa i sadr\u017eaja","description":"Oglasi i sadr\u017eaj mogu se personalizirati na temelju profila."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Osnovni oglasi, mjerenje oglasa i sadr\u017eaja te uvidi u publiku","description":"Osnovni oglasi mogu se pru\u017eati. Performanse oglasa i sadr\u017eaja mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Prikaz personaliziranih oglasa, personaliziranog sadr\u017eaja, mjerenje oglasa i sadr\u017eaja te uvidi u publiku","description":"Oglasi i sadr\u017eaj mogu se personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se sadr\u017eaj bolje personalizirao. Performanse oglasa i sadr\u017eaja mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Prikaz personaliziranih oglasa, personaliziranog sadr\u017eaja, mjerenje oglasa i sadr\u017eaja, uvidi u publiku i razvoj proizvoda","description":"Oglasi i sadr\u017eaj mogu se personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se sadr\u017eaj bolje personalizirao. Performanse oglasa i sadr\u017eaja mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti. Podaci se mogu koristiti za izgradnju ili pobolj\u0161anje korisni\u010dkog iskustva, sustava i softvera."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Osnovni oglasi, personalizirani sadr\u017eaj, mjerenje oglasa i sadr\u017eaja te uvidi u publiku","description":"Osnovni oglasi mogu se pru\u017eati. Sadr\u017eaj se mo\u017ee personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se sadr\u017eaj bolje personalizirao. Performanse oglasa i sadr\u017eaja mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Osnovni oglasi, personalizirani sadr\u017eaj, mjerenje oglasa i sadr\u017eaja, uvidi u publiku i razvoj proizvoda","description":"Osnovni oglasi mogu se pru\u017eati. Sadr\u017eaj se mo\u017ee personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se sadr\u017eaj bolje personalizirao. Performanse oglasa i sadr\u017eaja mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti. Podaci se mogu koristiti za izgradnju ili pobolj\u0161anje korisni\u010dkog iskustva, sustava i softvera."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Osnovni oglasi, personalizirani sadr\u017eaj, mjerenje sadr\u017eaja i uvidi u publiku","description":"Osnovni oglasi mogu se pru\u017eati. Sadr\u017eaj se mo\u017ee personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se sadr\u017eaj bolje personalizirao. Performanse oglasa i sadr\u017eaja mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Osnovni oglasi, personalizirani sadr\u017eaj, mjerenje sadr\u017eaja, uvidi u publiku i razvoj proizvoda","description":"Osnovni oglasi mogu se pru\u017eati. Sadr\u017eaj se mo\u017ee personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se sadr\u017eaj bolje personalizirao. Performanse sadr\u017eaja mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti. Podaci se mogu koristiti za izgradnju ili pobolj\u0161anje korisni\u010dkog iskustva, sustava i softvera."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Osnovni oglasi, personalizirani sadr\u017eaj i mjerenje oglasa","description":"Osnovni oglasi mogu se pru\u017eati. Sadr\u017eaj se mo\u017ee personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se sadr\u017eaj bolje personalizirao. Performanse oglasa mogu se mjeriti."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Osnovni oglasi, personalizirani sadr\u017eaj, mjerenje oglasa i razvoj proizvoda","description":"Osnovni oglasi mogu se pru\u017eati. Sadr\u017eaj se mo\u017ee personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se sadr\u017eaj bolje personalizirao. Performanse oglasa mogu se mjeriti. Podaci se mogu koristiti za izgradnju ili pobolj\u0161anje korisni\u010dkog iskustva, sustava i softvera."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Personalizirani oglasi, mjerenje oglasa i razvoj proizvoda","description":"Oglasi se mogu personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se oglasi bolje personalizirali. Performanse oglasa mogu se mjeriti. Podaci se mogu koristiti za izgradnju ili pobolj\u0161anje korisni\u010dkog iskustva, sustava i softvera."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Personalizirani oglasi, mjerenje oglasa, uvidi u publiku i razvoj proizvoda","description":"Oglasi se mogu personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se oglasi bolje personalizirali. Performanse oglasa mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti. Podaci se mogu koristiti za izgradnju ili pobolj\u0161anje korisni\u010dkog iskustva, sustava i softvera."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Personalizirani oglasi, mjerenje oglasa i sadr\u017eaja, uvidi u publiku i razvoj proizvoda","description":"Oglasi se mogu personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se oglasi bolje personalizirali. Performanse oglasa i sadr\u017eaja mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti. Podaci se mogu koristiti za izgradnju ili pobolj\u0161anje korisni\u010dkog iskustva, sustava i softvera."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Personalizirani oglasi, personalizirani prikaz sadr\u017eaja, mjerenje oglasa i sadr\u017eaja, uvidi u publiku i razvoj proizvoda","description":"Oglasi i sadr\u017eaj mogu se personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se oglasi bolje personalizirali. Performanse oglasa i sadr\u017eaja mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti. Podaci se mogu koristiti za izgradnju ili pobolj\u0161anje korisni\u010dkog iskustva, sustava i softvera."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Personalizirani oglasi i sadr\u017eaj, mjerenje oglasa i sadr\u017eaja, uvidi u publiku i razvoj proizvoda","description":"Oglasi i sadr\u017eaj mogu se personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se oglasi i sadr\u017eaj bolje personalizirali. Performanse oglasa i sadr\u017eaja mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti. Podaci se mogu koristiti za izgradnju ili pobolj\u0161anje korisni\u010dkog iskustva, sustava i softvera."}}} \ No newline at end of file +{"vendorListVersion":94,"lastUpdated":"2021-06-10T16:43:58Z","purposes":{"1":{"id":1,"name":"Pohrana i/ili pristup informacijama na ure\u0111aju","description":"Kola\u010di\u0107i, identifikatori ure\u0111aja ili druge informacije mogu se pohraniti ili im pristupiti na va\u0161em ure\u0111aju u svrhe koje su vam prikazane.","descriptionLegal":"Dobavlja\u010di mogu:\n* pohraniti informacije i pristupiti im na ure\u0111aju, kao \u0161to su kola\u010di\u0107i i identifikatori ure\u0111aja koji se prikazuju korisniku.\n"},"2":{"id":2,"name":"Odabir osnovnih oglasa","description":"Oglasi se mogu prikazivati na temelju sadr\u017eaja koji pregledavate, aplikacije koju koristite, va\u0161e pribli\u017ene lokacije ili vrste ure\u0111aja.","descriptionLegal":"Kako bi napravili odabir osnovnih oglasa dobavlja\u010di mogu:\n* koristiti informacije u stvarnom vremenu o kontekstu u kojem \u0107e se oglas prikazivati za prikazivanje oglasa, uklju\u010duju\u0107i informacije o sadr\u017eaju i ure\u0111aju, kao \u0161to su: vrsta i mogu\u0107nosti ure\u0111aja, korisni\u010dki agent, URL, IP adresa \n* koristiti neprecizne geolokacijske podatke korisnika\n* kontrolirati u\u010destalost oglasa prikazanih korisniku.\n* odre\u0111ivati redoslijed u kojem se oglasi prikazuju korisniku.\n* sprje\u010davati oglas da se prikazuje u neodgovaraju\u0107em uredni\u010dkom (nesigurnom po brend) kontekstu\nDobavlja\u010di ne mogu:\n* kreirati profil personaliziranog oglasa pomo\u0107u tih podataka za odabir budu\u0107ih oglasa bez zasebne pravne osnove za kreiranje profila personaliziranog oglasa.\nNapomena: neprecizno zna\u010di samo pribli\u017ena lokacija koja uklju\u010duje najmanje dopu\u0161ten radijus od barem 500 metara.\n"},"3":{"id":3,"name":"Kreiranje profila personaliziranog oglasa","description":"Mo\u017ee se kreirati profil o vama i va\u0161im interesima za prikaz personaliziranih oglasa koji su relevantni za vas.","descriptionLegal":"Kako bi izradili profil personaliziranih oglasa, dobavlja\u010di mogu:\n\u2022 prikupiti informacije o korisniku, uklju\u010duju\u0107i aktivnost korisnika, interese, posjete web-mjestima ili aplikacijama, demografske informacije ili lokaciju radi kreiranja ili ure\u0111ivanja korisni\u010dkog profila za uporabu u personaliziranom ogla\u0161avanju.\n* Kombinirajte ove podatke s ostalim prethodno prikupljenim podacima, uklju\u010duju\u0107i s razli\u010ditih web lokacija i u aplikacijama, da biste stvorili ili uredili korisni\u010dki profil za upotrebu u personaliziranom ogla\u0161avanju."},"4":{"id":4,"name":"Odabir personaliziranih oglasa","description":"Personalizirani oglasi mogu vam se prikazati na temelju va\u0161eg profila.","descriptionLegal":"Za odabir personaliziranih oglasa dobavlja\u010di mogu:\n* odabrati personalizirane oglase na temelju korisni\u010dkog profila ili drugih povijesnih korisni\u010dkih podataka, uklju\u010duju\u0107i prethodnu aktivnost korisnika, interese, posjete web-lokacijama ili aplikacijama, lokacije ili demografske informacije.\n"},"5":{"id":5,"name":"Kreiranje profila personaliziranog sadr\u017eaja","description":"Mo\u017ee se kreirati profil o vama i va\u0161im interesima za prikaz personaliziranog sadr\u017eaja koji je relevantan za vas.","descriptionLegal":"Za kreiranje profila personaliziranog sadr\u017eaja dobavlja\u010di mogu:\n* prikupljati informacije o korisniku, uklju\u010duju\u0107i aktivnost korisnika, interese, posjete web-lokacijama ili aplikacijama, demografske informacije ili lokaciju, kreirati ili ure\u0111ivati korisni\u010dki profil za personalizaciju sadr\u017eaja.\n* Kombinirajte ove podatke s ostalim prethodno prikupljenim podacima, uklju\u010duju\u0107i s razli\u010ditih web lokacija i u aplikacijama, da biste stvorili ili uredili korisni\u010dki profil za upotrebu u personalizaciji sadr\u017eaja.\nOpen in Google Translate\t\nFeedback\n\n"},"6":{"id":6,"name":"Odabir personaliziranog sadr\u017eaja","description":"Personalizirani sadr\u017eaj mo\u017ee vam se prikazati na temelju va\u0161eg profila.","descriptionLegal":"Kako bi odabrali personalizirani sadr\u017eaj, dobavlja\u010di mogu:\n* odabrati personalizirani sadr\u017eaj na temelju korisni\u010dkog profila ili drugih povijesnih korisni\u010dkih podataka, uklju\u010duju\u0107i prethodnu aktivnost korisnika, interese, posjete web-lokacijama ili aplikacijama, lokacije ili demografske informacije.\n"},"7":{"id":7,"name":"Mjerenje performansi oglasa","description":"Mogu se mjeriti performanse i u\u010dinkovitost oglasa koje vi mo\u017eete vidjeti ili s kojima mo\u017eete imati interakciju.","descriptionLegal":"Kako bi izmjerili performanse oglasa, dobavlja\u010di mogu:\n* izmjeriti jesu li i kako su oglasi isporu\u010deni i povezani s korisnikom\n* pru\u017eati izvje\u0161\u0107a o oglasima, uklju\u010duju\u0107i njihovu u\u010dinkovitost i performanse\n* pru\u017eati izvje\u0161\u0107a o korisnicima koji su bili u interakciji s oglasima pomo\u0107u podataka uo\u010denih tijekom interakcije korisnika s tim oglasom\n* pru\u017eati izvje\u0161\u0107a izdava\u010dima o oglasima prikazanim na njihovoj imovini\n* izmjeriti ho\u0107e li oglas poslu\u017eiti u odgovaraju\u0107em (sigurnom po brend) kontekstu uredni\u010dkog okru\u017eenja\n* odrediti postotak oglasa za koji su imali priliku da ga pregledaju i trajanje te prilike \nDobavlja\u010di ne mogu:\n* primijeniti podatke o mjerenju oglasa na podatke iz panela ili na sli\u010dan na\u010din prikupljene podatke sa svrhom analize pona\u0161anja korisnike za izradu generalnog uvida u publiku bez pravne osnove da rade generalni uvid u publiku.\n"},"8":{"id":8,"name":"Mjerenje performansi sadr\u017eaja","description":"Mogu se mjeriti performanse i u\u010dinkovitost oglasa koje vi mo\u017eete vidjeti ili s kojima mo\u017eete imati interakciju.","descriptionLegal":"Za mjerenje performansi sadr\u017eaja dobavlja\u010di mogu:\n* izmjeriti i izvijestiti o tome kako je sadr\u017eaj dostavljen i koje su interakcije sa sadr\u017eajem.\n* pru\u017eati izvje\u0161\u0107a o korisnicima koji su imali interakciju sa sadr\u017eajem koriste\u0107i izravno mjerljive ili poznate informacije\nDobavlja\u010di ne mogu:\n* izmjeriti jesu li i kako su oglasi (uklju\u010duju\u0107i izvorne oglase) isporu\u010deni i koje su interakcije sa korisnikom.\n* Primijeniti podatke o mjerenju oglasa na podatke iz panela ili na sli\u010dan na\u010din prikupljene podatke sa svrhom analize pona\u0161anja korisnike za izradu generalnog uvida u publiku bez pravne osnove da rade generalni uvid u publiku.\n"},"9":{"id":9,"name":"Primjena istra\u017eivanja tr\u017ei\u0161ta za generiranje uvida u publiku","description":"Istra\u017eivanje tr\u017ei\u0161ta mo\u017ee se koristiti kako bi se saznalo vi\u0161e o publici koja posje\u0107uje web-mjesta/aplikacije i gleda oglase.","descriptionLegal":"Za primjenu istra\u017eivanja tr\u017ei\u0161ta za generiranje uvida u publiku dobavlja\u010di mogu:\n* dostaviti skupno izvje\u0161\u0107e ogla\u0161iva\u010dima ili njihovim predstavnicima o publici koja je obuhva\u0107ena njihovim oglasima, kroz panele i na sli\u010dan na\u010din izvedene uvide.\n* dostaviti skupno izvje\u0161\u0107e ogla\u0161iva\u010dima o publici kojoj su dostavljeni oglasi ili je imala interakciju s njima na njihovoj imovini, kroz panele i na sli\u010dan na\u010din izvedene uvide. \n* povezati izvanmre\u017ene podatke s mre\u017enim korisnikom u svrhu istra\u017eivanja tr\u017ei\u0161ta za generiranje uvida publike ako su dobavlja\u010di prijavili podudaranje i kombinirati izvanmre\u017ene izvore podataka (zna\u010dajka 1)\nDobavlja\u010di ne mogu: \n* izmjeriti performanse i u\u010dinkovitost oglasa koji su dostavljeni odre\u0111enom korisniku ili je imao interakciju s njima, bez pravne osnove za mjerenje performansi oglasa.\n* izmjeriti koji je sadr\u017eaj dostavljen odre\u0111enom korisniku i kakva je bila interakcija s njim, bez zasebne pravne osnove za mjerenje performansi sadr\u017eaja.\n"},"10":{"id":10,"name":"Razvoj i pobolj\u0161anje proizvoda","description":"Va\u0161i se podaci mogu koristiti za pobolj\u0161anje postoje\u0107ih sustava i softvera te za razvoj novih proizvoda.","descriptionLegal":"Za razvoj novih proizvoda i njihovo pobolj\u0161anje dobavlja\u010di mogu:\n* koristiti informacije kako bi pobolj\u0161ali svoje postoje\u0107e proizvode novim zna\u010dajkama i razvili nove proizvode\n* kreirati nove modele i algoritme kroz strojno u\u010denje\nDobavlja\u010di ne mogu:\n* provoditi bilo koju drugu vrstu obrade podataka koja je dopu\u0161tena u drugoj svrsi, a ne u ovoj\n"}},"specialPurposes":{"1":{"id":1,"name":"Pru\u017eanje sigurnosti, sprje\u010davanje prijevara i ispravljanje pogre\u0161aka","description":"Va\u0161i se podaci mogu koristiti za pra\u0107enje i sprje\u010davanje prijevarnih aktivnosti te osiguravanje pravilnog i sigurnog rada sustava i procesa.","descriptionLegal":"Kako bi pru\u017eili sigurnost, sprije\u010dili prijevaru i ispravljali pogre\u0161ke dobavlja\u010di mogu:\n* osigurati da se podaci sigurno prenose \n* otkrivati i sprje\u010davati zlonamjerne, la\u017ene, neva\u017ee\u0107e ili nezakonite aktivnosti.\n* osigurati ispravno i u\u010dinkovito funkcioniranje sustava i procesa, uklju\u010duju\u0107i pra\u0107enje i pobolj\u0161anje performansi sustava i postupaka u dopu\u0161tenim svrhama\nDobavlja\u010di ne mogu:\n* Provoditi bilo koju drugu vrstu obrade podataka koja je dopu\u0161tena u drugoj svrsi, a ne u ovoj.\nNapomena: podaci prikupljeni i kori\u0161teni za osiguravanje sigurnosti, sprje\u010davanje prijevara i ispravljanje pogre\u0161aka mogu uklju\u010divati automatski poslane karakteristike ure\u0111aja za identifikaciju, precizne podatke o geolokaciji i podatke dobivene aktivnim skeniranjem karakteristika ure\u0111aja za identifikaciju bez odvojenog otkrivanja i/ili prijave.\n"},"2":{"id":2,"name":"Tehni\u010dka isporuka oglasa ili sadr\u017eaja","description":"Va\u0161 ure\u0111aj mo\u017ee primati i slati informacije koje vam omogu\u0107uju da vidite oglase i sadr\u017eaj te da imate interakciju s njima.","descriptionLegal":"Kako bi dostavili informacije i odgovorili na tehni\u010dke zahtjeve, dobavlja\u010di mogu:\n* koristiti IP adresu korisnika za isporuku oglasa putem interneta\n* odgovarati na korisnikovu interakciju s oglasom slanjem korisnika na odredi\u0161nu stranicu\n* koristiti IP adresu korisnika za isporuku sadr\u017eaja putem interneta\n* odgovarati na korisnikovu interakciju sa sadr\u017eajem slanjem korisnika na odredi\u0161nu stranicu\n* koristiti informacije o vrsti i mogu\u0107nostima ure\u0111aja za isporuku oglasa ili sadr\u017eaja, primjerice, za isporuku prave veli\u010dine oglasa kreativne ili video datoteke u formatu koji podr\u017eava ure\u0111aj\nDobavlja\u010di ne mogu:\n* provoditi bilo koju drugu vrstu obrade podataka koja je dopu\u0161tena u drugoj svrsi, a ne u ovoj\n"}},"features":{"1":{"id":1,"name":"Uskla\u0111ivati i kombinirati izvanmre\u017ene izvore podataka","description":"Podaci iz izvanmre\u017enih izvora podataka mogu se kombinirati s va\u0161om mre\u017enom aktivno\u0161\u0107u kao podr\u0161ka jednoj ili vi\u0161e svrha.","descriptionLegal":"Dobavlja\u010di mogu: \n* kombinirati podatke dobivene izvanmre\u017eno s podacima prikupljenim putem interneta kao podr\u0161ka jednoj ili vi\u0161e svrha ili posebnih svrha.\n"},"2":{"id":2,"name":"Povezivanje razli\u010ditih ure\u0111aja","description":"Razli\u010diti ure\u0111aji mogu se odrediti kao pripadaju\u0107i vama ili va\u0161em ku\u0107anstvu kao podr\u0161ka jednoj ili vi\u0161e svrha.","descriptionLegal":"Dobavlja\u010di mogu:\n* deterministi\u010dki odrediti da dva ili vi\u0161e ure\u0111aja pripadaju istom korisniku ili ku\u0107anstvu\n* probabilisti\u010dki utvrditi da dva ili vi\u0161e ure\u0111aja pripadaju istom korisniku ili ku\u0107anstvu \n* aktivno skenirati karakteristike ure\u0111aja za utvr\u0111ivanje probabilisti\u010dke identifikacije ako su korisnici dopustili dobavlja\u010dima da aktivno skeniraju karakteristike ure\u0111aja za identifikaciju (posebna zna\u010dajka broj 2)\n"},"3":{"id":3,"name":"Primanje i uporaba automatski poslanih karakteristika ure\u0111aja za identifikaciju","description":"Va\u0161 se ure\u0111aj mo\u017ee razlikovati od drugih ure\u0111aja na temelju informacija koje automatski \u0161alje, kao \u0161to su IP adresa ili vrsta preglednika.","descriptionLegal":"Dobavlja\u010di mogu:\n* kreirati identifikator pomo\u0107u podataka prikupljenih automatski s ure\u0111aja za odre\u0111ene karakteristike, primjerice IP adrese, niz korisni\u010dkih nizova.\n* Koristiti takav identifikator da bi ponovno identificirali ure\u0111aj.\nDobavlja\u010di ne mogu:\n* kreirati identifikator pomo\u0107u podataka prikupljenih putem aktivnog skeniranja ure\u0111aja za odre\u0111ene karakteristike, npr. instalirani fontovi ili razlu\u010divost zaslona bez posebne prijave korisnika radi aktivnog skeniranja karakteristika ure\u0111aja radi identifikacije.\n* Koristiti takav identifikator da bi ponovno identificirali ure\u0111aj.\n"}},"specialFeatures":{"1":{"id":1,"name":"Uporaba preciznih podataka o geolokaciji","description":"Va\u0161i se precizni podaci o geolokaciji mogu koristiti kao podr\u0161ka jednoj ili vi\u0161e svrha. To zna\u010di da va\u0161a lokacija mo\u017ee biti to\u010dna u opsegu od nekoliko metara.","descriptionLegal":"Dobavlja\u010di mogu:\n* prikupiti i obraditi precizne geolokacijske podatke kao podr\u0161ku jednoj ili vi\u0161e svrha.\nNapomena: precizna geolokacija zna\u010di da nema ograni\u010denja preciznosti korisnikove lokacije; to mo\u017ee biti precizno u opsegu od nekoliko metara.\n"},"2":{"id":2,"name":"Aktivno skeniranje karakteristika ure\u0111aja za identifikaciju","description":"Va\u0161 se ure\u0111aj mo\u017ee identificirati na temelju skeniranja jedinstvene kombinacije karakteristika va\u0161eg ure\u0111aja.","descriptionLegal":"Dobavlja\u010di mogu:\n* kreirati identifikator pomo\u0107u podataka prikupljenih putem aktivnog skeniranja ure\u0111aja za odre\u0111ene karakteristike, npr. instalirani fontovi ili razlu\u010divost zaslona. \n* koristiti takav identifikator da bi ponovno identificirali ure\u0111aj.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Precizni geolokacijski podaci i identifikacija putem skeniranja ure\u0111aja","description":"Precizna geolokacija i informacije o karakteristikama ure\u0111aja mogu se koristiti."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Osnovni oglasi i mjerenje oglasa","description":"Osnovni oglasi mogu se pru\u017eati. Performanse oglasa mogu se mjeriti."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Personalizirani oglasi","description":"Oglasi se mogu personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se oglasi bolje personalizirali."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Osnovni oglasi i mjerenje oglasa","description":"Osnovni oglasi mogu se pru\u017eati. Performanse oglasa mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Osnovni oglasi, profil personaliziranih oglasa i mjerenje oglasa","description":"Osnovni oglasi mogu se pru\u017eati. Mo\u017ee se dodati vi\u0161e podataka kako bi se oglasi bolje personalizirali. Performanse oglasa mogu se mjeriti."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Prikaz personaliziranih oglasa i mjerenje","description":"Oglasi se mogu personalizirati na temelju profila. Performanse oglasa mogu se mjeriti."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Prikaz personaliziranih oglasa, mjerenje oglasa i uvidi u publiku","description":"Oglasi se mogu personalizirati na temelju profila. Performanse oglasa mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Personalizirani oglasi i mjerenje oglasa","description":"Oglasi se mogu personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se oglasi bolje personalizirali. Performanse oglasa mogu se mjeriti."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Personalizirani oglasi, mjerenje oglasa i uvidi u publiku","description":"Oglasi se mogu personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se oglasi bolje personalizirali. Performanse oglasa mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Profil i prikaz personaliziranih oglasa","description":"Oglasi se mogu personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se oglasi bolje personalizirali."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Personalizirani sadr\u017eaj","description":"Sadr\u017eaj se mo\u017ee personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se sadr\u017eaj bolje personalizirao."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Prikaz i mjerenje personaliziranog sadr\u017eaja","description":"Sadr\u017eaj se mo\u017ee personalizirati na temelju profila. Performanse sadr\u017eaja mogu se mjeriti."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Prikaz personaliziranog sadr\u017eaja, mjerenje sadr\u017eaja i uvidi u publiku","description":"Sadr\u017eaj se mo\u017ee personalizirati na temelju profila. Performanse sadr\u017eaja mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Personalizirani sadr\u017eaj i mjerenje sadr\u017eaja","description":"Sadr\u017eaj se mo\u017ee personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se sadr\u017eaj bolje personalizirao. Performanse sadr\u017eaja mogu se mjeriti."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Personalizirani sadr\u017eaj, mjerenje sadr\u017eaja i uvidi u publiku","description":"Sadr\u017eaj se mo\u017ee personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se sadr\u017eaj bolje personalizirao. Performanse sadr\u017eaja mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Personalizirani sadr\u017eaj, mjerenje sadr\u017eaja, uvidi u publiku i razvoj proizvoda","description":"Sadr\u017eaj se mo\u017ee personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se sadr\u017eaj bolje personalizirao. Performanse sadr\u017eaja mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti. Podaci se mogu koristiti za izgradnju ili pobolj\u0161anje korisni\u010dkog iskustva, sustava i softvera."},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Mjerenje oglasa i sadr\u017eaja te uvidi u publiku","description":"Performanse oglasa i sadr\u017eaja mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Mjerenje oglasa i sadr\u017eaja","description":"Performanse oglasa i sadr\u017eaja mogu se mjeriti."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Mjerenje oglasa i uvidi u publiku","description":"Oglas se mo\u017ee mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Mjerenje oglasa i sadr\u017eaja, uvidi u publiku i razvoj proizvoda","description":"Performanse oglasa i sadr\u017eaja mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti. Podaci se mogu koristiti za izgradnju ili pobolj\u0161anje korisni\u010dkog iskustva, sustava i softvera.Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Mjerenje sadr\u017eaja, uvidi u publiku i razvoj proizvoda","description":"Performanse sadr\u017eaja mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti. Podaci se mogu koristiti za izgradnju ili pobolj\u0161anje korisni\u010dkog iskustva, sustava i softvera."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Mjerenje sadr\u017eaja i razvoj proizvoda","description":"Performanse sadr\u017eaja mogu se mjeriti. Podaci se mogu koristiti za izgradnju ili pobolj\u0161anje korisni\u010dkog iskustva, sustava i softvera."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Prikaz personaliziranih oglasa i sadr\u017eaja, mjerenje oglasa i sadr\u017eaja","description":"Oglasi i sadr\u017eaj mogu se personalizirati na temelju profila. Performanse oglasa i sadr\u017eaja mogu se mjeriti."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Prikaz personaliziranih oglasa i sadr\u017eaja, mjerenje oglasa i sadr\u017eaja te uvidi u publiku","description":"Oglasi i sadr\u017eaj mogu se personalizirati na temelju profila. Performanse oglasa i sadr\u017eaja mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti. Podaci se mogu koristiti za izgradnju ili pobolj\u0161anje korisni\u010dkog iskustva, sustava i softvera."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Personalizirani oglasi i sadr\u017eaj, mjerenje oglasa i sadr\u017eaja","description":"Oglasi i sadr\u017eaj mogu se personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se oglasi i sadr\u017eaj bolje personalizirali. Performanse oglasa i sadr\u017eaja mogu se mjeriti."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Personalizirani oglasi i sadr\u017eaj, mjerenje oglasa i sadr\u017eaja te uvidi u publiku","description":"Oglasi i sadr\u017eaj mogu se personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se oglasi i sadr\u017eaj bolje personalizirali. Performanse oglasa i sadr\u017eaja mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Profil personaliziranih oglasa i sadr\u017eaja","description":"Mo\u017ee se dodati vi\u0161e podataka kako bi se personalizirali oglasi i sadr\u017eaj."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Prikaz personaliziranih oglasa i sadr\u017eaja","description":"Oglasi i sadr\u017eaj mogu se personalizirati na temelju profila."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Osnovni oglasi, mjerenje oglasa i sadr\u017eaja te uvidi u publiku","description":"Osnovni oglasi mogu se pru\u017eati. Performanse oglasa i sadr\u017eaja mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Prikaz personaliziranih oglasa, personaliziranog sadr\u017eaja, mjerenje oglasa i sadr\u017eaja te uvidi u publiku","description":"Oglasi i sadr\u017eaj mogu se personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se sadr\u017eaj bolje personalizirao. Performanse oglasa i sadr\u017eaja mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Prikaz personaliziranih oglasa, personaliziranog sadr\u017eaja, mjerenje oglasa i sadr\u017eaja, uvidi u publiku i razvoj proizvoda","description":"Oglasi i sadr\u017eaj mogu se personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se sadr\u017eaj bolje personalizirao. Performanse oglasa i sadr\u017eaja mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti. Podaci se mogu koristiti za izgradnju ili pobolj\u0161anje korisni\u010dkog iskustva, sustava i softvera."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Osnovni oglasi, personalizirani sadr\u017eaj, mjerenje oglasa i sadr\u017eaja te uvidi u publiku","description":"Osnovni oglasi mogu se pru\u017eati. Sadr\u017eaj se mo\u017ee personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se sadr\u017eaj bolje personalizirao. Performanse oglasa i sadr\u017eaja mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Osnovni oglasi, personalizirani sadr\u017eaj, mjerenje oglasa i sadr\u017eaja, uvidi u publiku i razvoj proizvoda","description":"Osnovni oglasi mogu se pru\u017eati. Sadr\u017eaj se mo\u017ee personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se sadr\u017eaj bolje personalizirao. Performanse oglasa i sadr\u017eaja mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti. Podaci se mogu koristiti za izgradnju ili pobolj\u0161anje korisni\u010dkog iskustva, sustava i softvera."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Osnovni oglasi, personalizirani sadr\u017eaj, mjerenje sadr\u017eaja i uvidi u publiku","description":"Osnovni oglasi mogu se pru\u017eati. Sadr\u017eaj se mo\u017ee personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se sadr\u017eaj bolje personalizirao. Performanse oglasa i sadr\u017eaja mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Osnovni oglasi, personalizirani sadr\u017eaj, mjerenje sadr\u017eaja, uvidi u publiku i razvoj proizvoda","description":"Osnovni oglasi mogu se pru\u017eati. Sadr\u017eaj se mo\u017ee personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se sadr\u017eaj bolje personalizirao. Performanse sadr\u017eaja mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti. Podaci se mogu koristiti za izgradnju ili pobolj\u0161anje korisni\u010dkog iskustva, sustava i softvera."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Osnovni oglasi, personalizirani sadr\u017eaj i mjerenje oglasa","description":"Osnovni oglasi mogu se pru\u017eati. Sadr\u017eaj se mo\u017ee personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se sadr\u017eaj bolje personalizirao. Performanse oglasa mogu se mjeriti."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Osnovni oglasi, personalizirani sadr\u017eaj, mjerenje oglasa i razvoj proizvoda","description":"Osnovni oglasi mogu se pru\u017eati. Sadr\u017eaj se mo\u017ee personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se sadr\u017eaj bolje personalizirao. Performanse oglasa mogu se mjeriti. Podaci se mogu koristiti za izgradnju ili pobolj\u0161anje korisni\u010dkog iskustva, sustava i softvera."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Personalizirani oglasi, mjerenje oglasa i razvoj proizvoda","description":"Oglasi se mogu personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se oglasi bolje personalizirali. Performanse oglasa mogu se mjeriti. Podaci se mogu koristiti za izgradnju ili pobolj\u0161anje korisni\u010dkog iskustva, sustava i softvera."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Personalizirani oglasi, mjerenje oglasa, uvidi u publiku i razvoj proizvoda","description":"Oglasi se mogu personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se oglasi bolje personalizirali. Performanse oglasa mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti. Podaci se mogu koristiti za izgradnju ili pobolj\u0161anje korisni\u010dkog iskustva, sustava i softvera."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Personalizirani oglasi, mjerenje oglasa i sadr\u017eaja, uvidi u publiku i razvoj proizvoda","description":"Oglasi se mogu personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se oglasi bolje personalizirali. Performanse oglasa i sadr\u017eaja mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti. Podaci se mogu koristiti za izgradnju ili pobolj\u0161anje korisni\u010dkog iskustva, sustava i softvera."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Personalizirani oglasi, personalizirani prikaz sadr\u017eaja, mjerenje oglasa i sadr\u017eaja, uvidi u publiku i razvoj proizvoda","description":"Oglasi i sadr\u017eaj mogu se personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se oglasi bolje personalizirali. Performanse oglasa i sadr\u017eaja mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti. Podaci se mogu koristiti za izgradnju ili pobolj\u0161anje korisni\u010dkog iskustva, sustava i softvera."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Personalizirani oglasi i sadr\u017eaj, mjerenje oglasa i sadr\u017eaja, uvidi u publiku i razvoj proizvoda","description":"Oglasi i sadr\u017eaj mogu se personalizirati na temelju profila. Mo\u017ee se dodati vi\u0161e podataka kako bi se oglasi i sadr\u017eaj bolje personalizirali. Performanse oglasa i sadr\u017eaja mogu se mjeriti. Uvidi u publiku koja je vidjela oglase i sadr\u017eaj mogu se izvesti. Podaci se mogu koristiti za izgradnju ili pobolj\u0161anje korisni\u010dkog iskustva, sustava i softvera."}}} \ No newline at end of file diff --git a/src/s1/config/2.0/purposes/purposes-hu.json b/src/s1/config/2.0/purposes/purposes-hu.json index 5a425a74..b0775bdb 100644 --- a/src/s1/config/2.0/purposes/purposes-hu.json +++ b/src/s1/config/2.0/purposes/purposes-hu.json @@ -1 +1 @@ -{"vendorListVersion":79,"lastUpdated":"2021-02-25T16:36:19Z","purposes":{"1":{"id":1,"name":"Az eszk\u00f6z\u00f6n t\u00e1rolt inform\u00e1ci\u00f3k t\u00e1rol\u00e1sa \u00e9s/vagy el\u00e9r\u00e9se","description":"A s\u00fctik, az eszk\u00f6zazonos\u00edt\u00f3k vagy m\u00e1s inform\u00e1ci\u00f3k az eszk\u00f6z\u00e9n t\u00e1rolhat\u00f3k vagy azon hozz\u00e1f\u00e9rhet\u0151k, az \u00d6n r\u00e9sz\u00e9re bemutatott c\u00e9lokra.","descriptionLegal":"A besz\u00e1ll\u00edt\u00f3k:\n* T\u00e1rolhatj\u00e1k \u00e9s el\u00e9rhetik az eszk\u00f6z\u00f6n tal\u00e1lhat\u00f3 inform\u00e1ci\u00f3kat, p\u00e9ld\u00e1ul a felhaszn\u00e1l\u00f3nak bemutatott s\u00fctiket \u00e9s eszk\u00f6zazonos\u00edt\u00f3kat.\n"},"2":{"id":2,"name":"Alapvet\u0151 hirdet\u00e9sek kiv\u00e1laszt\u00e1sa","description":"A hirdet\u00e9sek megjelen\u00edthet\u0151k az \u00d6n sz\u00e1m\u00e1ra a megtekintett tartalom, a haszn\u00e1lt alkalmaz\u00e1s, a hozz\u00e1vet\u0151leges tart\u00f3zkod\u00e1si helye, vagy eszk\u00f6z\u00e9nek t\u00edpusa alapj\u00e1n.","descriptionLegal":"Az alapvet\u0151 hirdet\u00e9sek kiv\u00e1laszt\u00e1sa \u00e9rdek\u00e9bena besz\u00e1ll\u00edt\u00f3k:\n* Val\u00f3s idej\u0171 inform\u00e1ci\u00f3kat haszn\u00e1lhatnak arra vonatkoz\u00f3an, hogy a hirdet\u00e9s milyen k\u00f6rnyezetben jelenjen meg, valamint a hirdet\u00e9s bemutat\u00e1s\u00e1ra, bele\u00e9rtve a tartalomra \u00e9s az eszk\u00f6zre vonatkoz\u00f3 inform\u00e1ci\u00f3kat, p\u00e9ld\u00e1ul az eszk\u00f6z t\u00edpus\u00e1t \u00e9s k\u00e9pess\u00e9geit, a felhaszn\u00e1l\u00f3i \u00fcgyn\u00f6k\u00f6t, az URL-t \u00e9s az IP-c\u00edmet\n* Felhaszn\u00e1lhatj\u00e1k a felhaszn\u00e1l\u00f3 nem pontos geolok\u00e1ci\u00f3s adatait\n* Szab\u00e1lyozhatj\u00e1k a felhaszn\u00e1l\u00f3k sz\u00e1m\u00e1ra megjelen\u00edtett hirdet\u00e9sek gyakoris\u00e1g\u00e1t.\n* Meghat\u00e1rozhatj\u00e1k a hirdet\u00e9sek megjelen\u00edt\u00e9s\u00e9nek sorrendj\u00e9t.\n* Megakad\u00e1lyozhatj\u00e1k a megjelen\u00edt\u00e9st, amennyiben egy hirdet\u00e9s nem megfelel\u0151 szerkeszt\u0151i (m\u00e1rkabiztons\u00e1g szempontj\u00e1b\u00f3l nem megfelel\u0151) k\u00f6rnyezetben jelenne meg\nA besz\u00e1ll\u00edt\u00f3k nem:\n* Nem hozhatnak l\u00e9tre szem\u00e9lyre szabott hirdet\u00e9si profilokat ezen inform\u00e1ci\u00f3k felhaszn\u00e1l\u00e1s\u00e1val a j\u00f6v\u0151beni hirdet\u00e9sek kiv\u00e1laszt\u00e1s\u00e1hoz,szem\u00e9lyre szabott hirdet\u00e9si profilok l\u00e9trehoz\u00e1s\u00e1ra vonatkoz\u00f3 k\u00fcl\u00f6n jogalap n\u00e9lk\u00fcl.\nMegjegyz\u00e9s: A nem pontos kifejez\u00e9s kiz\u00e1r\u00f3lag hozz\u00e1vet\u0151leges helyet jelent, ide\u00e9rtve egy legal\u00e1bb 500 m\u00e9teres sugar\u00fa k\u00f6rt.\n"},"3":{"id":3,"name":"Szem\u00e9lyre szabott hirdet\u00e9si profil l\u00e9trehoz\u00e1sa","description":"Profilt hozhatnak l\u00e9tre \u00d6nre \u00e9s \u00e9rdekl\u0151d\u00e9si k\u00f6r\u00e9re vonatkoz\u00f3an, az \u00d6n sz\u00e1m\u00e1ra relev\u00e1ns, szem\u00e9lyre szabott hirdet\u00e9sek megjelen\u00edt\u00e9s\u00e9hez.","descriptionLegal":"Szem\u00e9lyre szabott hirdet\u00e9si profil l\u00e9trehoz\u00e1s\u00e1hoz a besz\u00e1ll\u00edt\u00f3k:\n* Inform\u00e1ci\u00f3kat gy\u0171jthetnek a felhaszn\u00e1l\u00f3r\u00f3l, bele\u00e9rtve a felhaszn\u00e1l\u00f3 tev\u00e9kenys\u00e9g\u00e9t, \u00e9rdekl\u0151d\u00e9si k\u00f6r\u00e9t, milyen weboldalakat vagy alkalmaz\u00e1sokat keresett fel, demogr\u00e1fiai adatait vagy f\u00f6ldrajzi elhelyezked\u00e9s\u00e9t, annak \u00e9rdek\u00e9ben, hogy szem\u00e9lyre szabott hirdet\u00e9sekben alkalmazhat\u00f3 felhaszn\u00e1l\u00f3i profilt hozzanak l\u00e9tre, illetve ilyet szerkesszenek.\n* Kombin\u00e1lja ezeket az inform\u00e1ci\u00f3kat m\u00e1s, kor\u00e1bban \u00f6sszegy\u0171jt\u00f6tt inform\u00e1ci\u00f3kkal, bele\u00e9rtve az \u00f6sszes webhelyet \u00e9s alkalmaz\u00e1st, hogy l\u00e9trehozzon vagy szerkesszen egy felhaszn\u00e1l\u00f3i profilt a szem\u00e9lyre szabott rekl\u00e1moz\u00e1shoz.\n"},"4":{"id":4,"name":"Szem\u00e9lyre szabott hirdet\u00e9sek kiv\u00e1laszt\u00e1sa","description":"Szem\u00e9lyre szabott hirdet\u00e9sek jelen\u00edthet\u0151k meg az \u00d6nr\u0151l k\u00e9sz\u00fclt profil alapj\u00e1n.","descriptionLegal":"A szem\u00e9lyre szabott hirdet\u00e9sek kiv\u00e1laszt\u00e1s\u00e1hoz a besz\u00e1ll\u00edt\u00f3k:\n* Szem\u00e9lyre szabott hirdet\u00e9seket v\u00e1laszthatnak a felhaszn\u00e1l\u00f3i profil vagy m\u00e1s kor\u00e1bbi felhaszn\u00e1l\u00f3i adatok alapj\u00e1n, bele\u00e9rtve a felhaszn\u00e1l\u00f3 kor\u00e1bbi tev\u00e9kenys\u00e9g\u00e9t, \u00e9rdekl\u0151d\u00e9si k\u00f6r\u00e9t, oldalak vagy alkalmaz\u00e1sok megtekint\u00e9s\u00e9t, f\u00f6ldrajzi elhelyezked\u00e9s\u00e9t vagy demogr\u00e1fiai adatait.\n"},"5":{"id":5,"name":"Szem\u00e9lyre szabott tartalomprofil l\u00e9trehoz\u00e1sa","description":"Profilt hozhatnak l\u00e9tre \u00d6nre \u00e9s \u00e9rdekl\u0151d\u00e9si k\u00f6r\u00e9re vonatkoz\u00f3an, az \u00d6n sz\u00e1m\u00e1ra relev\u00e1ns, szem\u00e9lyre szabott tartalmak megjelen\u00edt\u00e9s\u00e9hez.","descriptionLegal":"Szem\u00e9lyre szabott tartalomprofil l\u00e9trehoz\u00e1s\u00e1hoz a besz\u00e1ll\u00edt\u00f3k:\n* Inform\u00e1ci\u00f3kat gy\u0171jthetnek a felhaszn\u00e1l\u00f3r\u00f3l, bele\u00e9rtve a felhaszn\u00e1l\u00f3 tev\u00e9kenys\u00e9g\u00e9t, \u00e9rdekl\u0151d\u00e9si k\u00f6r\u00e9t, oldalak vagy alkalmaz\u00e1sok megtekint\u00e9s\u00e9t, demogr\u00e1fiai adatait vagy f\u00f6ldrajzi elhelyezked\u00e9s\u00e9t, hogy a tartalom szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben felhaszn\u00e1l\u00f3i profilt hozzanak l\u00e9tre vagy ilyet szerkesszenek.\n* Kombin\u00e1lja ezeket az inform\u00e1ci\u00f3kat m\u00e1s, kor\u00e1bban \u00f6sszegy\u0171jt\u00f6tt inform\u00e1ci\u00f3kkal, bele\u00e9rtve az \u00f6sszes webhelyet \u00e9s alkalmaz\u00e1st, felhaszn\u00e1l\u00f3i profil l\u00e9trehoz\u00e1s\u00e1hoz vagy szerkeszt\u00e9s\u00e9hez a tartalom szem\u00e9lyre szab\u00e1s\u00e1hoz.\n"},"6":{"id":6,"name":"Szem\u00e9lyre szabott tartalom kiv\u00e1laszt\u00e1sa","description":"Szem\u00e9lyre szabott tartalom jelen\u00edthet\u0151 meg az \u00d6nr\u0151l k\u00e9sz\u00fclt profil alapj\u00e1n.","descriptionLegal":"A szem\u00e9lyre szabott tartalmak kiv\u00e1laszt\u00e1s\u00e1hoz a besz\u00e1ll\u00edt\u00f3k:\n* Szem\u00e9lyre szabott tartalmakat v\u00e1laszthatnak egy felhaszn\u00e1l\u00f3i profil vagy m\u00e1s kor\u00e1bbi felhaszn\u00e1l\u00f3i adatok alapj\u00e1n, bele\u00e9rtve a felhaszn\u00e1l\u00f3 kor\u00e1bbi tev\u00e9kenys\u00e9g\u00e9t, \u00e9rdekl\u0151d\u00e9si k\u00f6r\u00e9t, oldalak vagy alkalmaz\u00e1sok megtekint\u00e9s\u00e9t, f\u00f6ldrajzi elhelyezked\u00e9s\u00e9t vagy demogr\u00e1fiai adatait.\n"},"7":{"id":7,"name":"A hirdet\u00e9s teljes\u00edtm\u00e9ny\u00e9nek m\u00e9r\u00e9se","description":"M\u00e9rhet\u0151 az \u00d6n \u00e1ltal megtekintett hirdet\u00e9sek teljes\u00edtm\u00e9nye \u00e9s hat\u00e9konys\u00e1ga.","descriptionLegal":"A hirdet\u00e9s teljes\u00edtm\u00e9ny\u00e9nek m\u00e9r\u00e9s\u00e9hez a besz\u00e1ll\u00edt\u00f3k:\n* Megm\u00e9rhetik, hogy a hirdet\u00e9sek eljutottak-e a felhaszn\u00e1l\u00f3khoz, \u00e9s milyen azok r\u00e1juk gyakorolt hat\u00e1sa\n* Jelent\u00e9st adhatnak a hirdet\u00e9sekr\u0151l, bele\u00e9rtve azok hat\u00e9konys\u00e1g\u00e1t \u00e9s teljes\u00edtm\u00e9ny\u00e9t\n* Jelent\u00e9st adathatnak azokr\u00f3l a felhaszn\u00e1l\u00f3kr\u00f3l, akik kapcsolatba ker\u00fcltek a hirdet\u00e9sekkel, a felhaszn\u00e1l\u00f3i interakci\u00f3 sor\u00e1n megfigyelt adatok alapj\u00e1n\n* Jelent\u00e9st adhatnak a kiad\u00f3knak a vagyont\u00e1rgyukon megjelen\u00edtett hirdet\u00e9sekr\u0151l\n* Megm\u00e9rhetik, hogy egy hirdet\u00e9s megfelel\u0151 szerkeszt\u0151i k\u00f6rnyezetben (m\u00e1rkabiztons\u00e1g) m\u0171k\u00f6dik-e\n* Meghat\u00e1rozhatj\u00e1k a hirdet\u00e9sek sz\u00e1zal\u00e9k\u00e1t, amelyeket l\u00e1thatnak, \u00e9s a megtekint\u00e9s id\u0151tartam\u00e1t\nA besz\u00e1ll\u00edt\u00f3k nem:\n* Nem alkalmazhatnak panel- vagy hasonl\u00f3 eredet\u0171 n\u00e9zetts\u00e9gi adatokat a hirdet\u00e9sm\u00e9r\u00e9si adatokhoz an\u00e9lk\u00fcl, hogy k\u00fcl\u00f6n jogalapjuk lenne piackutat\u00e1si tev\u00e9kenys\u00e9gre, n\u00e9zetts\u00e9gi adatok gener\u00e1l\u00e1sa \u00e9rdek\u00e9ben.\n"},"8":{"id":8,"name":"A tartalom teljes\u00edtm\u00e9ny\u00e9nek m\u00e9r\u00e9se","description":"M\u00e9rhet\u0151 az \u00d6n \u00e1ltal megtekintett tartalom teljes\u00edtm\u00e9nye \u00e9s hat\u00e9konys\u00e1ga.","descriptionLegal":"A tartalom teljes\u00edtm\u00e9ny\u00e9nek m\u00e9r\u00e9s\u00e9hez a besz\u00e1ll\u00edt\u00f3k:\n* Megm\u00e9rhetik \u00e9s jelent\u00e9st k\u00e9sz\u00edthetnek arr\u00f3l, hogy a tartalom eljutott-e a felhaszn\u00e1l\u00f3khoz \u00e9s milyen annak a r\u00e1juk gyakorolt hat\u00e1sa.\n* K\u00f6zvetlen\u00fcl m\u00e9rhet\u0151 vagy ismert inform\u00e1ci\u00f3k alapj\u00e1n, jelent\u00e9st adhatnak azon felhaszn\u00e1l\u00f3kr\u00f3l, akik kapcsolatba ker\u00fcltek a tartalommal\nA besz\u00e1ll\u00edt\u00f3k nem:\n* Nem m\u00e9rhetik, hogy a hirdet\u00e9sek (bele\u00e9rtve az anyanyelvi hirdet\u00e9seket is) eljutottak-e a felhaszn\u00e1l\u00f3khoz \u00e9s milyen azok r\u00e1juk gyakorolt hat\u00e1sa.\n* Nem alkalmazhatnak panel- vagy hasonl\u00f3 eredet\u0171 n\u00e9zetts\u00e9gi adatokat a hirdet\u00e9sm\u00e9r\u00e9si adatokhoz an\u00e9lk\u00fcl, hogy k\u00fcl\u00f6n jogalapjuk lenne piackutat\u00e1s alkalmaz\u00e1s\u00e1ra, a n\u00e9zetts\u00e9gi adatok gener\u00e1l\u00e1sa \u00e9rdek\u00e9ben.\n"},"9":{"id":9,"name":"Piackutat\u00e1s alkalmaz\u00e1sa n\u00e9zetts\u00e9gi adatok gener\u00e1l\u00e1s\u00e1hoz","description":"Piackutat\u00e1s seg\u00edts\u00e9g\u00e9vel tov\u00e1bbi inform\u00e1ci\u00f3k kaphat\u00f3k a k\u00f6z\u00f6ns\u00e9gr\u0151l, akik megl\u00e1togatj\u00e1k a webhelyeket/alkalmaz\u00e1sokat, \u00e9s megtekintik a hirdet\u00e9seket.","descriptionLegal":"N\u00e9zetts\u00e9gi adatok gener\u00e1l\u00e1sa \u00e9rdek\u00e9ben, piackutat\u00e1s felhaszn\u00e1l\u00e1s\u00e1val, a besz\u00e1ll\u00edt\u00f3k:\n* \u00d6sszes\u00edtett jelent\u00e9st ny\u00fajthatnak a hirdet\u0151knek vagy k\u00e9pvisel\u0151iknek a hirdet\u00e9seik \u00e1ltal el\u00e9rhet\u0151 k\u00f6z\u00f6ns\u00e9gekr\u0151l, a panelalap\u00fa \u00e9s hasonl\u00f3 m\u00f3don szerzett n\u00e9zetts\u00e9gi adatok r\u00e9v\u00e9n.\n* \u00d6sszes\u00edtett jelent\u00e9st ny\u00fajthatnak a kiad\u00f3knak azokr\u00f3l a k\u00f6z\u00f6ns\u00e9gekr\u0151l, amelyek sz\u00e1m\u00e1ra vagyont\u00e1rgyukon megjelen\u00edtett tartalmat \u00e9s/vagy hirdet\u00e9seket szolg\u00e1ltattak vagy azokkal kapcsolatba ker\u00fcltek, panelalap\u00fa \u00e9s hasonl\u00f3an szerzett n\u00e9zetts\u00e9gi adatok alkalmaz\u00e1s\u00e1val.\n* \u00d6sszekapcsolhatnak offline adatokat egy online felhaszn\u00e1l\u00f3val piackutat\u00e1s c\u00e9lj\u00e1b\u00f3l, hogy n\u00e9zetts\u00e9gi adatokat gener\u00e1ljanak, ha a besz\u00e1ll\u00edt\u00f3k meger\u0151s\u00edtett\u00e9k az offline adatforr\u00e1sok egyeztet\u00e9s\u00e9t \u00e9s \u00f6sszevon\u00e1s\u00e1t (1. funkci\u00f3)\nA besz\u00e1ll\u00edt\u00f3k nem:\n* Nem m\u00e9rhetik az adott felhaszn\u00e1l\u00f3 r\u00e9sz\u00e9re szolg\u00e1ltatott vagy \u00e1ltaluk megtekintett hirdet\u00e9sek teljes\u00edtm\u00e9ny\u00e9t \u00e9s hat\u00e9konys\u00e1g\u00e1t, a hirdet\u00e9s teljes\u00edtm\u00e9ny\u00e9nek m\u00e9r\u00e9s\u00e9re szolg\u00e1l\u00f3 k\u00fcl\u00f6n jogalap n\u00e9lk\u00fcl.\n* Nem m\u00e9rhetik, hogy egy adott felhaszn\u00e1l\u00f3 r\u00e9sz\u00e9re milyen tartalmat szolg\u00e1ltattak, \u00e9s azzal hogyan ker\u00fclt kapcsolatba, a tartalom teljes\u00edtm\u00e9ny\u00e9nek m\u00e9r\u00e9s\u00e9re szolg\u00e1l\u00f3 k\u00fcl\u00f6n jogalap n\u00e9lk\u00fcl.\n"},"10":{"id":10,"name":"Term\u00e9kek fejleszt\u00e9se \u00e9s jav\u00edt\u00e1sa","description":"Az \u00d6n adatai felhaszn\u00e1lhat\u00f3k a megl\u00e9v\u0151 rendszerek \u00e9s szoftverek jav\u00edt\u00e1sa, valamint az \u00faj term\u00e9kek fejleszt\u00e9se \u00e9rdek\u00e9ben","descriptionLegal":"\u00daj term\u00e9kek fejleszt\u00e9se, \u00e9s a term\u00e9kek jav\u00edt\u00e1sa \u00e9rdek\u00e9ben a besz\u00e1ll\u00edt\u00f3k:\n* Felhaszn\u00e1lhatj\u00e1k az inform\u00e1ci\u00f3kat a megl\u00e9v\u0151 term\u00e9kek \u00faj funkci\u00f3kkal t\u00f6rt\u00e9n\u0151 feljav\u00edt\u00e1sa, valamint \u00faj term\u00e9kek fejleszt\u00e9se \u00e9rdek\u00e9ben\n* G\u00e9pi tanul\u00e1s \u00fatj\u00e1n l\u00e9trehozhatnak \u00faj modelleket \u00e9s algoritmusokat\nA besz\u00e1ll\u00edt\u00f3k nem:\n* Nem v\u00e9gezhetnek semmif\u00e9le egy\u00e9b adatkezel\u00e9si m\u0171veletet ezen"}},"specialPurposes":{"1":{"id":1,"name":"Biztons\u00e1g, csal\u00e1s megel\u0151z\u00e9se \u00e9s hibakeres\u00e9s biztos\u00edt\u00e1sa","description":"Az \u00d6n adatai felhaszn\u00e1lhat\u00f3k a csal\u00e1rd tev\u00e9kenys\u00e9gek ellen\u0151rz\u00e9se \u00e9s megel\u0151z\u00e9se \u00e9rdek\u00e9ben, valamint a rendszerek \u00e9s folyamatok megfelel\u0151 \u00e9s biztons\u00e1gos m\u0171k\u00f6d\u00e9s\u00e9nek biztos\u00edt\u00e1s\u00e1ra.","descriptionLegal":"A biztons\u00e1g, csal\u00e1s megel\u0151z\u00e9se \u00e9s a hibakeres\u00e9s biztos\u00edt\u00e1sa \u00e9rdek\u00e9ben a besz\u00e1ll\u00edt\u00f3k:\n* Meggy\u0151z\u0151dhetnek arr\u00f3l, hogy az adatok tov\u00e1bb\u00edt\u00e1s\u00e1ra biztons\u00e1gos m\u00f3don ker\u00fcl sor\n* \u00c9szlelhetik \u00e9s megel\u0151zhetik a rosszindulat\u00fa, csal\u00e1rd, \u00e9rv\u00e9nytelen vagy jogellenes tev\u00e9kenys\u00e9geket.\n* Biztos\u00edthatj\u00e1k a rendszerek \u00e9s folyamatok helyes \u00e9s hat\u00e9kony m\u0171k\u00f6d\u00e9s\u00e9t, bele\u00e9rtve a megengedett c\u00e9llal m\u0171k\u00f6d\u0151 rendszerek \u00e9s folyamatok teljes\u00edtm\u00e9ny\u00e9nek figyelemmel k\u00eds\u00e9r\u00e9s\u00e9t \u00e9s jav\u00edt\u00e1s\u00e1t\nA besz\u00e1ll\u00edt\u00f3k nem:\n* Nem v\u00e9gezhetnek semmif\u00e9le egy\u00e9b adatkezel\u00e9si m\u0171veletet ezen c\u00e9l \u00e9rdek\u00e9ben, amelyre m\u00e1s c\u00e9lb\u00f3l adtak enged\u00e9lyt.\nMegjegyz\u00e9s: A biztons\u00e1g, a csal\u00e1sok megakad\u00e1lyoz\u00e1sa \u00e9s a hib\u00e1k kijav\u00edt\u00e1sa \u00e9rdek\u00e9ben gy\u0171jt\u00f6tt \u00e9s felhaszn\u00e1lt adatok tartalmazhatnak azonos\u00edt\u00e1s \u00e9rdek\u00e9ben automatikusan k\u00fcld\u00f6tt eszk\u00f6zjellemz\u0151ket, pontos geolok\u00e1ci\u00f3s adatokat \u00e9s az eszk\u00f6zjellemz\u0151k azonos\u00edt\u00e1s \u00e9rdek\u00e9ben t\u00f6rt\u00e9nt akt\u00edv leolvas\u00e1s\u00e1val nyert adatokat, kifejezett nyilv\u00e1noss\u00e1gra hozatal \u00e9s/vagy feliratkoz\u00e1s n\u00e9lk\u00fcl.\n"},"2":{"id":2,"name":"Hirdet\u00e9s vagy tartalom technikai szolg\u00e1ltat\u00e1sa","description":"Az \u00d6n eszk\u00f6ze olyan inform\u00e1ci\u00f3kat fogadhat \u00e9s k\u00fcldhet, amelyek lehet\u0151v\u00e9 teszik a hirdet\u00e9sek \u00e9s tartalom megjelen\u00edt\u00e9s\u00e9t, valamint a vel\u00fck val\u00f3 interakci\u00f3t.","descriptionLegal":"Az inform\u00e1ci\u00f3k k\u00f6zvet\u00edt\u00e9s\u00e9hez \u00e9s a m\u0171szaki k\u00e9r\u00e9sek megv\u00e1laszol\u00e1s\u00e1hoz a besz\u00e1ll\u00edt\u00f3k:\n* Felhaszn\u00e1lhatj\u00e1k a felhaszn\u00e1l\u00f3 IP-c\u00edm\u00e9t valamely hirdet\u00e9s interneten kereszt\u00fcl t\u00f6rt\u00e9n\u0151 eljuttat\u00e1s\u00e1hoz\n* A felhaszn\u00e1l\u00f3 interakci\u00f3j\u00e1ra hirdet\u00e9ssel v\u00e1laszolhatnak, a felhaszn\u00e1l\u00f3nak egy c\u00e9loldalra t\u00f6rt\u00e9n\u0151 ir\u00e1ny\u00edt\u00e1s\u00e1val\n* Felhaszn\u00e1lhatj\u00e1k a felhaszn\u00e1l\u00f3 IP-c\u00edm\u00e9t valamely tartalom interneten kereszt\u00fcl t\u00f6rt\u00e9n\u0151 eljuttat\u00e1s\u00e1hoz\n* A felhaszn\u00e1l\u00f3 interakci\u00f3j\u00e1ra tartalommal v\u00e1laszolhatnak, a felhaszn\u00e1l\u00f3nak egy c\u00e9loldalra t\u00f6rt\u00e9n\u0151 ir\u00e1ny\u00edt\u00e1s\u00e1val\n* Felhaszn\u00e1lhatj\u00e1k az eszk\u00f6z t\u00edpus\u00e1ra \u00e9s k\u00e9pess\u00e9geire vonatkoz\u00f3 inform\u00e1ci\u00f3kat hirdet\u00e9sek vagy tartalom eljuttat\u00e1s\u00e1hoz, p\u00e9ld\u00e1ul a megfelel\u0151 m\u00e9ret\u0171 hirdet\u00e9s kreat\u00edv vagy videof\u00e1jl \u00fatj\u00e1n val\u00f3 tov\u00e1bb\u00edt\u00e1sa \u00e9rdek\u00e9ben, az eszk\u00f6z \u00e1ltal t\u00e1mogatott form\u00e1tumban\nA besz\u00e1ll\u00edt\u00f3k nem:\n* Nem v\u00e9gezhetnek semmif\u00e9le egy\u00e9b adatkezel\u00e9si m\u0171veletet ezen c\u00e9l \u00e9rdek\u00e9ben, amelyre m\u00e1s c\u00e9lb\u00f3l adtak enged\u00e9lyt\n"}},"features":{"1":{"id":1,"name":"Offline adatforr\u00e1sok egyeztet\u00e9se \u00e9s \u00f6sszevon\u00e1sa","description":"Az offline adatforr\u00e1sokb\u00f3l sz\u00e1rmaz\u00f3 adatok \u00f6sszevonhat\u00f3k az \u00d6n online tev\u00e9kenys\u00e9g\u00e9vel, egy vagy t\u00f6bb c\u00e9l t\u00e1mogat\u00e1sa \u00e9rdek\u00e9ben.","descriptionLegal":"A besz\u00e1ll\u00edt\u00f3k:\n* \u00d6sszevonhatj\u00e1k az offline \u00e9s az interneten \u00f6sszegy\u0171jt\u00f6tt adatokat egy vagy t\u00f6bb c\u00e9lra, illetve k\u00fcl\u00f6nleges c\u00e9lok \u00e9rdek\u00e9ben.\n"},"2":{"id":2,"name":"K\u00fcl\u00f6nb\u00f6z\u0151 eszk\u00f6z\u00f6k \u00f6sszekapcsol\u00e1sa","description":"Meg\u00e1llap\u00edthat\u00f3 a k\u00fcl\u00f6nb\u00f6z\u0151 eszk\u00f6z\u00f6kr\u0151l, hogy azok \u00d6nh\u00f6z vagy a h\u00e1ztart\u00e1s\u00e1hoz tartoznak-e, \u00e9s azokat egy vagy t\u00f6bb c\u00e9l \u00e9rdek\u00e9ben haszn\u00e1lj\u00e1k-e.","descriptionLegal":"A besz\u00e1ll\u00edt\u00f3k:\n* Determinisztikus m\u00f3don meg\u00e1llap\u00edthatj\u00e1k, hogy k\u00e9t vagy t\u00f6bb eszk\u00f6z ugyanazon felhaszn\u00e1l\u00f3hoz vagy h\u00e1ztart\u00e1shoz tartozik-e\n* Val\u00f3sz\u00edn\u0171s\u00e9g meghat\u00e1roz\u00e1s\u00e1ra szolg\u00e1l\u00f3 elj\u00e1r\u00e1sokat alkalmazva meg\u00e1llap\u00edthatj\u00e1k, hogy k\u00e9t vagy t\u00f6bb eszk\u00f6z ugyanazon felhaszn\u00e1l\u00f3hoz vagy h\u00e1ztart\u00e1shoz tartozik-e\n* Akt\u00edvan vizsg\u00e1lhatj\u00e1k az eszk\u00f6z jellemz\u0151it a val\u00f3sz\u00edn\u0171s\u00e9g meghat\u00e1roz\u00e1s\u00e1hoz, ha a felhaszn\u00e1l\u00f3k enged\u00e9lyezt\u00e9k a besz\u00e1ll\u00edt\u00f3k sz\u00e1m\u00e1ra, hogy akt\u00edvan vizsg\u00e1lhass\u00e1k az eszk\u00f6z jellemz\u0151it az azonos\u00edt\u00e1shoz (2. k\u00fcl\u00f6nleges funkci\u00f3)\n"},"3":{"id":3,"name":"Az automatikusan elk\u00fcld\u00f6tt eszk\u00f6zjellemz\u0151k fogad\u00e1sa \u00e9s felhaszn\u00e1l\u00e1sa az azonos\u00edt\u00e1shoz","description":"Az eszk\u00f6z\u00e9t az automatikusan elk\u00fcld\u00f6tt inform\u00e1ci\u00f3k alapj\u00e1n k\u00fcl\u00f6nb\u00f6ztethetik meg a t\u00f6bbi eszk\u00f6zt\u0151l, p\u00e9ld\u00e1ul az IP-c\u00edm vagy a b\u00f6ng\u00e9sz\u0151 t\u00edpusa alapj\u00e1n.","descriptionLegal":"A besz\u00e1ll\u00edt\u00f3k:\n* L\u00e9trehozhatnak egy bizonyos azonos\u00edt\u00f3t az eszk\u00f6zr\u0151l automatikusan \u00f6sszegy\u0171jt\u00f6tt adatok, a meghat\u00e1rozott jellemz\u0151k, p\u00e9ld\u00e1ul IP-c\u00edm, felhaszn\u00e1l\u00f3i megb\u00edzotthoz tartoz\u00f3 karakterl\u00e1nccal.\n* Felhaszn\u00e1lhatj\u00e1k ezen azonos\u00edt\u00f3t valamely eszk\u00f6z ism\u00e9telt azonos\u00edt\u00e1sa \u00e9rdek\u00e9ben.\nA besz\u00e1ll\u00edt\u00f3k nem:\n* Hozhatnak l\u00e9tre azonos\u00edt\u00f3t egy adott eszk\u00f6z konkr\u00e9t jellemz\u0151k \u00e9rdek\u00e9ben t\u00f6rt\u00e9n\u0151, akt\u00edv vizsg\u00e1lata sor\u00e1n gy\u0171jt\u00f6tt adatok alapj\u00e1n, pl. telep\u00edtett bet\u0171t\u00edpusok vagy k\u00e9perny\u0151felbont\u00e1s, a felhaszn\u00e1l\u00f3k akt\u00edv, azonos\u00edt\u00e1si c\u00e9l\u00fa eszk\u00f6zleolvas\u00e1sra vonatkoz\u00f3 kifejezett feliratkoz\u00e1sa n\u00e9lk\u00fcl.\n* Az ilyen azonos\u00edt\u00f3t az eszk\u00f6z ism\u00e9telt azonos\u00edt\u00e1sa \u00e9rdek\u00e9ben haszn\u00e1lhatj\u00e1k fel.\n"}},"specialFeatures":{"1":{"id":1,"name":"Pontos geolok\u00e1ci\u00f3s adatok felhaszn\u00e1l\u00e1sa","description":"Az \u00d6n pontos geolok\u00e1ci\u00f3s adatai egy vagy t\u00f6bb c\u00e9lra is felhaszn\u00e1lhat\u00f3k. Ez azt jelenti, hogy az \u00d6n f\u00f6ldrajzi elhelyezked\u00e9se n\u00e9h\u00e1ny m\u00e9teres pontoss\u00e1g\u00fa lehet.","descriptionLegal":"A besz\u00e1ll\u00edt\u00f3k:\n* \u00d6sszegy\u0171jthetik \u00e9s kezelhetik a pontos geolok\u00e1ci\u00f3s adatokat egy vagy t\u00f6bb c\u00e9l \u00e9rdek\u00e9ben.\nMegjegyz\u00e9s: A pontos geolok\u00e1ci\u00f3 azt jelenti, hogy nincsenek korl\u00e1toz\u00e1sok a felhaszn\u00e1l\u00f3 hely\u00e9nek pontoss\u00e1g\u00e1ra vonatkoz\u00f3an; ez t\u00f6bb m\u00e9teres pontoss\u00e1g\u00fa lehet.\n"},"2":{"id":2,"name":"Az eszk\u00f6z jellemz\u0151inek akt\u00edv vizsg\u00e1lata az azonos\u00edt\u00e1shoz","description":"Az \u00d6n eszk\u00f6ze az eszk\u00f6z egyedi jellemz\u0151ire vonatkoz\u00f3 kombin\u00e1ci\u00f3 vizsg\u00e1lat\u00e1val azonos\u00edthat\u00f3.","descriptionLegal":"A besz\u00e1ll\u00edt\u00f3k:\n* L\u00e9trehozhatnak valamely azonos\u00edt\u00f3t egy adott eszk\u00f6z, konkr\u00e9t jellemz\u0151k \u00e9rdek\u00e9ben t\u00f6rt\u00e9n\u0151, akt\u00edv vizsg\u00e1lata sor\u00e1n gy\u0171jt\u00f6tt adatok alapj\u00e1n, pl. telep\u00edtett bet\u0171t\u00edpusok vagy k\u00e9perny\u0151felbont\u00e1s.\n* Az ilyen azonos\u00edt\u00f3t az eszk\u00f6z ism\u00e9telt azonos\u00edt\u00e1sa \u00e9rdek\u00e9ben haszn\u00e1lhatj\u00e1k fel.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Pontos geolok\u00e1ci\u00f3s adatok \u00e9s azonos\u00edt\u00e1s az eszk\u00f6z vizsg\u00e1lat\u00e1val","description":"Felhaszn\u00e1lhat\u00f3k a pontos geolok\u00e1ci\u00f3s adatok \u00e9s az eszk\u00f6z jellemz\u0151ire vonatkoz\u00f3 inform\u00e1ci\u00f3k."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Alapvet\u0151 hirdet\u00e9sek \u00e9s hirdet\u00e9sm\u00e9r\u00e9s","description":"Alapvet\u0151 hirdet\u00e9sek szolg\u00e1ltathat\u00f3k. A hirdet\u00e9s teljes\u00edtm\u00e9nye m\u00e9rhet\u0151."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Szem\u00e9lyre szabott hirdet\u00e9sek","description":"A hirdet\u00e9sek profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3k. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a hirdet\u00e9sek magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Alapvet\u0151 hirdet\u00e9sek \u00e9s hirdet\u00e9sm\u00e9r\u00e9s","description":"Alapvet\u0151 hirdet\u00e9sek szolg\u00e1ltathat\u00f3k. A hirdet\u00e9s teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Alapvet\u0151 hirdet\u00e9sek, szem\u00e9lyre szabott hirdet\u00e9sek profilja \u00e9s hirdet\u00e9sm\u00e9r\u00e9s","description":"Alapvet\u0151 hirdet\u00e9sek szolg\u00e1ltathat\u00f3k. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a hirdet\u00e9sek magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A hirdet\u00e9s teljes\u00edtm\u00e9nye m\u00e9rhet\u0151."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Szem\u00e9lyre szabott hirdet\u00e9sek megjelen\u00edt\u00e9se \u00e9s m\u00e9r\u00e9se","description":"A hirdet\u00e9sek profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3k. A hirdet\u00e9s teljes\u00edtm\u00e9nye m\u00e9rhet\u0151."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Szem\u00e9lyre szabott hirdet\u00e9sek megjelen\u00edt\u00e9se, hirdet\u00e9sm\u00e9r\u00e9s \u00e9s n\u00e9zetts\u00e9gi adatok","description":"A hirdet\u00e9sek profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3k. A hirdet\u00e9s teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Szem\u00e9lyre szabott hirdet\u00e9sek \u00e9s hirdet\u00e9sm\u00e9r\u00e9s","description":"A hirdet\u00e9sek profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3k. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a hirdet\u00e9sek magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A hirdet\u00e9s teljes\u00edtm\u00e9nye m\u00e9rhet\u0151."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Szem\u00e9lyre szabott hirdet\u00e9sek, hirdet\u00e9sm\u00e9r\u00e9s \u00e9s n\u00e9zetts\u00e9gi adatok","description":"A hirdet\u00e9sek profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3k. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a hirdet\u00e9sek magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A hirdet\u00e9s teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Szem\u00e9lyre szabott hirdet\u00e9sek profilja \u00e9s megjelen\u00edt\u00e9se","description":"A hirdet\u00e9sek profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3k. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a hirdet\u00e9sek magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Szem\u00e9lyre szabott tartalom","description":"A tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a tartalom magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Szem\u00e9lyre szabott tartalom megjelen\u00edt\u00e9se \u00e9s tartalomm\u00e9r\u00e9s","description":"A tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3. A tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Szem\u00e9lyre szabott tartalom megjelen\u00edt\u00e9se, tartalomm\u00e9r\u00e9s \u00e9s n\u00e9zetts\u00e9gi adatok","description":"A tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3. A tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Szem\u00e9lyre szabott tartalom \u00e9s tartalomm\u00e9r\u00e9s","description":"A tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a tartalom magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Szem\u00e9lyre szabott tartalom, tartalomm\u00e9r\u00e9s \u00e9s n\u00e9zetts\u00e9gi adatok","description":"A tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a tartalom magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Szem\u00e9lyre szabott tartalom, tartalomm\u00e9r\u00e9s, n\u00e9zetts\u00e9gi adatok \u00e9s term\u00e9kfejleszt\u00e9s","description":"A tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a tartalom magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban. Az adatok felhaszn\u00e1lhat\u00f3k a felhaszn\u00e1l\u00f3i \u00e9lm\u00e9ny, a rendszerek \u00e9s a szoftverek \u00f6ssze\u00e1ll\u00edt\u00e1s\u00e1ra vagy jav\u00edt\u00e1s\u00e1ra"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Hirdet\u00e9s \u00e9s tartalom m\u00e9r\u00e9se, n\u00e9zetts\u00e9gi adatok","description":"A hirdet\u00e9s \u00e9s a tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Hirdet\u00e9s \u00e9s tartalom m\u00e9r\u00e9se","description":"A hirdet\u00e9s \u00e9s a tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Hirdet\u00e9sm\u00e9r\u00e9s \u00e9s n\u00e9zetts\u00e9gi adatok","description":"A hirdet\u00e9s m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Hirdet\u00e9s \u00e9s tartalom m\u00e9r\u00e9se, n\u00e9zetts\u00e9gi adatok \u00e9s term\u00e9kfejleszt\u00e9s","description":"A hirdet\u00e9s \u00e9s a tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban. Az adatok felhaszn\u00e1lhat\u00f3k a felhaszn\u00e1l\u00f3i \u00e9lm\u00e9ny, a rendszerek \u00e9s a szoftverek \u00f6ssze\u00e1ll\u00edt\u00e1s\u00e1hoz vagy jav\u00edt\u00e1s\u00e1hoz. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Tartalom m\u00e9r\u00e9se, n\u00e9zetts\u00e9gi adatok \u00e9s term\u00e9kfejleszt\u00e9s.","description":"A tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban. Az adatok felhaszn\u00e1lhat\u00f3k a felhaszn\u00e1l\u00f3i \u00e9lm\u00e9ny, a rendszerek \u00e9s a szoftverek \u00f6ssze\u00e1ll\u00edt\u00e1s\u00e1hoz vagy jav\u00edt\u00e1s\u00e1hoz."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Tartalom m\u00e9r\u00e9se \u00e9s term\u00e9kfejleszt\u00e9s","description":"A tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Az adatok felhaszn\u00e1lhat\u00f3k a felhaszn\u00e1l\u00f3i \u00e9lm\u00e9ny, a rendszerek \u00e9s a szoftverek \u00f6ssze\u00e1ll\u00edt\u00e1s\u00e1hoz vagy jav\u00edt\u00e1s\u00e1hoz."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Szem\u00e9lyre szabott hirdet\u00e9sek \u00e9s tartalom megjelen\u00edt\u00e9se, valamint a tartalom m\u00e9r\u00e9se","description":"A hirdet\u00e9sek \u00e9s a tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3k. A hirdet\u00e9s \u00e9s a tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Szem\u00e9lyre szabott hirdet\u00e9sek \u00e9s tartalom megjelen\u00edt\u00e9se, hirdet\u00e9s \u00e9s tartalom m\u00e9r\u00e9se, valamint n\u00e9zetts\u00e9gi adatok","description":"A hirdet\u00e9sek \u00e9s a tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3k. A hirdet\u00e9s \u00e9s a tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban. Az adatok felhaszn\u00e1lhat\u00f3k a felhaszn\u00e1l\u00f3i \u00e9lm\u00e9ny, a rendszerek \u00e9s a szoftverek \u00f6ssze\u00e1ll\u00edt\u00e1s\u00e1hoz vagy jav\u00edt\u00e1s\u00e1hoz."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Szem\u00e9lyre szabott hirdet\u00e9sek \u00e9s tartalom, valamint a tartalom m\u00e9r\u00e9se","description":"A hirdet\u00e9sek \u00e9s a tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3k. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a hirdet\u00e9sek \u00e9s a tartalom magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A hirdet\u00e9s \u00e9s a tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Szem\u00e9lyre szabott hirdet\u00e9sek \u00e9s tartalom, hirdet\u00e9s \u00e9s tartalom m\u00e9r\u00e9se, valamint n\u00e9zetts\u00e9gi adatok","description":"A hirdet\u00e9sek \u00e9s a tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3k. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a hirdet\u00e9sek \u00e9s a tartalom magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A hirdet\u00e9s \u00e9s a tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Szem\u00e9lyre szabott hirdet\u00e9sek \u00e9s tartalomprofil","description":"Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a hirdet\u00e9sek \u00e9s a tartalom szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Szem\u00e9lyre szabott hirdet\u00e9sek \u00e9s tartalom megjelen\u00edt\u00e9se","description":"A hirdet\u00e9sek \u00e9s a tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3k."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Alapvet\u0151 hirdet\u00e9sek \u00e9s tartalom m\u00e9r\u00e9se, valamint n\u00e9zetts\u00e9gi adatok","description":"Alapvet\u0151 hirdet\u00e9sek szolg\u00e1ltathat\u00f3k. A hirdet\u00e9s \u00e9s a tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Szem\u00e9lyre szabott hirdet\u00e9sek megjelen\u00edt\u00e9se, szem\u00e9lyre szabott tartalom, hirdet\u00e9s \u00e9s tartalom m\u00e9r\u00e9se, valamint n\u00e9zetts\u00e9gi adatok","description":"A hirdet\u00e9sek \u00e9s a tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3k. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a tartalom magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A hirdet\u00e9s \u00e9s a tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Szem\u00e9lyre szabott hirdet\u00e9sek megjelen\u00edt\u00e9se, szem\u00e9lyre szabott tartalom, hirdet\u00e9s \u00e9s tartalom m\u00e9r\u00e9se, n\u00e9zetts\u00e9gi adatok \u00e9s term\u00e9kfejleszt\u00e9s","description":"A hirdet\u00e9sek \u00e9s a tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3k. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a tartalom magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben.A hirdet\u00e9s \u00e9s a tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban. Az adatok felhaszn\u00e1lhat\u00f3k a felhaszn\u00e1l\u00f3i \u00e9lm\u00e9ny, a rendszerek \u00e9s a szoftverek \u00f6ssze\u00e1ll\u00edt\u00e1s\u00e1hoz vagy jav\u00edt\u00e1s\u00e1hoz."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Alapvet\u0151 hirdet\u00e9sek, szem\u00e9lyre szabott tartalom, hirdet\u00e9s \u00e9s tartalom m\u00e9r\u00e9se, valamint n\u00e9zetts\u00e9gi adatok","description":"Alapvet\u0151 hirdet\u00e9sek szolg\u00e1ltathat\u00f3k. A tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a tartalom magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A hirdet\u00e9s \u00e9s a tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Alapvet\u0151 hirdet\u00e9sek, szem\u00e9lyre szabott tartalom, hirdet\u00e9s \u00e9s tartalom m\u00e9r\u00e9se, n\u00e9zetts\u00e9gi adatok \u00e9s term\u00e9kfejleszt\u00e9s","description":"Alapvet\u0151 hirdet\u00e9sek szolg\u00e1ltathat\u00f3k. A tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a tartalom magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A hirdet\u00e9s \u00e9s a tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban. Az adatok felhaszn\u00e1lhat\u00f3k a felhaszn\u00e1l\u00f3i \u00e9lm\u00e9ny, a rendszerek \u00e9s a szoftverek \u00f6ssze\u00e1ll\u00edt\u00e1s\u00e1hoz vagy jav\u00edt\u00e1s\u00e1hoz."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Alapvet\u0151 hirdet\u00e9sek, szem\u00e9lyre szabott tartalom, tartalom m\u00e9r\u00e9se, valamint n\u00e9zetts\u00e9gi adatok","description":"Alapvet\u0151 hirdet\u00e9sek szolg\u00e1ltathat\u00f3k. A tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a tartalom magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A hirdet\u00e9s \u00e9s a tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Alapvet\u0151 hirdet\u00e9sek, szem\u00e9lyre szabott tartalom, tartalom m\u00e9r\u00e9se, n\u00e9zetts\u00e9gi adatok \u00e9s term\u00e9kfejleszt\u00e9s","description":"Alapvet\u0151 hirdet\u00e9sek szolg\u00e1ltathat\u00f3k. A tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a tartalom magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban. Az adatok felhaszn\u00e1lhat\u00f3k a felhaszn\u00e1l\u00f3i \u00e9lm\u00e9ny, a rendszerek \u00e9s a szoftverek \u00f6ssze\u00e1ll\u00edt\u00e1s\u00e1hoz vagy jav\u00edt\u00e1s\u00e1hoz."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Alapvet\u0151 hirdet\u00e9sek, szem\u00e9lyre szabott tartalom \u00e9s a hirdet\u00e9sek m\u00e9r\u00e9se","description":"Alapvet\u0151 hirdet\u00e9sek szolg\u00e1ltathat\u00f3k. A tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a tartalom magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A hirdet\u00e9s teljes\u00edtm\u00e9nye m\u00e9rhet\u0151"},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Alapvet\u0151 hirdet\u00e9sek, szem\u00e9lyre szabott tartalom, hirdet\u00e9s m\u00e9r\u00e9se \u00e9s term\u00e9kfejleszt\u00e9s","description":"Alapvet\u0151 hirdet\u00e9sek szolg\u00e1ltathat\u00f3k. A tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a tartalom magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A hirdet\u00e9s teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Az adatok felhaszn\u00e1lhat\u00f3k a felhaszn\u00e1l\u00f3i \u00e9lm\u00e9ny, a rendszerek \u00e9s a szoftverek \u00f6ssze\u00e1ll\u00edt\u00e1s\u00e1hoz vagy jav\u00edt\u00e1s\u00e1hoz."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Szem\u00e9lyre szabott hirdet\u00e9sek, hirdet\u00e9s m\u00e9r\u00e9se \u00e9s term\u00e9kfejleszt\u00e9s","description":"A hirdet\u00e9sek profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3k. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a hirdet\u00e9sek magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A hirdet\u00e9s teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Az adatok felhaszn\u00e1lhat\u00f3k a felhaszn\u00e1l\u00f3i \u00e9lm\u00e9ny, a rendszerek \u00e9s a szoftverek \u00f6ssze\u00e1ll\u00edt\u00e1s\u00e1hoz vagy jav\u00edt\u00e1s\u00e1hoz."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Szem\u00e9lyre szabott hirdet\u00e9sek, hirdet\u00e9s m\u00e9r\u00e9se, n\u00e9zetts\u00e9gi adatok \u00e9s term\u00e9kfejleszt\u00e9s","description":"A hirdet\u00e9sek profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3k. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a hirdet\u00e9sek magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A hirdet\u00e9s teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban. Az adatok felhaszn\u00e1lhat\u00f3k a felhaszn\u00e1l\u00f3i \u00e9lm\u00e9ny, a rendszerek \u00e9s a szoftverek \u00f6ssze\u00e1ll\u00edt\u00e1s\u00e1hoz vagy jav\u00edt\u00e1s\u00e1hoz."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Szem\u00e9lyre szabott hirdet\u00e9sek, hirdet\u00e9s \u00e9s tartalom m\u00e9r\u00e9se, n\u00e9zetts\u00e9gi adatok \u00e9s term\u00e9kfejleszt\u00e9s","description":"A hirdet\u00e9sek profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3k. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a hirdet\u00e9sek magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A hirdet\u00e9s \u00e9s a tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban. Az adatok felhaszn\u00e1lhat\u00f3k a felhaszn\u00e1l\u00f3i \u00e9lm\u00e9ny, a rendszerek \u00e9s a szoftverek \u00f6ssze\u00e1ll\u00edt\u00e1s\u00e1hoz vagy jav\u00edt\u00e1s\u00e1hoz."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Szem\u00e9lyre szabott hirdet\u00e9sek, szem\u00e9lyre szabott tartalom megjelen\u00edt\u00e9se, hirdet\u00e9s \u00e9s tartalom m\u00e9r\u00e9se, n\u00e9zetts\u00e9gi adatok \u00e9s term\u00e9kfejleszt\u00e9s","description":"A hirdet\u00e9sek \u00e9s a tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3k. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a hirdet\u00e9sek magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A hirdet\u00e9s \u00e9s a tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban. Az adatok felhaszn\u00e1lhat\u00f3k a felhaszn\u00e1l\u00f3i \u00e9lm\u00e9ny, a rendszerek \u00e9s a szoftverek \u00f6ssze\u00e1ll\u00edt\u00e1s\u00e1hoz vagy jav\u00edt\u00e1s\u00e1hoz."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Szem\u00e9lyre szabott hirdet\u00e9sek \u00e9s tartalom, hirdet\u00e9s \u00e9s tartalom m\u00e9r\u00e9se, n\u00e9zetts\u00e9gi adatok \u00e9s term\u00e9kfejleszt\u00e9s","description":"A hirdet\u00e9sek \u00e9s a tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3k. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a hirdet\u00e9sek \u00e9s a tartalom magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A hirdet\u00e9s \u00e9s a tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban. Az adatok felhaszn\u00e1lhat\u00f3k a felhaszn\u00e1l\u00f3i \u00e9lm\u00e9ny, a rendszerek \u00e9s a szoftverek \u00f6ssze\u00e1ll\u00edt\u00e1s\u00e1hoz vagy jav\u00edt\u00e1s\u00e1hoz"}}} \ No newline at end of file +{"vendorListVersion":94,"lastUpdated":"2021-06-10T16:43:59Z","purposes":{"1":{"id":1,"name":"Az eszk\u00f6z\u00f6n t\u00e1rolt inform\u00e1ci\u00f3k t\u00e1rol\u00e1sa \u00e9s/vagy el\u00e9r\u00e9se","description":"A s\u00fctik, az eszk\u00f6zazonos\u00edt\u00f3k vagy m\u00e1s inform\u00e1ci\u00f3k az eszk\u00f6z\u00e9n t\u00e1rolhat\u00f3k vagy azon hozz\u00e1f\u00e9rhet\u0151k, az \u00d6n r\u00e9sz\u00e9re bemutatott c\u00e9lokra.","descriptionLegal":"A besz\u00e1ll\u00edt\u00f3k:\n* T\u00e1rolhatj\u00e1k \u00e9s el\u00e9rhetik az eszk\u00f6z\u00f6n tal\u00e1lhat\u00f3 inform\u00e1ci\u00f3kat, p\u00e9ld\u00e1ul a felhaszn\u00e1l\u00f3nak bemutatott s\u00fctiket \u00e9s eszk\u00f6zazonos\u00edt\u00f3kat.\n"},"2":{"id":2,"name":"Alapvet\u0151 hirdet\u00e9sek kiv\u00e1laszt\u00e1sa","description":"A hirdet\u00e9sek megjelen\u00edthet\u0151k az \u00d6n sz\u00e1m\u00e1ra a megtekintett tartalom, a haszn\u00e1lt alkalmaz\u00e1s, a hozz\u00e1vet\u0151leges tart\u00f3zkod\u00e1si helye, vagy eszk\u00f6z\u00e9nek t\u00edpusa alapj\u00e1n.","descriptionLegal":"Az alapvet\u0151 hirdet\u00e9sek kiv\u00e1laszt\u00e1sa \u00e9rdek\u00e9bena besz\u00e1ll\u00edt\u00f3k:\n* Val\u00f3s idej\u0171 inform\u00e1ci\u00f3kat haszn\u00e1lhatnak arra vonatkoz\u00f3an, hogy a hirdet\u00e9s milyen k\u00f6rnyezetben jelenjen meg, valamint a hirdet\u00e9s bemutat\u00e1s\u00e1ra, bele\u00e9rtve a tartalomra \u00e9s az eszk\u00f6zre vonatkoz\u00f3 inform\u00e1ci\u00f3kat, p\u00e9ld\u00e1ul az eszk\u00f6z t\u00edpus\u00e1t \u00e9s k\u00e9pess\u00e9geit, a felhaszn\u00e1l\u00f3i \u00fcgyn\u00f6k\u00f6t, az URL-t \u00e9s az IP-c\u00edmet\n* Felhaszn\u00e1lhatj\u00e1k a felhaszn\u00e1l\u00f3 nem pontos geolok\u00e1ci\u00f3s adatait\n* Szab\u00e1lyozhatj\u00e1k a felhaszn\u00e1l\u00f3k sz\u00e1m\u00e1ra megjelen\u00edtett hirdet\u00e9sek gyakoris\u00e1g\u00e1t.\n* Meghat\u00e1rozhatj\u00e1k a hirdet\u00e9sek megjelen\u00edt\u00e9s\u00e9nek sorrendj\u00e9t.\n* Megakad\u00e1lyozhatj\u00e1k a megjelen\u00edt\u00e9st, amennyiben egy hirdet\u00e9s nem megfelel\u0151 szerkeszt\u0151i (m\u00e1rkabiztons\u00e1g szempontj\u00e1b\u00f3l nem megfelel\u0151) k\u00f6rnyezetben jelenne meg\nA besz\u00e1ll\u00edt\u00f3k nem:\n* Nem hozhatnak l\u00e9tre szem\u00e9lyre szabott hirdet\u00e9si profilokat ezen inform\u00e1ci\u00f3k felhaszn\u00e1l\u00e1s\u00e1val a j\u00f6v\u0151beni hirdet\u00e9sek kiv\u00e1laszt\u00e1s\u00e1hoz,szem\u00e9lyre szabott hirdet\u00e9si profilok l\u00e9trehoz\u00e1s\u00e1ra vonatkoz\u00f3 k\u00fcl\u00f6n jogalap n\u00e9lk\u00fcl.\nMegjegyz\u00e9s: A nem pontos kifejez\u00e9s kiz\u00e1r\u00f3lag hozz\u00e1vet\u0151leges helyet jelent, ide\u00e9rtve egy legal\u00e1bb 500 m\u00e9teres sugar\u00fa k\u00f6rt.\n"},"3":{"id":3,"name":"Szem\u00e9lyre szabott hirdet\u00e9si profil l\u00e9trehoz\u00e1sa","description":"Profilt hozhatnak l\u00e9tre \u00d6nre \u00e9s \u00e9rdekl\u0151d\u00e9si k\u00f6r\u00e9re vonatkoz\u00f3an, az \u00d6n sz\u00e1m\u00e1ra relev\u00e1ns, szem\u00e9lyre szabott hirdet\u00e9sek megjelen\u00edt\u00e9s\u00e9hez.","descriptionLegal":"Szem\u00e9lyre szabott hirdet\u00e9si profil l\u00e9trehoz\u00e1s\u00e1hoz a besz\u00e1ll\u00edt\u00f3k:\n* Inform\u00e1ci\u00f3kat gy\u0171jthetnek a felhaszn\u00e1l\u00f3r\u00f3l, bele\u00e9rtve a felhaszn\u00e1l\u00f3 tev\u00e9kenys\u00e9g\u00e9t, \u00e9rdekl\u0151d\u00e9si k\u00f6r\u00e9t, milyen weboldalakat vagy alkalmaz\u00e1sokat keresett fel, demogr\u00e1fiai adatait vagy f\u00f6ldrajzi elhelyezked\u00e9s\u00e9t, annak \u00e9rdek\u00e9ben, hogy szem\u00e9lyre szabott hirdet\u00e9sekben alkalmazhat\u00f3 felhaszn\u00e1l\u00f3i profilt hozzanak l\u00e9tre, illetve ilyet szerkesszenek.\n* Kombin\u00e1lja ezeket az inform\u00e1ci\u00f3kat m\u00e1s, kor\u00e1bban \u00f6sszegy\u0171jt\u00f6tt inform\u00e1ci\u00f3kkal, bele\u00e9rtve az \u00f6sszes webhelyet \u00e9s alkalmaz\u00e1st, hogy l\u00e9trehozzon vagy szerkesszen egy felhaszn\u00e1l\u00f3i profilt a szem\u00e9lyre szabott rekl\u00e1moz\u00e1shoz.\n"},"4":{"id":4,"name":"Szem\u00e9lyre szabott hirdet\u00e9sek kiv\u00e1laszt\u00e1sa","description":"Szem\u00e9lyre szabott hirdet\u00e9sek jelen\u00edthet\u0151k meg az \u00d6nr\u0151l k\u00e9sz\u00fclt profil alapj\u00e1n.","descriptionLegal":"A szem\u00e9lyre szabott hirdet\u00e9sek kiv\u00e1laszt\u00e1s\u00e1hoz a besz\u00e1ll\u00edt\u00f3k:\n* Szem\u00e9lyre szabott hirdet\u00e9seket v\u00e1laszthatnak a felhaszn\u00e1l\u00f3i profil vagy m\u00e1s kor\u00e1bbi felhaszn\u00e1l\u00f3i adatok alapj\u00e1n, bele\u00e9rtve a felhaszn\u00e1l\u00f3 kor\u00e1bbi tev\u00e9kenys\u00e9g\u00e9t, \u00e9rdekl\u0151d\u00e9si k\u00f6r\u00e9t, oldalak vagy alkalmaz\u00e1sok megtekint\u00e9s\u00e9t, f\u00f6ldrajzi elhelyezked\u00e9s\u00e9t vagy demogr\u00e1fiai adatait.\n"},"5":{"id":5,"name":"Szem\u00e9lyre szabott tartalomprofil l\u00e9trehoz\u00e1sa","description":"Profilt hozhatnak l\u00e9tre \u00d6nre \u00e9s \u00e9rdekl\u0151d\u00e9si k\u00f6r\u00e9re vonatkoz\u00f3an, az \u00d6n sz\u00e1m\u00e1ra relev\u00e1ns, szem\u00e9lyre szabott tartalmak megjelen\u00edt\u00e9s\u00e9hez.","descriptionLegal":"Szem\u00e9lyre szabott tartalomprofil l\u00e9trehoz\u00e1s\u00e1hoz a besz\u00e1ll\u00edt\u00f3k:\n* Inform\u00e1ci\u00f3kat gy\u0171jthetnek a felhaszn\u00e1l\u00f3r\u00f3l, bele\u00e9rtve a felhaszn\u00e1l\u00f3 tev\u00e9kenys\u00e9g\u00e9t, \u00e9rdekl\u0151d\u00e9si k\u00f6r\u00e9t, oldalak vagy alkalmaz\u00e1sok megtekint\u00e9s\u00e9t, demogr\u00e1fiai adatait vagy f\u00f6ldrajzi elhelyezked\u00e9s\u00e9t, hogy a tartalom szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben felhaszn\u00e1l\u00f3i profilt hozzanak l\u00e9tre vagy ilyet szerkesszenek.\n* Kombin\u00e1lja ezeket az inform\u00e1ci\u00f3kat m\u00e1s, kor\u00e1bban \u00f6sszegy\u0171jt\u00f6tt inform\u00e1ci\u00f3kkal, bele\u00e9rtve az \u00f6sszes webhelyet \u00e9s alkalmaz\u00e1st, felhaszn\u00e1l\u00f3i profil l\u00e9trehoz\u00e1s\u00e1hoz vagy szerkeszt\u00e9s\u00e9hez a tartalom szem\u00e9lyre szab\u00e1s\u00e1hoz.\n"},"6":{"id":6,"name":"Szem\u00e9lyre szabott tartalom kiv\u00e1laszt\u00e1sa","description":"Szem\u00e9lyre szabott tartalom jelen\u00edthet\u0151 meg az \u00d6nr\u0151l k\u00e9sz\u00fclt profil alapj\u00e1n.","descriptionLegal":"A szem\u00e9lyre szabott tartalmak kiv\u00e1laszt\u00e1s\u00e1hoz a besz\u00e1ll\u00edt\u00f3k:\n* Szem\u00e9lyre szabott tartalmakat v\u00e1laszthatnak egy felhaszn\u00e1l\u00f3i profil vagy m\u00e1s kor\u00e1bbi felhaszn\u00e1l\u00f3i adatok alapj\u00e1n, bele\u00e9rtve a felhaszn\u00e1l\u00f3 kor\u00e1bbi tev\u00e9kenys\u00e9g\u00e9t, \u00e9rdekl\u0151d\u00e9si k\u00f6r\u00e9t, oldalak vagy alkalmaz\u00e1sok megtekint\u00e9s\u00e9t, f\u00f6ldrajzi elhelyezked\u00e9s\u00e9t vagy demogr\u00e1fiai adatait.\n"},"7":{"id":7,"name":"A hirdet\u00e9s teljes\u00edtm\u00e9ny\u00e9nek m\u00e9r\u00e9se","description":"M\u00e9rhet\u0151 az \u00d6n \u00e1ltal megtekintett hirdet\u00e9sek teljes\u00edtm\u00e9nye \u00e9s hat\u00e9konys\u00e1ga.","descriptionLegal":"A hirdet\u00e9s teljes\u00edtm\u00e9ny\u00e9nek m\u00e9r\u00e9s\u00e9hez a besz\u00e1ll\u00edt\u00f3k:\n* Megm\u00e9rhetik, hogy a hirdet\u00e9sek eljutottak-e a felhaszn\u00e1l\u00f3khoz, \u00e9s milyen azok r\u00e1juk gyakorolt hat\u00e1sa\n* Jelent\u00e9st adhatnak a hirdet\u00e9sekr\u0151l, bele\u00e9rtve azok hat\u00e9konys\u00e1g\u00e1t \u00e9s teljes\u00edtm\u00e9ny\u00e9t\n* Jelent\u00e9st adathatnak azokr\u00f3l a felhaszn\u00e1l\u00f3kr\u00f3l, akik kapcsolatba ker\u00fcltek a hirdet\u00e9sekkel, a felhaszn\u00e1l\u00f3i interakci\u00f3 sor\u00e1n megfigyelt adatok alapj\u00e1n\n* Jelent\u00e9st adhatnak a kiad\u00f3knak a vagyont\u00e1rgyukon megjelen\u00edtett hirdet\u00e9sekr\u0151l\n* Megm\u00e9rhetik, hogy egy hirdet\u00e9s megfelel\u0151 szerkeszt\u0151i k\u00f6rnyezetben (m\u00e1rkabiztons\u00e1g) m\u0171k\u00f6dik-e\n* Meghat\u00e1rozhatj\u00e1k a hirdet\u00e9sek sz\u00e1zal\u00e9k\u00e1t, amelyeket l\u00e1thatnak, \u00e9s a megtekint\u00e9s id\u0151tartam\u00e1t\nA besz\u00e1ll\u00edt\u00f3k nem:\n* Nem alkalmazhatnak panel- vagy hasonl\u00f3 eredet\u0171 n\u00e9zetts\u00e9gi adatokat a hirdet\u00e9sm\u00e9r\u00e9si adatokhoz an\u00e9lk\u00fcl, hogy k\u00fcl\u00f6n jogalapjuk lenne piackutat\u00e1si tev\u00e9kenys\u00e9gre, n\u00e9zetts\u00e9gi adatok gener\u00e1l\u00e1sa \u00e9rdek\u00e9ben.\n"},"8":{"id":8,"name":"A tartalom teljes\u00edtm\u00e9ny\u00e9nek m\u00e9r\u00e9se","description":"M\u00e9rhet\u0151 az \u00d6n \u00e1ltal megtekintett tartalom teljes\u00edtm\u00e9nye \u00e9s hat\u00e9konys\u00e1ga.","descriptionLegal":"A tartalom teljes\u00edtm\u00e9ny\u00e9nek m\u00e9r\u00e9s\u00e9hez a besz\u00e1ll\u00edt\u00f3k:\n* Megm\u00e9rhetik \u00e9s jelent\u00e9st k\u00e9sz\u00edthetnek arr\u00f3l, hogy a tartalom eljutott-e a felhaszn\u00e1l\u00f3khoz \u00e9s milyen annak a r\u00e1juk gyakorolt hat\u00e1sa.\n* K\u00f6zvetlen\u00fcl m\u00e9rhet\u0151 vagy ismert inform\u00e1ci\u00f3k alapj\u00e1n, jelent\u00e9st adhatnak azon felhaszn\u00e1l\u00f3kr\u00f3l, akik kapcsolatba ker\u00fcltek a tartalommal\nA besz\u00e1ll\u00edt\u00f3k nem:\n* Nem m\u00e9rhetik, hogy a hirdet\u00e9sek (bele\u00e9rtve az anyanyelvi hirdet\u00e9seket is) eljutottak-e a felhaszn\u00e1l\u00f3khoz \u00e9s milyen azok r\u00e1juk gyakorolt hat\u00e1sa.\n* Nem alkalmazhatnak panel- vagy hasonl\u00f3 eredet\u0171 n\u00e9zetts\u00e9gi adatokat a hirdet\u00e9sm\u00e9r\u00e9si adatokhoz an\u00e9lk\u00fcl, hogy k\u00fcl\u00f6n jogalapjuk lenne piackutat\u00e1s alkalmaz\u00e1s\u00e1ra, a n\u00e9zetts\u00e9gi adatok gener\u00e1l\u00e1sa \u00e9rdek\u00e9ben.\n"},"9":{"id":9,"name":"Piackutat\u00e1s alkalmaz\u00e1sa n\u00e9zetts\u00e9gi adatok gener\u00e1l\u00e1s\u00e1hoz","description":"Piackutat\u00e1s seg\u00edts\u00e9g\u00e9vel tov\u00e1bbi inform\u00e1ci\u00f3k kaphat\u00f3k a k\u00f6z\u00f6ns\u00e9gr\u0151l, akik megl\u00e1togatj\u00e1k a webhelyeket/alkalmaz\u00e1sokat, \u00e9s megtekintik a hirdet\u00e9seket.","descriptionLegal":"N\u00e9zetts\u00e9gi adatok gener\u00e1l\u00e1sa \u00e9rdek\u00e9ben, piackutat\u00e1s felhaszn\u00e1l\u00e1s\u00e1val, a besz\u00e1ll\u00edt\u00f3k:\n* \u00d6sszes\u00edtett jelent\u00e9st ny\u00fajthatnak a hirdet\u0151knek vagy k\u00e9pvisel\u0151iknek a hirdet\u00e9seik \u00e1ltal el\u00e9rhet\u0151 k\u00f6z\u00f6ns\u00e9gekr\u0151l, a panelalap\u00fa \u00e9s hasonl\u00f3 m\u00f3don szerzett n\u00e9zetts\u00e9gi adatok r\u00e9v\u00e9n.\n* \u00d6sszes\u00edtett jelent\u00e9st ny\u00fajthatnak a kiad\u00f3knak azokr\u00f3l a k\u00f6z\u00f6ns\u00e9gekr\u0151l, amelyek sz\u00e1m\u00e1ra vagyont\u00e1rgyukon megjelen\u00edtett tartalmat \u00e9s/vagy hirdet\u00e9seket szolg\u00e1ltattak vagy azokkal kapcsolatba ker\u00fcltek, panelalap\u00fa \u00e9s hasonl\u00f3an szerzett n\u00e9zetts\u00e9gi adatok alkalmaz\u00e1s\u00e1val.\n* \u00d6sszekapcsolhatnak offline adatokat egy online felhaszn\u00e1l\u00f3val piackutat\u00e1s c\u00e9lj\u00e1b\u00f3l, hogy n\u00e9zetts\u00e9gi adatokat gener\u00e1ljanak, ha a besz\u00e1ll\u00edt\u00f3k meger\u0151s\u00edtett\u00e9k az offline adatforr\u00e1sok egyeztet\u00e9s\u00e9t \u00e9s \u00f6sszevon\u00e1s\u00e1t (1. funkci\u00f3)\nA besz\u00e1ll\u00edt\u00f3k nem:\n* Nem m\u00e9rhetik az adott felhaszn\u00e1l\u00f3 r\u00e9sz\u00e9re szolg\u00e1ltatott vagy \u00e1ltaluk megtekintett hirdet\u00e9sek teljes\u00edtm\u00e9ny\u00e9t \u00e9s hat\u00e9konys\u00e1g\u00e1t, a hirdet\u00e9s teljes\u00edtm\u00e9ny\u00e9nek m\u00e9r\u00e9s\u00e9re szolg\u00e1l\u00f3 k\u00fcl\u00f6n jogalap n\u00e9lk\u00fcl.\n* Nem m\u00e9rhetik, hogy egy adott felhaszn\u00e1l\u00f3 r\u00e9sz\u00e9re milyen tartalmat szolg\u00e1ltattak, \u00e9s azzal hogyan ker\u00fclt kapcsolatba, a tartalom teljes\u00edtm\u00e9ny\u00e9nek m\u00e9r\u00e9s\u00e9re szolg\u00e1l\u00f3 k\u00fcl\u00f6n jogalap n\u00e9lk\u00fcl.\n"},"10":{"id":10,"name":"Term\u00e9kek fejleszt\u00e9se \u00e9s jav\u00edt\u00e1sa","description":"Az \u00d6n adatai felhaszn\u00e1lhat\u00f3k a megl\u00e9v\u0151 rendszerek \u00e9s szoftverek jav\u00edt\u00e1sa, valamint az \u00faj term\u00e9kek fejleszt\u00e9se \u00e9rdek\u00e9ben","descriptionLegal":"\u00daj term\u00e9kek fejleszt\u00e9se, \u00e9s a term\u00e9kek jav\u00edt\u00e1sa \u00e9rdek\u00e9ben a besz\u00e1ll\u00edt\u00f3k:\n* Felhaszn\u00e1lhatj\u00e1k az inform\u00e1ci\u00f3kat a megl\u00e9v\u0151 term\u00e9kek \u00faj funkci\u00f3kkal t\u00f6rt\u00e9n\u0151 feljav\u00edt\u00e1sa, valamint \u00faj term\u00e9kek fejleszt\u00e9se \u00e9rdek\u00e9ben\n* G\u00e9pi tanul\u00e1s \u00fatj\u00e1n l\u00e9trehozhatnak \u00faj modelleket \u00e9s algoritmusokat\nA besz\u00e1ll\u00edt\u00f3k nem:\n* Nem v\u00e9gezhetnek semmif\u00e9le egy\u00e9b adatkezel\u00e9si m\u0171veletet ezen"}},"specialPurposes":{"1":{"id":1,"name":"Biztons\u00e1g, csal\u00e1s megel\u0151z\u00e9se \u00e9s hibakeres\u00e9s biztos\u00edt\u00e1sa","description":"Az \u00d6n adatai felhaszn\u00e1lhat\u00f3k a csal\u00e1rd tev\u00e9kenys\u00e9gek ellen\u0151rz\u00e9se \u00e9s megel\u0151z\u00e9se \u00e9rdek\u00e9ben, valamint a rendszerek \u00e9s folyamatok megfelel\u0151 \u00e9s biztons\u00e1gos m\u0171k\u00f6d\u00e9s\u00e9nek biztos\u00edt\u00e1s\u00e1ra.","descriptionLegal":"A biztons\u00e1g, csal\u00e1s megel\u0151z\u00e9se \u00e9s a hibakeres\u00e9s biztos\u00edt\u00e1sa \u00e9rdek\u00e9ben a besz\u00e1ll\u00edt\u00f3k:\n* Meggy\u0151z\u0151dhetnek arr\u00f3l, hogy az adatok tov\u00e1bb\u00edt\u00e1s\u00e1ra biztons\u00e1gos m\u00f3don ker\u00fcl sor\n* \u00c9szlelhetik \u00e9s megel\u0151zhetik a rosszindulat\u00fa, csal\u00e1rd, \u00e9rv\u00e9nytelen vagy jogellenes tev\u00e9kenys\u00e9geket.\n* Biztos\u00edthatj\u00e1k a rendszerek \u00e9s folyamatok helyes \u00e9s hat\u00e9kony m\u0171k\u00f6d\u00e9s\u00e9t, bele\u00e9rtve a megengedett c\u00e9llal m\u0171k\u00f6d\u0151 rendszerek \u00e9s folyamatok teljes\u00edtm\u00e9ny\u00e9nek figyelemmel k\u00eds\u00e9r\u00e9s\u00e9t \u00e9s jav\u00edt\u00e1s\u00e1t\nA besz\u00e1ll\u00edt\u00f3k nem:\n* Nem v\u00e9gezhetnek semmif\u00e9le egy\u00e9b adatkezel\u00e9si m\u0171veletet ezen c\u00e9l \u00e9rdek\u00e9ben, amelyre m\u00e1s c\u00e9lb\u00f3l adtak enged\u00e9lyt.\nMegjegyz\u00e9s: A biztons\u00e1g, a csal\u00e1sok megakad\u00e1lyoz\u00e1sa \u00e9s a hib\u00e1k kijav\u00edt\u00e1sa \u00e9rdek\u00e9ben gy\u0171jt\u00f6tt \u00e9s felhaszn\u00e1lt adatok tartalmazhatnak azonos\u00edt\u00e1s \u00e9rdek\u00e9ben automatikusan k\u00fcld\u00f6tt eszk\u00f6zjellemz\u0151ket, pontos geolok\u00e1ci\u00f3s adatokat \u00e9s az eszk\u00f6zjellemz\u0151k azonos\u00edt\u00e1s \u00e9rdek\u00e9ben t\u00f6rt\u00e9nt akt\u00edv leolvas\u00e1s\u00e1val nyert adatokat, kifejezett nyilv\u00e1noss\u00e1gra hozatal \u00e9s/vagy feliratkoz\u00e1s n\u00e9lk\u00fcl.\n"},"2":{"id":2,"name":"Hirdet\u00e9s vagy tartalom technikai szolg\u00e1ltat\u00e1sa","description":"Az \u00d6n eszk\u00f6ze olyan inform\u00e1ci\u00f3kat fogadhat \u00e9s k\u00fcldhet, amelyek lehet\u0151v\u00e9 teszik a hirdet\u00e9sek \u00e9s tartalom megjelen\u00edt\u00e9s\u00e9t, valamint a vel\u00fck val\u00f3 interakci\u00f3t.","descriptionLegal":"Az inform\u00e1ci\u00f3k k\u00f6zvet\u00edt\u00e9s\u00e9hez \u00e9s a m\u0171szaki k\u00e9r\u00e9sek megv\u00e1laszol\u00e1s\u00e1hoz a besz\u00e1ll\u00edt\u00f3k:\n* Felhaszn\u00e1lhatj\u00e1k a felhaszn\u00e1l\u00f3 IP-c\u00edm\u00e9t valamely hirdet\u00e9s interneten kereszt\u00fcl t\u00f6rt\u00e9n\u0151 eljuttat\u00e1s\u00e1hoz\n* A felhaszn\u00e1l\u00f3 interakci\u00f3j\u00e1ra hirdet\u00e9ssel v\u00e1laszolhatnak, a felhaszn\u00e1l\u00f3nak egy c\u00e9loldalra t\u00f6rt\u00e9n\u0151 ir\u00e1ny\u00edt\u00e1s\u00e1val\n* Felhaszn\u00e1lhatj\u00e1k a felhaszn\u00e1l\u00f3 IP-c\u00edm\u00e9t valamely tartalom interneten kereszt\u00fcl t\u00f6rt\u00e9n\u0151 eljuttat\u00e1s\u00e1hoz\n* A felhaszn\u00e1l\u00f3 interakci\u00f3j\u00e1ra tartalommal v\u00e1laszolhatnak, a felhaszn\u00e1l\u00f3nak egy c\u00e9loldalra t\u00f6rt\u00e9n\u0151 ir\u00e1ny\u00edt\u00e1s\u00e1val\n* Felhaszn\u00e1lhatj\u00e1k az eszk\u00f6z t\u00edpus\u00e1ra \u00e9s k\u00e9pess\u00e9geire vonatkoz\u00f3 inform\u00e1ci\u00f3kat hirdet\u00e9sek vagy tartalom eljuttat\u00e1s\u00e1hoz, p\u00e9ld\u00e1ul a megfelel\u0151 m\u00e9ret\u0171 hirdet\u00e9s kreat\u00edv vagy videof\u00e1jl \u00fatj\u00e1n val\u00f3 tov\u00e1bb\u00edt\u00e1sa \u00e9rdek\u00e9ben, az eszk\u00f6z \u00e1ltal t\u00e1mogatott form\u00e1tumban\nA besz\u00e1ll\u00edt\u00f3k nem:\n* Nem v\u00e9gezhetnek semmif\u00e9le egy\u00e9b adatkezel\u00e9si m\u0171veletet ezen c\u00e9l \u00e9rdek\u00e9ben, amelyre m\u00e1s c\u00e9lb\u00f3l adtak enged\u00e9lyt\n"}},"features":{"1":{"id":1,"name":"Offline adatforr\u00e1sok egyeztet\u00e9se \u00e9s \u00f6sszevon\u00e1sa","description":"Az offline adatforr\u00e1sokb\u00f3l sz\u00e1rmaz\u00f3 adatok \u00f6sszevonhat\u00f3k az \u00d6n online tev\u00e9kenys\u00e9g\u00e9vel, egy vagy t\u00f6bb c\u00e9l t\u00e1mogat\u00e1sa \u00e9rdek\u00e9ben.","descriptionLegal":"A besz\u00e1ll\u00edt\u00f3k:\n* \u00d6sszevonhatj\u00e1k az offline \u00e9s az interneten \u00f6sszegy\u0171jt\u00f6tt adatokat egy vagy t\u00f6bb c\u00e9lra, illetve k\u00fcl\u00f6nleges c\u00e9lok \u00e9rdek\u00e9ben.\n"},"2":{"id":2,"name":"K\u00fcl\u00f6nb\u00f6z\u0151 eszk\u00f6z\u00f6k \u00f6sszekapcsol\u00e1sa","description":"Meg\u00e1llap\u00edthat\u00f3 a k\u00fcl\u00f6nb\u00f6z\u0151 eszk\u00f6z\u00f6kr\u0151l, hogy azok \u00d6nh\u00f6z vagy a h\u00e1ztart\u00e1s\u00e1hoz tartoznak-e, \u00e9s azokat egy vagy t\u00f6bb c\u00e9l \u00e9rdek\u00e9ben haszn\u00e1lj\u00e1k-e.","descriptionLegal":"A besz\u00e1ll\u00edt\u00f3k:\n* Determinisztikus m\u00f3don meg\u00e1llap\u00edthatj\u00e1k, hogy k\u00e9t vagy t\u00f6bb eszk\u00f6z ugyanazon felhaszn\u00e1l\u00f3hoz vagy h\u00e1ztart\u00e1shoz tartozik-e\n* Val\u00f3sz\u00edn\u0171s\u00e9g meghat\u00e1roz\u00e1s\u00e1ra szolg\u00e1l\u00f3 elj\u00e1r\u00e1sokat alkalmazva meg\u00e1llap\u00edthatj\u00e1k, hogy k\u00e9t vagy t\u00f6bb eszk\u00f6z ugyanazon felhaszn\u00e1l\u00f3hoz vagy h\u00e1ztart\u00e1shoz tartozik-e\n* Akt\u00edvan vizsg\u00e1lhatj\u00e1k az eszk\u00f6z jellemz\u0151it a val\u00f3sz\u00edn\u0171s\u00e9g meghat\u00e1roz\u00e1s\u00e1hoz, ha a felhaszn\u00e1l\u00f3k enged\u00e9lyezt\u00e9k a besz\u00e1ll\u00edt\u00f3k sz\u00e1m\u00e1ra, hogy akt\u00edvan vizsg\u00e1lhass\u00e1k az eszk\u00f6z jellemz\u0151it az azonos\u00edt\u00e1shoz (2. k\u00fcl\u00f6nleges funkci\u00f3)\n"},"3":{"id":3,"name":"Az automatikusan elk\u00fcld\u00f6tt eszk\u00f6zjellemz\u0151k fogad\u00e1sa \u00e9s felhaszn\u00e1l\u00e1sa az azonos\u00edt\u00e1shoz","description":"Az eszk\u00f6z\u00e9t az automatikusan elk\u00fcld\u00f6tt inform\u00e1ci\u00f3k alapj\u00e1n k\u00fcl\u00f6nb\u00f6ztethetik meg a t\u00f6bbi eszk\u00f6zt\u0151l, p\u00e9ld\u00e1ul az IP-c\u00edm vagy a b\u00f6ng\u00e9sz\u0151 t\u00edpusa alapj\u00e1n.","descriptionLegal":"A besz\u00e1ll\u00edt\u00f3k:\n* L\u00e9trehozhatnak egy bizonyos azonos\u00edt\u00f3t az eszk\u00f6zr\u0151l automatikusan \u00f6sszegy\u0171jt\u00f6tt adatok, a meghat\u00e1rozott jellemz\u0151k, p\u00e9ld\u00e1ul IP-c\u00edm, felhaszn\u00e1l\u00f3i megb\u00edzotthoz tartoz\u00f3 karakterl\u00e1nccal.\n* Felhaszn\u00e1lhatj\u00e1k ezen azonos\u00edt\u00f3t valamely eszk\u00f6z ism\u00e9telt azonos\u00edt\u00e1sa \u00e9rdek\u00e9ben.\nA besz\u00e1ll\u00edt\u00f3k nem:\n* Hozhatnak l\u00e9tre azonos\u00edt\u00f3t egy adott eszk\u00f6z konkr\u00e9t jellemz\u0151k \u00e9rdek\u00e9ben t\u00f6rt\u00e9n\u0151, akt\u00edv vizsg\u00e1lata sor\u00e1n gy\u0171jt\u00f6tt adatok alapj\u00e1n, pl. telep\u00edtett bet\u0171t\u00edpusok vagy k\u00e9perny\u0151felbont\u00e1s, a felhaszn\u00e1l\u00f3k akt\u00edv, azonos\u00edt\u00e1si c\u00e9l\u00fa eszk\u00f6zleolvas\u00e1sra vonatkoz\u00f3 kifejezett feliratkoz\u00e1sa n\u00e9lk\u00fcl.\n* Az ilyen azonos\u00edt\u00f3t az eszk\u00f6z ism\u00e9telt azonos\u00edt\u00e1sa \u00e9rdek\u00e9ben haszn\u00e1lhatj\u00e1k fel.\n"}},"specialFeatures":{"1":{"id":1,"name":"Pontos geolok\u00e1ci\u00f3s adatok felhaszn\u00e1l\u00e1sa","description":"Az \u00d6n pontos geolok\u00e1ci\u00f3s adatai egy vagy t\u00f6bb c\u00e9lra is felhaszn\u00e1lhat\u00f3k. Ez azt jelenti, hogy az \u00d6n f\u00f6ldrajzi elhelyezked\u00e9se n\u00e9h\u00e1ny m\u00e9teres pontoss\u00e1g\u00fa lehet.","descriptionLegal":"A besz\u00e1ll\u00edt\u00f3k:\n* \u00d6sszegy\u0171jthetik \u00e9s kezelhetik a pontos geolok\u00e1ci\u00f3s adatokat egy vagy t\u00f6bb c\u00e9l \u00e9rdek\u00e9ben.\nMegjegyz\u00e9s: A pontos geolok\u00e1ci\u00f3 azt jelenti, hogy nincsenek korl\u00e1toz\u00e1sok a felhaszn\u00e1l\u00f3 hely\u00e9nek pontoss\u00e1g\u00e1ra vonatkoz\u00f3an; ez t\u00f6bb m\u00e9teres pontoss\u00e1g\u00fa lehet.\n"},"2":{"id":2,"name":"Az eszk\u00f6z jellemz\u0151inek akt\u00edv vizsg\u00e1lata az azonos\u00edt\u00e1shoz","description":"Az \u00d6n eszk\u00f6ze az eszk\u00f6z egyedi jellemz\u0151ire vonatkoz\u00f3 kombin\u00e1ci\u00f3 vizsg\u00e1lat\u00e1val azonos\u00edthat\u00f3.","descriptionLegal":"A besz\u00e1ll\u00edt\u00f3k:\n* L\u00e9trehozhatnak valamely azonos\u00edt\u00f3t egy adott eszk\u00f6z, konkr\u00e9t jellemz\u0151k \u00e9rdek\u00e9ben t\u00f6rt\u00e9n\u0151, akt\u00edv vizsg\u00e1lata sor\u00e1n gy\u0171jt\u00f6tt adatok alapj\u00e1n, pl. telep\u00edtett bet\u0171t\u00edpusok vagy k\u00e9perny\u0151felbont\u00e1s.\n* Az ilyen azonos\u00edt\u00f3t az eszk\u00f6z ism\u00e9telt azonos\u00edt\u00e1sa \u00e9rdek\u00e9ben haszn\u00e1lhatj\u00e1k fel.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Pontos geolok\u00e1ci\u00f3s adatok \u00e9s azonos\u00edt\u00e1s az eszk\u00f6z vizsg\u00e1lat\u00e1val","description":"Felhaszn\u00e1lhat\u00f3k a pontos geolok\u00e1ci\u00f3s adatok \u00e9s az eszk\u00f6z jellemz\u0151ire vonatkoz\u00f3 inform\u00e1ci\u00f3k."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Alapvet\u0151 hirdet\u00e9sek \u00e9s hirdet\u00e9sm\u00e9r\u00e9s","description":"Alapvet\u0151 hirdet\u00e9sek szolg\u00e1ltathat\u00f3k. A hirdet\u00e9s teljes\u00edtm\u00e9nye m\u00e9rhet\u0151."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Szem\u00e9lyre szabott hirdet\u00e9sek","description":"A hirdet\u00e9sek profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3k. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a hirdet\u00e9sek magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Alapvet\u0151 hirdet\u00e9sek \u00e9s hirdet\u00e9sm\u00e9r\u00e9s","description":"Alapvet\u0151 hirdet\u00e9sek szolg\u00e1ltathat\u00f3k. A hirdet\u00e9s teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Alapvet\u0151 hirdet\u00e9sek, szem\u00e9lyre szabott hirdet\u00e9sek profilja \u00e9s hirdet\u00e9sm\u00e9r\u00e9s","description":"Alapvet\u0151 hirdet\u00e9sek szolg\u00e1ltathat\u00f3k. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a hirdet\u00e9sek magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A hirdet\u00e9s teljes\u00edtm\u00e9nye m\u00e9rhet\u0151."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Szem\u00e9lyre szabott hirdet\u00e9sek megjelen\u00edt\u00e9se \u00e9s m\u00e9r\u00e9se","description":"A hirdet\u00e9sek profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3k. A hirdet\u00e9s teljes\u00edtm\u00e9nye m\u00e9rhet\u0151."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Szem\u00e9lyre szabott hirdet\u00e9sek megjelen\u00edt\u00e9se, hirdet\u00e9sm\u00e9r\u00e9s \u00e9s n\u00e9zetts\u00e9gi adatok","description":"A hirdet\u00e9sek profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3k. A hirdet\u00e9s teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Szem\u00e9lyre szabott hirdet\u00e9sek \u00e9s hirdet\u00e9sm\u00e9r\u00e9s","description":"A hirdet\u00e9sek profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3k. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a hirdet\u00e9sek magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A hirdet\u00e9s teljes\u00edtm\u00e9nye m\u00e9rhet\u0151."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Szem\u00e9lyre szabott hirdet\u00e9sek, hirdet\u00e9sm\u00e9r\u00e9s \u00e9s n\u00e9zetts\u00e9gi adatok","description":"A hirdet\u00e9sek profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3k. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a hirdet\u00e9sek magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A hirdet\u00e9s teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Szem\u00e9lyre szabott hirdet\u00e9sek profilja \u00e9s megjelen\u00edt\u00e9se","description":"A hirdet\u00e9sek profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3k. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a hirdet\u00e9sek magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Szem\u00e9lyre szabott tartalom","description":"A tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a tartalom magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Szem\u00e9lyre szabott tartalom megjelen\u00edt\u00e9se \u00e9s tartalomm\u00e9r\u00e9s","description":"A tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3. A tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Szem\u00e9lyre szabott tartalom megjelen\u00edt\u00e9se, tartalomm\u00e9r\u00e9s \u00e9s n\u00e9zetts\u00e9gi adatok","description":"A tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3. A tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Szem\u00e9lyre szabott tartalom \u00e9s tartalomm\u00e9r\u00e9s","description":"A tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a tartalom magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Szem\u00e9lyre szabott tartalom, tartalomm\u00e9r\u00e9s \u00e9s n\u00e9zetts\u00e9gi adatok","description":"A tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a tartalom magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Szem\u00e9lyre szabott tartalom, tartalomm\u00e9r\u00e9s, n\u00e9zetts\u00e9gi adatok \u00e9s term\u00e9kfejleszt\u00e9s","description":"A tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a tartalom magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban. Az adatok felhaszn\u00e1lhat\u00f3k a felhaszn\u00e1l\u00f3i \u00e9lm\u00e9ny, a rendszerek \u00e9s a szoftverek \u00f6ssze\u00e1ll\u00edt\u00e1s\u00e1ra vagy jav\u00edt\u00e1s\u00e1ra"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Hirdet\u00e9s \u00e9s tartalom m\u00e9r\u00e9se, n\u00e9zetts\u00e9gi adatok","description":"A hirdet\u00e9s \u00e9s a tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Hirdet\u00e9s \u00e9s tartalom m\u00e9r\u00e9se","description":"A hirdet\u00e9s \u00e9s a tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Hirdet\u00e9sm\u00e9r\u00e9s \u00e9s n\u00e9zetts\u00e9gi adatok","description":"A hirdet\u00e9s m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Hirdet\u00e9s \u00e9s tartalom m\u00e9r\u00e9se, n\u00e9zetts\u00e9gi adatok \u00e9s term\u00e9kfejleszt\u00e9s","description":"A hirdet\u00e9s \u00e9s a tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban. Az adatok felhaszn\u00e1lhat\u00f3k a felhaszn\u00e1l\u00f3i \u00e9lm\u00e9ny, a rendszerek \u00e9s a szoftverek \u00f6ssze\u00e1ll\u00edt\u00e1s\u00e1hoz vagy jav\u00edt\u00e1s\u00e1hoz. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Tartalom m\u00e9r\u00e9se, n\u00e9zetts\u00e9gi adatok \u00e9s term\u00e9kfejleszt\u00e9s","description":"A tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban. Az adatok felhaszn\u00e1lhat\u00f3k a felhaszn\u00e1l\u00f3i \u00e9lm\u00e9ny, a rendszerek \u00e9s a szoftverek \u00f6ssze\u00e1ll\u00edt\u00e1s\u00e1hoz vagy jav\u00edt\u00e1s\u00e1hoz."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Tartalom m\u00e9r\u00e9se \u00e9s term\u00e9kfejleszt\u00e9s","description":"A tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Az adatok felhaszn\u00e1lhat\u00f3k a felhaszn\u00e1l\u00f3i \u00e9lm\u00e9ny, a rendszerek \u00e9s a szoftverek \u00f6ssze\u00e1ll\u00edt\u00e1s\u00e1hoz vagy jav\u00edt\u00e1s\u00e1hoz."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Szem\u00e9lyre szabott hirdet\u00e9sek \u00e9s tartalom megjelen\u00edt\u00e9se, valamint a tartalom m\u00e9r\u00e9se","description":"A hirdet\u00e9sek \u00e9s a tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3k. A hirdet\u00e9s \u00e9s a tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Szem\u00e9lyre szabott hirdet\u00e9sek \u00e9s tartalom megjelen\u00edt\u00e9se, hirdet\u00e9s \u00e9s tartalom m\u00e9r\u00e9se, valamint n\u00e9zetts\u00e9gi adatok","description":"A hirdet\u00e9sek \u00e9s a tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3k. A hirdet\u00e9s \u00e9s a tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban. Az adatok felhaszn\u00e1lhat\u00f3k a felhaszn\u00e1l\u00f3i \u00e9lm\u00e9ny, a rendszerek \u00e9s a szoftverek \u00f6ssze\u00e1ll\u00edt\u00e1s\u00e1hoz vagy jav\u00edt\u00e1s\u00e1hoz."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Szem\u00e9lyre szabott hirdet\u00e9sek \u00e9s tartalom, valamint a tartalom m\u00e9r\u00e9se","description":"A hirdet\u00e9sek \u00e9s a tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3k. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a hirdet\u00e9sek \u00e9s a tartalom magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A hirdet\u00e9s \u00e9s a tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Szem\u00e9lyre szabott hirdet\u00e9sek \u00e9s tartalom, hirdet\u00e9s \u00e9s tartalom m\u00e9r\u00e9se, valamint n\u00e9zetts\u00e9gi adatok","description":"A hirdet\u00e9sek \u00e9s a tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3k. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a hirdet\u00e9sek \u00e9s a tartalom magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A hirdet\u00e9s \u00e9s a tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Szem\u00e9lyre szabott hirdet\u00e9sek \u00e9s tartalomprofil","description":"Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a hirdet\u00e9sek \u00e9s a tartalom szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Szem\u00e9lyre szabott hirdet\u00e9sek \u00e9s tartalom megjelen\u00edt\u00e9se","description":"A hirdet\u00e9sek \u00e9s a tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3k."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Alapvet\u0151 hirdet\u00e9sek \u00e9s tartalom m\u00e9r\u00e9se, valamint n\u00e9zetts\u00e9gi adatok","description":"Alapvet\u0151 hirdet\u00e9sek szolg\u00e1ltathat\u00f3k. A hirdet\u00e9s \u00e9s a tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Szem\u00e9lyre szabott hirdet\u00e9sek megjelen\u00edt\u00e9se, szem\u00e9lyre szabott tartalom, hirdet\u00e9s \u00e9s tartalom m\u00e9r\u00e9se, valamint n\u00e9zetts\u00e9gi adatok","description":"A hirdet\u00e9sek \u00e9s a tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3k. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a tartalom magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A hirdet\u00e9s \u00e9s a tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Szem\u00e9lyre szabott hirdet\u00e9sek megjelen\u00edt\u00e9se, szem\u00e9lyre szabott tartalom, hirdet\u00e9s \u00e9s tartalom m\u00e9r\u00e9se, n\u00e9zetts\u00e9gi adatok \u00e9s term\u00e9kfejleszt\u00e9s","description":"A hirdet\u00e9sek \u00e9s a tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3k. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a tartalom magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben.A hirdet\u00e9s \u00e9s a tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban. Az adatok felhaszn\u00e1lhat\u00f3k a felhaszn\u00e1l\u00f3i \u00e9lm\u00e9ny, a rendszerek \u00e9s a szoftverek \u00f6ssze\u00e1ll\u00edt\u00e1s\u00e1hoz vagy jav\u00edt\u00e1s\u00e1hoz."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Alapvet\u0151 hirdet\u00e9sek, szem\u00e9lyre szabott tartalom, hirdet\u00e9s \u00e9s tartalom m\u00e9r\u00e9se, valamint n\u00e9zetts\u00e9gi adatok","description":"Alapvet\u0151 hirdet\u00e9sek szolg\u00e1ltathat\u00f3k. A tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a tartalom magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A hirdet\u00e9s \u00e9s a tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Alapvet\u0151 hirdet\u00e9sek, szem\u00e9lyre szabott tartalom, hirdet\u00e9s \u00e9s tartalom m\u00e9r\u00e9se, n\u00e9zetts\u00e9gi adatok \u00e9s term\u00e9kfejleszt\u00e9s","description":"Alapvet\u0151 hirdet\u00e9sek szolg\u00e1ltathat\u00f3k. A tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a tartalom magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A hirdet\u00e9s \u00e9s a tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban. Az adatok felhaszn\u00e1lhat\u00f3k a felhaszn\u00e1l\u00f3i \u00e9lm\u00e9ny, a rendszerek \u00e9s a szoftverek \u00f6ssze\u00e1ll\u00edt\u00e1s\u00e1hoz vagy jav\u00edt\u00e1s\u00e1hoz."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Alapvet\u0151 hirdet\u00e9sek, szem\u00e9lyre szabott tartalom, tartalom m\u00e9r\u00e9se, valamint n\u00e9zetts\u00e9gi adatok","description":"Alapvet\u0151 hirdet\u00e9sek szolg\u00e1ltathat\u00f3k. A tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a tartalom magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A hirdet\u00e9s \u00e9s a tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Alapvet\u0151 hirdet\u00e9sek, szem\u00e9lyre szabott tartalom, tartalom m\u00e9r\u00e9se, n\u00e9zetts\u00e9gi adatok \u00e9s term\u00e9kfejleszt\u00e9s","description":"Alapvet\u0151 hirdet\u00e9sek szolg\u00e1ltathat\u00f3k. A tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a tartalom magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban. Az adatok felhaszn\u00e1lhat\u00f3k a felhaszn\u00e1l\u00f3i \u00e9lm\u00e9ny, a rendszerek \u00e9s a szoftverek \u00f6ssze\u00e1ll\u00edt\u00e1s\u00e1hoz vagy jav\u00edt\u00e1s\u00e1hoz."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Alapvet\u0151 hirdet\u00e9sek, szem\u00e9lyre szabott tartalom \u00e9s a hirdet\u00e9sek m\u00e9r\u00e9se","description":"Alapvet\u0151 hirdet\u00e9sek szolg\u00e1ltathat\u00f3k. A tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a tartalom magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A hirdet\u00e9s teljes\u00edtm\u00e9nye m\u00e9rhet\u0151"},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Alapvet\u0151 hirdet\u00e9sek, szem\u00e9lyre szabott tartalom, hirdet\u00e9s m\u00e9r\u00e9se \u00e9s term\u00e9kfejleszt\u00e9s","description":"Alapvet\u0151 hirdet\u00e9sek szolg\u00e1ltathat\u00f3k. A tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a tartalom magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A hirdet\u00e9s teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Az adatok felhaszn\u00e1lhat\u00f3k a felhaszn\u00e1l\u00f3i \u00e9lm\u00e9ny, a rendszerek \u00e9s a szoftverek \u00f6ssze\u00e1ll\u00edt\u00e1s\u00e1hoz vagy jav\u00edt\u00e1s\u00e1hoz."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Szem\u00e9lyre szabott hirdet\u00e9sek, hirdet\u00e9s m\u00e9r\u00e9se \u00e9s term\u00e9kfejleszt\u00e9s","description":"A hirdet\u00e9sek profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3k. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a hirdet\u00e9sek magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A hirdet\u00e9s teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Az adatok felhaszn\u00e1lhat\u00f3k a felhaszn\u00e1l\u00f3i \u00e9lm\u00e9ny, a rendszerek \u00e9s a szoftverek \u00f6ssze\u00e1ll\u00edt\u00e1s\u00e1hoz vagy jav\u00edt\u00e1s\u00e1hoz."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Szem\u00e9lyre szabott hirdet\u00e9sek, hirdet\u00e9s m\u00e9r\u00e9se, n\u00e9zetts\u00e9gi adatok \u00e9s term\u00e9kfejleszt\u00e9s","description":"A hirdet\u00e9sek profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3k. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a hirdet\u00e9sek magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A hirdet\u00e9s teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban. Az adatok felhaszn\u00e1lhat\u00f3k a felhaszn\u00e1l\u00f3i \u00e9lm\u00e9ny, a rendszerek \u00e9s a szoftverek \u00f6ssze\u00e1ll\u00edt\u00e1s\u00e1hoz vagy jav\u00edt\u00e1s\u00e1hoz."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Szem\u00e9lyre szabott hirdet\u00e9sek, hirdet\u00e9s \u00e9s tartalom m\u00e9r\u00e9se, n\u00e9zetts\u00e9gi adatok \u00e9s term\u00e9kfejleszt\u00e9s","description":"A hirdet\u00e9sek profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3k. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a hirdet\u00e9sek magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A hirdet\u00e9s \u00e9s a tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban. Az adatok felhaszn\u00e1lhat\u00f3k a felhaszn\u00e1l\u00f3i \u00e9lm\u00e9ny, a rendszerek \u00e9s a szoftverek \u00f6ssze\u00e1ll\u00edt\u00e1s\u00e1hoz vagy jav\u00edt\u00e1s\u00e1hoz."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Szem\u00e9lyre szabott hirdet\u00e9sek, szem\u00e9lyre szabott tartalom megjelen\u00edt\u00e9se, hirdet\u00e9s \u00e9s tartalom m\u00e9r\u00e9se, n\u00e9zetts\u00e9gi adatok \u00e9s term\u00e9kfejleszt\u00e9s","description":"A hirdet\u00e9sek \u00e9s a tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3k. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a hirdet\u00e9sek magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A hirdet\u00e9s \u00e9s a tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban. Az adatok felhaszn\u00e1lhat\u00f3k a felhaszn\u00e1l\u00f3i \u00e9lm\u00e9ny, a rendszerek \u00e9s a szoftverek \u00f6ssze\u00e1ll\u00edt\u00e1s\u00e1hoz vagy jav\u00edt\u00e1s\u00e1hoz."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Szem\u00e9lyre szabott hirdet\u00e9sek \u00e9s tartalom, hirdet\u00e9s \u00e9s tartalom m\u00e9r\u00e9se, n\u00e9zetts\u00e9gi adatok \u00e9s term\u00e9kfejleszt\u00e9s","description":"A hirdet\u00e9sek \u00e9s a tartalom profil alapj\u00e1n szem\u00e9lyre szabhat\u00f3k. Tov\u00e1bbi adatok adhat\u00f3k hozz\u00e1 a hirdet\u00e9sek \u00e9s a tartalom magasabb szint\u0171 szem\u00e9lyre szab\u00e1sa \u00e9rdek\u00e9ben. A hirdet\u00e9s \u00e9s a tartalom teljes\u00edtm\u00e9nye m\u00e9rhet\u0151. Betekint\u00e9s nyerhet\u0151 a hirdet\u00e9seket \u00e9s tartalmat megtekint\u0151 k\u00f6z\u00f6ns\u00e9g vonatkoz\u00e1s\u00e1ban. Az adatok felhaszn\u00e1lhat\u00f3k a felhaszn\u00e1l\u00f3i \u00e9lm\u00e9ny, a rendszerek \u00e9s a szoftverek \u00f6ssze\u00e1ll\u00edt\u00e1s\u00e1hoz vagy jav\u00edt\u00e1s\u00e1hoz"}}} \ No newline at end of file diff --git a/src/s1/config/2.0/purposes/purposes-it.json b/src/s1/config/2.0/purposes/purposes-it.json index 58585683..eefb7252 100644 --- a/src/s1/config/2.0/purposes/purposes-it.json +++ b/src/s1/config/2.0/purposes/purposes-it.json @@ -1 +1 @@ -{"vendorListVersion":79,"lastUpdated":"2021-02-25T16:36:19Z","purposes":{"1":{"id":1,"name":"Archiviare e/o accedere a informazioni su un dispositivo","description":"I cookie, gli identificatori del dispositivo o altre informazioni possono essere archiviati o reperiti sul dispositivo dell\u2019utente per le finalit\u00e0 presentate.","descriptionLegal":"I vendor possono:\n* Archiviare e accedere alle informazioni sul dispositivo, quali cookie e identificatori del dispositivo stesso, per le finalit\u00e0 presentate a un utente.\n"},"2":{"id":2,"name":"Selezionare annunci basici (basic ads)","description":"Gli annunci possono essere mostrati in base al contenuto visualizzato dall\u2019utente, all\u2019app utilizzata, alla posizione approssimativa, oppure al tipo di dispositivo.","descriptionLegal":"Per effettuare una selezione di annunci basici, i vendor possono:\n* Utilizzare, in tempo reale, informazioni sul contesto in cui verr\u00e0 mostrato l\u2019annuncio, quali contenuto e dispositivo; ad esempio: tipo di dispositivo e capacit\u00e0, user agent, URL, indirizzo IP.\n* Utilizzare i dati di geolocalizzazione approssimativa di un utente.\n* Controllare la frequenza degli annunci mostrati ad un utente.\n* Mettere in sequenza gli annunci presentati ad un utente.\n* Impedire la fruizione di un annuncio in un contesto editoriale (non sicuro per il marchio) non idoneo\nI vendor non possono:\n* Creare un profilo di annunci personalizzati utilizzando le informazioni raccolte per la selezione di annunci futuri senza una base giuridica separata per la creazione di un profilo di annunci personalizzati.\nN.B.: \u201capprossimativo\u201d indica unicamente la facolt\u00e0 di individuare una posizione approssimativa che coinvolga almeno un raggio di 500 metri.\n"},"3":{"id":3,"name":"Creare un profilo di annunci personalizzati","description":"Sar\u00e0 possibile creare un profilo relativo all\u2019utente e ai suoi interessi, al fine di mostrare annunci personalizzati.","descriptionLegal":"Per creare un profilo di annunci personalizzati, i vendor possono:\n* Raccogliere informazioni su un utente, come attivit\u00e0, interessi, visite a siti o app, informazioni demografiche o sua ubicazione, per creare o modificare un profilo utente da utilizzare ai fini della pubblicit\u00e0 personalizzata. \n* Combinare queste informazioni con altre informazioni precedentemente raccolte, anche da siti Web e app, per creare o modificare un profilo utente da utilizzare nella pubblicit\u00e0 personalizzata."},"4":{"id":4,"name":"Selezionare annunci personalizzati","description":"Annunci personalizzati possono essere mostrati in base al profilo relativo all\u2019utente.","descriptionLegal":"Per selezionare gli annunci personalizzati, i vendor possono:\n* Selezionare annunci personalizzati basati su un profilo utente o altri dati storici sull\u2019utente utilizzando informazioni quali attivit\u00e0, interessi, visite a siti o applicazioni, posizione geografica o informazioni demografiche dell\u2019utente.\n"},"5":{"id":5,"name":"Creare un profilo di contenuto personalizzato","description":"Un profilo relativo all\u2019utente e ai suoi interessi pu\u00f2 essere creato per mostrargli contenuti personalizzati pertinenti.","descriptionLegal":"Per creare un profilo di contenuto personalizzato, i vendor possono:\n* Raccogliere informazioni su un utente, comprese attivit\u00e0, interessi, visite a siti o app, informazioni demografiche o posizione geografica, per creare o modificare un profilo utente al fine di personalizzarne il contenuto.\n* Combinare queste informazioni con altre informazioni raccolte in precedenza, anche da siti Web e app, per creare o modificare un profilo utente da utilizzare nella personalizzazione dei contenuti."},"6":{"id":6,"name":"Selezionare contenuti personalizzati","description":"I contenuti personalizzati possono essere mostrati sulla base di un profilo relativo all\u2019utente.","descriptionLegal":"Per selezionare i contenuti personalizzati, i vendor possono:\n* Selezionare i contenuti personalizzati in base a un profilo utente o ad altri dati storici dell\u2019utente, tra cui precedenti attivit\u00e0, interessi, visite a siti o applicazioni, posizione geografica o informazioni demografiche dell\u2019utente.\n"},"7":{"id":7,"name":"Valutare le performance degli annunci","description":"\u00c8 possibile valutare le performance e l\u2019efficacia degli annunci visualizzati dall\u2019utente o con cui lo stesso interagisce.","descriptionLegal":"Per valutare le performance degli annunci, i vendor possono:\n* Valutare se e come gli annunci siano stati forniti a un utente e come lo stesso ha interagito.\n* Fornire report sugli annunci, ivi comprese efficacia e prestazioni degli stessi.\n* Fornire report sugli utenti che hanno interagito con gli annunci utilizzando i dati osservati nel corso dell\u2019interazione dell\u2019utente con tale annuncio.\n* Fornire report agli editori sugli annunci visualizzati sulla loro propriet\u00e0.\n* Valutare se la fruizione di un annuncio avvenga in un contesto editoriale idoneo (sicuro per il marchio).\n* Determinare la percentuale dell\u2019ad che ha avuto la possibilit\u00e0 di essere visualizzata e per quanto tempo. \nI vendor non possono:\n* Applicare dati di approfondimento sul pubblico derivati da panel o prodotti simili ai dati di misurazione degli annunci senza una base giuridica per applicare ricerche di mercato per generare approfondimenti sul pubblico stesso.\n"},"8":{"id":8,"name":"Valutare le performance dei contenuti","description":"\u00c8 possibile valutare le performance e l\u2019efficacia dei contenuti visualizzati dall\u2019utente o con cui lo stesso interagisce.","descriptionLegal":"Per valutare le performance dei contenuti, i vendor possono:\n* Valutare e segnalare il modo in cui i contenuti sono stati forniti e l\u2019interazione degli utenti con gli stessi.\n* Fornire report utilizzando informazioni direttamente valutabili o note sugli utenti che hanno interagito con il contenuto.\nI vendor non possono:\n* Valutare se e come gli annunci (compresi gli annunci nativi) siano stati forniti e l\u2019interazione dell\u2019utente con gli stessi.\n* Applicare dati di approfondimento sul pubblico derivati da panel o prodotti simili ai dati di misurazione degli annunci senza una base giuridica separata per applicare ricerche di mercato per generare approfondimenti sul pubblico stesso.\n"},"9":{"id":9,"name":"Applicare ricerche di mercato per generare approfondimenti sul pubblico","description":"La ricerca di mercato pu\u00f2 essere utilizzata per saperne di pi\u00f9 sul pubblico che visita siti/app e visualizza annunci.","descriptionLegal":"Per applicare ricerche di mercato per generare approfondimenti sul pubblico, i vendor possono:\n* Fornire agli inserzionisti o ai loro rappresentanti report aggregati sul pubblico raggiunto dai propri annunci mediante osservazioni basate su panel e di derivazione analoga.\n* Fornire report aggregati agli editori riguardo al pubblico che ha fruito dei contenuti e/o degli annunci o che ha interagito con gli stessi nella propriet\u00e0 di tali editori applicando osservazioni basate su panel e di analoga derivazione. \n* Associare i dati offline con quelli di un utente online ai fini della ricerca di mercato, per generare informazioni sul pubblico se i vendor hanno dichiarato di abbinare e combinare fonti di dati offline (Funzionalit\u00e0 1)\nI vendor non possono: \n* Misurare le performance e l\u2019efficacia degli annunci presentati a un utente specifico o con cui lo stesso vendor abbia interagito, senza una base giuridica specifica relativa alla misurazione delle performance di tali annunci.\n* Misurare di quali contenuti abbia fruito un determinato utente e come abbia interagito con gli stessi, senza una base giuridica specifica relativa alla misurazione delle performance di tali annunci.\n"},"10":{"id":10,"name":"Sviluppare e perfezionare i prodotti","description":"I dati dell\u2019utente possono essere utilizzati per perfezionare sistemi e software esistenti e per sviluppare nuovi prodotti.","descriptionLegal":"Per sviluppare nuovi prodotti e perfezionare quelli esistenti, i vendor possono:\n* Utilizzare le informazioni per perfezionare i prodotti esistenti mediante l\u2019aggiunta di nuove funzionalit\u00e0 e per sviluppare nuovi prodotti.\n* Creare nuovi modelli e algoritmi attraverso il machine learning.\nI vendor non possono:\n* Condurre altre operazioni di trattamento dei dati rispondenti a una finalit\u00e0 diversa dalla presente\n"}},"specialPurposes":{"1":{"id":1,"name":"Garantire la sicurezza, prevenire frodi e debug","description":"I dati possono essere utilizzati per monitorare e prevenire attivit\u00e0 fraudolente e garantire che i sistemi e i processi funzionino correttamente e in modo sicuro.","descriptionLegal":"Per garantire la sicurezza, prevenire frodi e debug, i vendor possono:\n* Assicurarsi che i dati siano trasmessi in modo sicuro. \n* Rilevare e prevenire attivit\u00e0 dannose, fraudolente, non valide o illegali.\n* Garantire un funzionamento corretto ed efficiente dei sistemi e dei processi, compreso il monitoraggio e il miglioramento delle prestazioni dei sistemi e dei processi coinvolti nelle finalit\u00e0 consentite.\nI vendor non possono:\n* Condurre altre operazioni di trattamento dei dati rispondenti a una finalit\u00e0 diversa dalla presente.\nNota: I dati raccolti e utilizzati per garantire la sicurezza, prevenire le frodi e il debug, possono includere informazioni sul dispositivo inviate automaticamente per la sua identificazione, dati di geolocalizzazione precisi e dati ottenuti mediante scansione attiva delle caratteristiche del dispositivo per la sua identificazione, senza necessit\u00e0 di condivisione in modo separato e/o opt-in.\n"},"2":{"id":2,"name":"Selezionare contenuti personalizzati","description":"Il dispositivo dell\u2019utente pu\u00f2 ricevere e inviare informazioni per consentirgli di visualizzare annunci e contenuti e di interagire con gli stessi.","descriptionLegal":"Per fornire informazioni e rispondere a richieste tecniche, i vendor possono:\n* Utilizzare l\u2019indirizzo IP di un utente per fornire un annuncio su Internet.\n* Reagire all\u2019interazione di un utente con un annuncio indirizzando l\u2019utente a una pagina di destinazione.\n* Utilizzare l\u2019indirizzo IP di un utente per fornire contenuti su Internet.\n* Reagire all\u2019interazione di un utente con un contenuto indirizzando l\u2019utente a una pagina di destinazione.\n* Utilizzare le informazioni sul tipo di dispositivo e sulle capacit\u00e0 dello stesso per la fornitura di annunci o contenuti, ad esempio, per mettere a disposizione annunci creativi o file video di dimensioni corrette e in un formato supportato dal dispositivo.\nI vendor non possono:\n* Condurre altre operazioni di trattamento dei dati rispondenti a una finalit\u00e0 diversa dalla presente.\n"}},"features":{"1":{"id":1,"name":"Abbinare e combinare fonti di dati offline","description":"I dati provenienti da fonti offline possono essere combinati con l\u2019attivit\u00e0 online dell\u2019utente a supporto di una o varie finalit\u00e0.","descriptionLegal":"I vendor possono: \n* Combinare i dati ottenuti offline con i dati raccolti online, a supporto di una o varie Finalit\u00e0 o Finalit\u00e0 Speciali.\n"},"2":{"id":2,"name":"Collegare diversi dispositivi","description":"Sar\u00e0 possibile determinare l\u2019appartenenza di diversi dispositivi allo stesso utente o al suo nucleo familiare, a supporto di una o varie finalit\u00e0.","descriptionLegal":"I vendor possono:\n* Determinare con certezza in modo deterministico che due o pi\u00f9 dispositivi appartengono allo stesso utente o al suo nucleo familiare.\n* Determinare in modo probabilistico l\u2019appartenenza di due o pi\u00f9 dispositivi allo stesso utente o allo stesso nucleo familiare.\n* Effettuare una scansione attiva delle caratteristiche del dispositivo per l\u2019identificazione probabilistica, previo consenso degli utenti (Funzionalit\u00e0 speciale 2).\n"},"3":{"id":3,"name":"Ricevere e usare le caratteristiche che il dispositivo invia automaticamente ai fini dell\u2019identificazione","description":"Un dispositivo pu\u00f2 essere distinto da altri dispositivi in base alle informazioni che invia automaticamente, come l\u2019indirizzo IP o il tipo di browser.","descriptionLegal":"I vendor possono: \n* Creare un identificatore, utilizzando i dati che un dispositivo raccoglie automaticamente in base alle sue caratteristiche, ad es. indirizzo IP, stringa dell\u2019utente\n* Utilizzare il suddetto identificatore per provare a identificare nuovamente un dispositivo\nI vendor non possono:\n* Creare un identificatore, utilizzando i dati raccolti tramite uno scanning attivo di caratteristiche specifiche un dispositivo, come ad esempio la risoluzione dello schermo o i caratteri installati, senza l\u2019opt-in dell\u2019utente in merito alla scansionare attiva delle caratteristiche del dispositivo per la sua identificazione.\n* Utilizzare tale identificatore per identificare nuovamente un dispositivo\n"}},"specialFeatures":{"1":{"id":1,"name":"Utilizzare dati di geolocalizzazione precisi","description":"I dati di geolocalizzazione precisi possono essere utilizzati a supporto di una o varie finalit\u00e0. Ci\u00f2 significa che la posizione dell\u2019utente potr\u00e0 determinarsi con esattezza nel raggio di alcuni metri.","descriptionLegal":"I vendor possono:\n* Raccogliere e trattare dati relativi alla posizione geografica esatta, a supporto di una o varie finalit\u00e0.\nN.B.: Esatta geolocalizzazione significa che non esistono restrizioni sulla determinazione precisa della posizione geografica di un utente; il margine di precisione pu\u00f2 avere un raggio di alcuni metri\n"},"2":{"id":2,"name":"Scansione attiva delle caratteristiche del dispositivo ai fini dell\u2019identificazione","description":"Il dispositivo pu\u00f2 essere identificato in base a una scansione della combinazione unica di caratteristiche del dispositivo.","descriptionLegal":"I vendor possono:\n* Creare un identificatore utilizzando i dati raccolti mediante la scansione attiva di un dispositivo ai fini dell\u2019individuazione di caratteristiche specifiche, ad es., tipi di caratteri installati o risoluzione dello schermo. \n* Utilizzare tale identificatore per individuare ripetutamente un dispositivo. \n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Dati di geolocalizzazione precisi e identificazione attraverso la scansione del dispositivo","description":"\u00c8 possibile utilizzare la geolocalizzazione precisa e le informazioni sulle caratteristiche del dispositivo."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Annunci basici e valutazione dell\u2019annuncio","description":"\u00c8 possibile fornire annunci basici. \u00c8 possibile valutare le performance degli annunci."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Annunci personalizzati","description":"Gli annunci possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente gli annunci pubblicitari."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Annunci basici e valutazione dell\u2019annuncio","description":"\u00c8 possibile fornire annunci basici. \u00c8 possibile valutare le performance degli annunci. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Annunci basici, profilo di annunci personalizzati e valutazione dell\u2019annuncio","description":"\u00c8 possibile fornire annunci basici. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente gli annunci pubblicitari. \u00c8 possibile valutare le performance degli annunci."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Visualizzazione degli annunci personalizzati e valutazione dell\u2019annuncio","description":"Gli annunci possono essere personalizzati in base a un profilo. \u00c8 possibile valutare le performance degli annunci."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Visualizzazione degli annunci personalizzati, valutazione dell\u2019annuncio e osservazioni del pubblico","description":"Gli annunci possono essere personalizzati in base a un profilo. \u00c8 possibile valutare le performance degli annunci. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Annunci personalizzati e valutazione dell\u2019annuncio","description":"Gli annunci possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente gli annunci pubblicitari. \u00c8 possibile valutare le performance degli annunci."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Annunci personalizzati, valutazione dell\u2019annuncio e osservazioni del pubblico","description":"Gli annunci possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente gli annunci pubblicitari. \u00c8 possibile valutare le performance degli annunci. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Profilo di annunci personalizzati e visualizzazione","description":"Gli annunci possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente gli annunci pubblicitari."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Contenuti personalizzati","description":"I contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente i contenuti."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Visualizzazione dei contenuti personalizzati e valutazione dei contenuti","description":"I contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile valutare le performance dei contenuti."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Visualizzazione dei contenuti personalizzati, valutazione dei contenuti e osservazioni del pubblico","description":"I contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile valutare le performance dei contenuti. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Contenuti personalizzati e valutazione dei contenuti","description":"I contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente i contenuti. \u00c8 possibile valutare le performance dei contenuti."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Contenuti personalizzati, valutazione dei contenuti e osservazioni del pubblico","description":"I contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente i contenuti. \u00c8 possibile valutare le performance dei contenuti. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Contenuti personalizzati, valutazione dei contenuti, osservazioni del pubblico e sviluppo di prodotti","description":"I contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente i contenuti. \u00c8 possibile valutare le performance dei contenuti. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti. I dati possono essere utilizzati per costruire o migliorare esperienze, sistemi e software dell\u2019utente."},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Valutazione dell\u2019annuncio, dei contenuti e osservazioni del pubblico","description":"\u00c8 possibile valutare le performance di annunci e contenuti. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Valutazione dell\u2019annuncio e dei contenuti","description":"\u00c8 possibile valutare le performance di annunci e contenuti. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Valutazione dell\u2019annuncio e osservazioni del pubblico","description":"\u00c8 possibile valutare gli annunci. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Valutazione dell\u2019annuncio e del contenuto, osservazioni del pubblico e sviluppo di prodotti","description":"\u00c8 possibile valutare le performance di annunci e contenuti. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti. I dati possono essere utilizzati per costruire o migliorare esperienze, sistemi e software dell\u2019utente. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Valutazione del contenuto, osservazioni del pubblico e sviluppo di prodotti.","description":"\u00c8 possibile valutare le performance dei contenuti. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti. I dati possono essere utilizzati per costruire o migliorare esperienze, sistemi e software dell\u2019utente."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Valutazione del contenuto e sviluppo di prodotti","description":"\u00c8 possibile valutare le performance dei contenuti. I dati possono essere utilizzati per costruire o migliorare esperienze, sistemi e software dell\u2019utente."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Visualizzazione di annunci e contenuti personalizzati, valutazione del contenuto","description":"Gli annunci e i contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile valutare le performance di annunci e contenuti."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Visualizzazione di annunci e contenuti personalizzati, valutazione dell\u2019annuncio e del contenuto, osservazioni del pubblico","description":"Gli annunci e i contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile valutare le performance di annunci e contenuti. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti. I dati possono essere utilizzati per costruire o migliorare esperienze, sistemi e software dell\u2019utente."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Annunci e contenuti personalizzati, valutazione dell\u2019annuncio e del contenuto","description":"Gli annunci e i contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente annunci e contenuti. \u00c8 possibile valutare le performance di annunci e contenuti."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Annunci e contenuti personalizzati, valutazione dell\u2019annuncio e del contenuto, osservazioni del pubblico","description":"Gli annunci e i contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente annunci e contenuti. \u00c8 possibile valutare le performance di annunci e contenuti. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Annunci personalizzati e contenuto di profilo","description":"\u00c8 possibile aggiungere ulteriori dati per personalizzare annunci e contenuti."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Annunci basici, valutazione dell\u2019annuncio e del contenuto, osservazioni del pubblico","description":"\u00c8 possibile fornire annunci basici. \u00c8 possibile valutare le performance di annunci e contenuti. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Visualizzazione di annunci personalizzati, contenuti personalizzati, valutazione dell\u2019annuncio e del contenuto, osservazioni del pubblico","description":"Gli annunci e i contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente i contenuti. \u00c8 possibile valutare le performance di annunci e contenuti. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Visualizzazione di annunci personalizzati, contenuti personalizzati, valutazione dell\u2019annuncio e del contenuto, osservazioni del pubblico e sviluppo di prodotti","description":"Gli annunci e i contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente i contenuti. \u00c8 possibile valutare le performance di annunci e contenuti. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti. I dati possono essere utilizzati per costruire o migliorare esperienze, sistemi e software dell\u2019utente."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Annunci basici, contenuti personalizzati, valutazione dell\u2019annuncio e del contenuto, osservazioni del pubblico","description":"\u00c8 possibile fornire annunci basici. I contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente i contenuti. \u00c8 possibile valutare le performance di annunci e contenuti. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Annunci basici, contenuti personalizzati, valutazione dell\u2019annuncio e del contenuto, osservazioni del pubblico e sviluppo di prodotti","description":"\u00c8 possibile fornire annunci basici. I contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente i contenuti. \u00c8 possibile valutare le performance di annunci e contenuti. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti. I dati possono essere utilizzati per costruire o migliorare esperienze, sistemi e software dell\u2019utente."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Annunci basici, contenuti personalizzati, valutazione del contenuto e osservazioni del pubblico","description":"\u00c8 possibile fornire annunci basici. I contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente i contenuti. \u00c8 possibile valutare le performance di annunci e contenuti. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Annunci basici, contenuti personalizzati, valutazione del contenuto, osservazioni del pubblico e sviluppo di prodotti","description":"\u00c8 possibile fornire annunci basici. I contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente i contenuti. \u00c8 possibile valutare le performance dei contenuti. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti. I dati possono essere utilizzati per costruire o migliorare esperienze, sistemi e software dell\u2019utente."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Annunci basici, contenuti personalizzati e valutazione degli annunci","description":"\u00c8 possibile fornire annunci basici. I contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente i contenuti. \u00c8 possibile valutare le performance degli annunci."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Annunci basici, contenuti personalizzati, valutazione degli annunci e sviluppo di prodotti","description":"\u00c8 possibile fornire annunci basici. I contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente i contenuti. \u00c8 possibile valutare le performance degli annunci. I dati possono essere utilizzati per costruire o migliorare esperienze, sistemi e software dell\u2019utente."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Annunci personalizzati, valutazione degli annunci e sviluppo di prodotti","description":"Gli annunci possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente gli annunci pubblicitari. \u00c8 possibile valutare le prestazioni degli annunci. I dati possono essere utilizzati per creare o migliorare l\u2019esperienza utente, sistemi e software."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Annunci personalizzati, valutazione degli annunci, osservazioni del pubblico e sviluppo di prodotti","description":"Gli annunci possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente gli annunci pubblicitari. \u00c8 possibile valutare le prestazioni degli annunci. \u00c8 possibile ottenere informazioni sul pubblico che ha visualizzato gli annunci e i contenuti. I dati possono essere utilizzati per creare o migliorare l\u2019esperienza utente, sistemi e software."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Annunci personalizzati, valutazione degli annunci e del contenuto, osservazioni del pubblico e sviluppo di prodotti","description":"Gli annunci possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente gli annunci pubblicitari. \u00c8 possibile valutare le prestazioni di annunci e contenuti. \u00c8 possibile ottenere informazioni sul pubblico che ha visualizzato gli annunci e i contenuti. I dati possono essere utilizzati per creare o migliorare l\u2019esperienza utente, sistemi e software."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Annunci personalizzati, visualizzazione di contenuti personalizzati, valutazione degli annunci e del contenuto, osservazioni del pubblico e sviluppo di prodotti","description":"Gli annunci e i contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente gli annunci pubblicitari. \u00c8 possibile valutare le prestazioni di annunci e contenuti. \u00c8 possibile ottenere informazioni sul pubblico che ha visualizzato gli annunci e i contenuti. I dati possono essere utilizzati per creare o migliorare l\u2019esperienza utente, sistemi e software."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Annunci e contenuti personalizzati, valutazione degli annunci e del contenuto, osservazioni del pubblico e sviluppo di prodotti","description":"Gli annunci e i contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente annunci e contenuti. \u00c8 possibile valutare le prestazioni di annunci e contenuti. \u00c8 possibile ottenere informazioni sul pubblico che ha visualizzato gli annunci e i contenuti. I dati possono essere utilizzati per creare o migliorare l\u2019esperienza utente, sistemi e software."}}} \ No newline at end of file +{"vendorListVersion":94,"lastUpdated":"2021-06-10T16:43:59Z","purposes":{"1":{"id":1,"name":"Archiviare e/o accedere a informazioni su un dispositivo","description":"I cookie, gli identificatori del dispositivo o altre informazioni possono essere archiviati o reperiti sul dispositivo dell\u2019utente per le finalit\u00e0 presentate.","descriptionLegal":"I vendor possono:\n* Archiviare e accedere alle informazioni sul dispositivo, quali cookie e identificatori del dispositivo stesso, per le finalit\u00e0 presentate a un utente.\n"},"2":{"id":2,"name":"Selezionare annunci basici (basic ads)","description":"Gli annunci possono essere mostrati in base al contenuto visualizzato dall\u2019utente, all\u2019app utilizzata, alla posizione approssimativa, oppure al tipo di dispositivo.","descriptionLegal":"Per effettuare una selezione di annunci basici, i vendor possono:\n* Utilizzare, in tempo reale, informazioni sul contesto in cui verr\u00e0 mostrato l\u2019annuncio, quali contenuto e dispositivo; ad esempio: tipo di dispositivo e capacit\u00e0, user agent, URL, indirizzo IP.\n* Utilizzare i dati di geolocalizzazione approssimativa di un utente.\n* Controllare la frequenza degli annunci mostrati ad un utente.\n* Mettere in sequenza gli annunci presentati ad un utente.\n* Impedire la fruizione di un annuncio in un contesto editoriale (non sicuro per il marchio) non idoneo\nI vendor non possono:\n* Creare un profilo di annunci personalizzati utilizzando le informazioni raccolte per la selezione di annunci futuri senza una base giuridica separata per la creazione di un profilo di annunci personalizzati.\nN.B.: \u201capprossimativo\u201d indica unicamente la facolt\u00e0 di individuare una posizione approssimativa che coinvolga almeno un raggio di 500 metri.\n"},"3":{"id":3,"name":"Creare un profilo di annunci personalizzati","description":"Sar\u00e0 possibile creare un profilo relativo all\u2019utente e ai suoi interessi, al fine di mostrare annunci personalizzati.","descriptionLegal":"Per creare un profilo di annunci personalizzati, i vendor possono:\n* Raccogliere informazioni su un utente, come attivit\u00e0, interessi, visite a siti o app, informazioni demografiche o sua ubicazione, per creare o modificare un profilo utente da utilizzare ai fini della pubblicit\u00e0 personalizzata. \n* Combinare queste informazioni con altre informazioni precedentemente raccolte, anche da siti Web e app, per creare o modificare un profilo utente da utilizzare nella pubblicit\u00e0 personalizzata."},"4":{"id":4,"name":"Selezionare annunci personalizzati","description":"Annunci personalizzati possono essere mostrati in base al profilo relativo all\u2019utente.","descriptionLegal":"Per selezionare gli annunci personalizzati, i vendor possono:\n* Selezionare annunci personalizzati basati su un profilo utente o altri dati storici sull\u2019utente utilizzando informazioni quali attivit\u00e0, interessi, visite a siti o applicazioni, posizione geografica o informazioni demografiche dell\u2019utente.\n"},"5":{"id":5,"name":"Creare un profilo di contenuto personalizzato","description":"Un profilo relativo all\u2019utente e ai suoi interessi pu\u00f2 essere creato per mostrargli contenuti personalizzati pertinenti.","descriptionLegal":"Per creare un profilo di contenuto personalizzato, i vendor possono:\n* Raccogliere informazioni su un utente, comprese attivit\u00e0, interessi, visite a siti o app, informazioni demografiche o posizione geografica, per creare o modificare un profilo utente al fine di personalizzarne il contenuto.\n* Combinare queste informazioni con altre informazioni raccolte in precedenza, anche da siti Web e app, per creare o modificare un profilo utente da utilizzare nella personalizzazione dei contenuti."},"6":{"id":6,"name":"Selezionare contenuti personalizzati","description":"I contenuti personalizzati possono essere mostrati sulla base di un profilo relativo all\u2019utente.","descriptionLegal":"Per selezionare i contenuti personalizzati, i vendor possono:\n* Selezionare i contenuti personalizzati in base a un profilo utente o ad altri dati storici dell\u2019utente, tra cui precedenti attivit\u00e0, interessi, visite a siti o applicazioni, posizione geografica o informazioni demografiche dell\u2019utente.\n"},"7":{"id":7,"name":"Valutare le performance degli annunci","description":"\u00c8 possibile valutare le performance e l\u2019efficacia degli annunci visualizzati dall\u2019utente o con cui lo stesso interagisce.","descriptionLegal":"Per valutare le performance degli annunci, i vendor possono:\n* Valutare se e come gli annunci siano stati forniti a un utente e come lo stesso ha interagito.\n* Fornire report sugli annunci, ivi comprese efficacia e prestazioni degli stessi.\n* Fornire report sugli utenti che hanno interagito con gli annunci utilizzando i dati osservati nel corso dell\u2019interazione dell\u2019utente con tale annuncio.\n* Fornire report agli editori sugli annunci visualizzati sulla loro propriet\u00e0.\n* Valutare se la fruizione di un annuncio avvenga in un contesto editoriale idoneo (sicuro per il marchio).\n* Determinare la percentuale dell\u2019ad che ha avuto la possibilit\u00e0 di essere visualizzata e per quanto tempo. \nI vendor non possono:\n* Applicare dati di approfondimento sul pubblico derivati da panel o prodotti simili ai dati di misurazione degli annunci senza una base giuridica per applicare ricerche di mercato per generare approfondimenti sul pubblico stesso.\n"},"8":{"id":8,"name":"Valutare le performance dei contenuti","description":"\u00c8 possibile valutare le performance e l\u2019efficacia dei contenuti visualizzati dall\u2019utente o con cui lo stesso interagisce.","descriptionLegal":"Per valutare le performance dei contenuti, i vendor possono:\n* Valutare e segnalare il modo in cui i contenuti sono stati forniti e l\u2019interazione degli utenti con gli stessi.\n* Fornire report utilizzando informazioni direttamente valutabili o note sugli utenti che hanno interagito con il contenuto.\nI vendor non possono:\n* Valutare se e come gli annunci (compresi gli annunci nativi) siano stati forniti e l\u2019interazione dell\u2019utente con gli stessi.\n* Applicare dati di approfondimento sul pubblico derivati da panel o prodotti simili ai dati di misurazione degli annunci senza una base giuridica separata per applicare ricerche di mercato per generare approfondimenti sul pubblico stesso.\n"},"9":{"id":9,"name":"Applicare ricerche di mercato per generare approfondimenti sul pubblico","description":"La ricerca di mercato pu\u00f2 essere utilizzata per saperne di pi\u00f9 sul pubblico che visita siti/app e visualizza annunci.","descriptionLegal":"Per applicare ricerche di mercato per generare approfondimenti sul pubblico, i vendor possono:\n* Fornire agli inserzionisti o ai loro rappresentanti report aggregati sul pubblico raggiunto dai propri annunci mediante osservazioni basate su panel e di derivazione analoga.\n* Fornire report aggregati agli editori riguardo al pubblico che ha fruito dei contenuti e/o degli annunci o che ha interagito con gli stessi nella propriet\u00e0 di tali editori applicando osservazioni basate su panel e di analoga derivazione. \n* Associare i dati offline con quelli di un utente online ai fini della ricerca di mercato, per generare informazioni sul pubblico se i vendor hanno dichiarato di abbinare e combinare fonti di dati offline (Funzionalit\u00e0 1)\nI vendor non possono: \n* Misurare le performance e l\u2019efficacia degli annunci presentati a un utente specifico o con cui lo stesso vendor abbia interagito, senza una base giuridica specifica relativa alla misurazione delle performance di tali annunci.\n* Misurare di quali contenuti abbia fruito un determinato utente e come abbia interagito con gli stessi, senza una base giuridica specifica relativa alla misurazione delle performance di tali annunci.\n"},"10":{"id":10,"name":"Sviluppare e perfezionare i prodotti","description":"I dati dell\u2019utente possono essere utilizzati per perfezionare sistemi e software esistenti e per sviluppare nuovi prodotti.","descriptionLegal":"Per sviluppare nuovi prodotti e perfezionare quelli esistenti, i vendor possono:\n* Utilizzare le informazioni per perfezionare i prodotti esistenti mediante l\u2019aggiunta di nuove funzionalit\u00e0 e per sviluppare nuovi prodotti.\n* Creare nuovi modelli e algoritmi attraverso il machine learning.\nI vendor non possono:\n* Condurre altre operazioni di trattamento dei dati rispondenti a una finalit\u00e0 diversa dalla presente\n"}},"specialPurposes":{"1":{"id":1,"name":"Garantire la sicurezza, prevenire frodi e debug","description":"I dati possono essere utilizzati per monitorare e prevenire attivit\u00e0 fraudolente e garantire che i sistemi e i processi funzionino correttamente e in modo sicuro.","descriptionLegal":"Per garantire la sicurezza, prevenire frodi e debug, i vendor possono:\n* Assicurarsi che i dati siano trasmessi in modo sicuro. \n* Rilevare e prevenire attivit\u00e0 dannose, fraudolente, non valide o illegali.\n* Garantire un funzionamento corretto ed efficiente dei sistemi e dei processi, compreso il monitoraggio e il miglioramento delle prestazioni dei sistemi e dei processi coinvolti nelle finalit\u00e0 consentite.\nI vendor non possono:\n* Condurre altre operazioni di trattamento dei dati rispondenti a una finalit\u00e0 diversa dalla presente.\nNota: I dati raccolti e utilizzati per garantire la sicurezza, prevenire le frodi e il debug, possono includere informazioni sul dispositivo inviate automaticamente per la sua identificazione, dati di geolocalizzazione precisi e dati ottenuti mediante scansione attiva delle caratteristiche del dispositivo per la sua identificazione, senza necessit\u00e0 di condivisione in modo separato e/o opt-in.\n"},"2":{"id":2,"name":"Selezionare contenuti personalizzati","description":"Il dispositivo dell\u2019utente pu\u00f2 ricevere e inviare informazioni per consentirgli di visualizzare annunci e contenuti e di interagire con gli stessi.","descriptionLegal":"Per fornire informazioni e rispondere a richieste tecniche, i vendor possono:\n* Utilizzare l\u2019indirizzo IP di un utente per fornire un annuncio su Internet.\n* Reagire all\u2019interazione di un utente con un annuncio indirizzando l\u2019utente a una pagina di destinazione.\n* Utilizzare l\u2019indirizzo IP di un utente per fornire contenuti su Internet.\n* Reagire all\u2019interazione di un utente con un contenuto indirizzando l\u2019utente a una pagina di destinazione.\n* Utilizzare le informazioni sul tipo di dispositivo e sulle capacit\u00e0 dello stesso per la fornitura di annunci o contenuti, ad esempio, per mettere a disposizione annunci creativi o file video di dimensioni corrette e in un formato supportato dal dispositivo.\nI vendor non possono:\n* Condurre altre operazioni di trattamento dei dati rispondenti a una finalit\u00e0 diversa dalla presente.\n"}},"features":{"1":{"id":1,"name":"Abbinare e combinare fonti di dati offline","description":"I dati provenienti da fonti offline possono essere combinati con l\u2019attivit\u00e0 online dell\u2019utente a supporto di una o varie finalit\u00e0.","descriptionLegal":"I vendor possono: \n* Combinare i dati ottenuti offline con i dati raccolti online, a supporto di una o varie Finalit\u00e0 o Finalit\u00e0 Speciali.\n"},"2":{"id":2,"name":"Collegare diversi dispositivi","description":"Sar\u00e0 possibile determinare l\u2019appartenenza di diversi dispositivi allo stesso utente o al suo nucleo familiare, a supporto di una o varie finalit\u00e0.","descriptionLegal":"I vendor possono:\n* Determinare con certezza in modo deterministico che due o pi\u00f9 dispositivi appartengono allo stesso utente o al suo nucleo familiare.\n* Determinare in modo probabilistico l\u2019appartenenza di due o pi\u00f9 dispositivi allo stesso utente o allo stesso nucleo familiare.\n* Effettuare una scansione attiva delle caratteristiche del dispositivo per l\u2019identificazione probabilistica, previo consenso degli utenti (Funzionalit\u00e0 speciale 2).\n"},"3":{"id":3,"name":"Ricevere e usare le caratteristiche che il dispositivo invia automaticamente ai fini dell\u2019identificazione","description":"Un dispositivo pu\u00f2 essere distinto da altri dispositivi in base alle informazioni che invia automaticamente, come l\u2019indirizzo IP o il tipo di browser.","descriptionLegal":"I vendor possono: \n* Creare un identificatore, utilizzando i dati che un dispositivo raccoglie automaticamente in base alle sue caratteristiche, ad es. indirizzo IP, stringa dell\u2019utente\n* Utilizzare il suddetto identificatore per provare a identificare nuovamente un dispositivo\nI vendor non possono:\n* Creare un identificatore, utilizzando i dati raccolti tramite uno scanning attivo di caratteristiche specifiche un dispositivo, come ad esempio la risoluzione dello schermo o i caratteri installati, senza l\u2019opt-in dell\u2019utente in merito alla scansionare attiva delle caratteristiche del dispositivo per la sua identificazione.\n* Utilizzare tale identificatore per identificare nuovamente un dispositivo\n"}},"specialFeatures":{"1":{"id":1,"name":"Utilizzare dati di geolocalizzazione precisi","description":"I dati di geolocalizzazione precisi possono essere utilizzati a supporto di una o varie finalit\u00e0. Ci\u00f2 significa che la posizione dell\u2019utente potr\u00e0 determinarsi con esattezza nel raggio di alcuni metri.","descriptionLegal":"I vendor possono:\n* Raccogliere e trattare dati relativi alla posizione geografica esatta, a supporto di una o varie finalit\u00e0.\nN.B.: Esatta geolocalizzazione significa che non esistono restrizioni sulla determinazione precisa della posizione geografica di un utente; il margine di precisione pu\u00f2 avere un raggio di alcuni metri\n"},"2":{"id":2,"name":"Scansione attiva delle caratteristiche del dispositivo ai fini dell\u2019identificazione","description":"Il dispositivo pu\u00f2 essere identificato in base a una scansione della combinazione unica di caratteristiche del dispositivo.","descriptionLegal":"I vendor possono:\n* Creare un identificatore utilizzando i dati raccolti mediante la scansione attiva di un dispositivo ai fini dell\u2019individuazione di caratteristiche specifiche, ad es., tipi di caratteri installati o risoluzione dello schermo. \n* Utilizzare tale identificatore per individuare ripetutamente un dispositivo. \n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Dati di geolocalizzazione precisi e identificazione attraverso la scansione del dispositivo","description":"\u00c8 possibile utilizzare la geolocalizzazione precisa e le informazioni sulle caratteristiche del dispositivo."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Annunci basici e valutazione dell\u2019annuncio","description":"\u00c8 possibile fornire annunci basici. \u00c8 possibile valutare le performance degli annunci."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Annunci personalizzati","description":"Gli annunci possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente gli annunci pubblicitari."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Annunci basici e valutazione dell\u2019annuncio","description":"\u00c8 possibile fornire annunci basici. \u00c8 possibile valutare le performance degli annunci. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Annunci basici, profilo di annunci personalizzati e valutazione dell\u2019annuncio","description":"\u00c8 possibile fornire annunci basici. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente gli annunci pubblicitari. \u00c8 possibile valutare le performance degli annunci."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Visualizzazione degli annunci personalizzati e valutazione dell\u2019annuncio","description":"Gli annunci possono essere personalizzati in base a un profilo. \u00c8 possibile valutare le performance degli annunci."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Visualizzazione degli annunci personalizzati, valutazione dell\u2019annuncio e osservazioni del pubblico","description":"Gli annunci possono essere personalizzati in base a un profilo. \u00c8 possibile valutare le performance degli annunci. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Annunci personalizzati e valutazione dell\u2019annuncio","description":"Gli annunci possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente gli annunci pubblicitari. \u00c8 possibile valutare le performance degli annunci."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Annunci personalizzati, valutazione dell\u2019annuncio e osservazioni del pubblico","description":"Gli annunci possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente gli annunci pubblicitari. \u00c8 possibile valutare le performance degli annunci. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Profilo di annunci personalizzati e visualizzazione","description":"Gli annunci possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente gli annunci pubblicitari."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Contenuti personalizzati","description":"I contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente i contenuti."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Visualizzazione dei contenuti personalizzati e valutazione dei contenuti","description":"I contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile valutare le performance dei contenuti."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Visualizzazione dei contenuti personalizzati, valutazione dei contenuti e osservazioni del pubblico","description":"I contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile valutare le performance dei contenuti. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Contenuti personalizzati e valutazione dei contenuti","description":"I contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente i contenuti. \u00c8 possibile valutare le performance dei contenuti."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Contenuti personalizzati, valutazione dei contenuti e osservazioni del pubblico","description":"I contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente i contenuti. \u00c8 possibile valutare le performance dei contenuti. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Contenuti personalizzati, valutazione dei contenuti, osservazioni del pubblico e sviluppo di prodotti","description":"I contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente i contenuti. \u00c8 possibile valutare le performance dei contenuti. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti. I dati possono essere utilizzati per costruire o migliorare esperienze, sistemi e software dell\u2019utente."},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Valutazione dell\u2019annuncio, dei contenuti e osservazioni del pubblico","description":"\u00c8 possibile valutare le performance di annunci e contenuti. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Valutazione dell\u2019annuncio e dei contenuti","description":"\u00c8 possibile valutare le performance di annunci e contenuti. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Valutazione dell\u2019annuncio e osservazioni del pubblico","description":"\u00c8 possibile valutare gli annunci. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Valutazione dell\u2019annuncio e del contenuto, osservazioni del pubblico e sviluppo di prodotti","description":"\u00c8 possibile valutare le performance di annunci e contenuti. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti. I dati possono essere utilizzati per costruire o migliorare esperienze, sistemi e software dell\u2019utente. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Valutazione del contenuto, osservazioni del pubblico e sviluppo di prodotti","description":"\u00c8 possibile valutare le performance dei contenuti. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti. I dati possono essere utilizzati per costruire o migliorare esperienze, sistemi e software dell\u2019utente."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Valutazione del contenuto e sviluppo di prodotti","description":"\u00c8 possibile valutare le performance dei contenuti. I dati possono essere utilizzati per costruire o migliorare esperienze, sistemi e software dell\u2019utente."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Visualizzazione di annunci e contenuti personalizzati, valutazione del contenuto","description":"Gli annunci e i contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile valutare le performance di annunci e contenuti."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Visualizzazione di annunci e contenuti personalizzati, valutazione dell\u2019annuncio e del contenuto, osservazioni del pubblico","description":"Gli annunci e i contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile valutare le performance di annunci e contenuti. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti. I dati possono essere utilizzati per costruire o migliorare esperienze, sistemi e software dell\u2019utente."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Annunci e contenuti personalizzati, valutazione dell\u2019annuncio e del contenuto","description":"Gli annunci e i contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente annunci e contenuti. \u00c8 possibile valutare le performance di annunci e contenuti."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Annunci e contenuti personalizzati, valutazione dell\u2019annuncio e del contenuto, osservazioni del pubblico","description":"Gli annunci e i contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente annunci e contenuti. \u00c8 possibile valutare le performance di annunci e contenuti. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Annunci personalizzati e contenuto di profilo","description":"\u00c8 possibile aggiungere ulteriori dati per personalizzare annunci e contenuti."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Annunci basici, valutazione dell\u2019annuncio e del contenuto, osservazioni del pubblico","description":"\u00c8 possibile fornire annunci basici. \u00c8 possibile valutare le performance di annunci e contenuti. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Visualizzazione di annunci personalizzati, contenuti personalizzati, valutazione dell\u2019annuncio e del contenuto, osservazioni del pubblico","description":"Gli annunci e i contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente i contenuti. \u00c8 possibile valutare le performance di annunci e contenuti. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Visualizzazione di annunci personalizzati, contenuti personalizzati, valutazione dell\u2019annuncio e del contenuto, osservazioni del pubblico e sviluppo di prodotti","description":"Gli annunci e i contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente i contenuti. \u00c8 possibile valutare le performance di annunci e contenuti. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti. I dati possono essere utilizzati per costruire o migliorare esperienze, sistemi e software dell\u2019utente."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Annunci basici, contenuti personalizzati, valutazione dell\u2019annuncio e del contenuto, osservazioni del pubblico","description":"\u00c8 possibile fornire annunci basici. I contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente i contenuti. \u00c8 possibile valutare le performance di annunci e contenuti. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Annunci basici, contenuti personalizzati, valutazione dell\u2019annuncio e del contenuto, osservazioni del pubblico e sviluppo di prodotti","description":"\u00c8 possibile fornire annunci basici. I contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente i contenuti. \u00c8 possibile valutare le performance di annunci e contenuti. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti. I dati possono essere utilizzati per costruire o migliorare esperienze, sistemi e software dell\u2019utente."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Annunci basici, contenuti personalizzati, valutazione del contenuto e osservazioni del pubblico","description":"\u00c8 possibile fornire annunci basici. I contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente i contenuti. \u00c8 possibile valutare le performance di annunci e contenuti. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Annunci basici, contenuti personalizzati, valutazione del contenuto, osservazioni del pubblico e sviluppo di prodotti","description":"\u00c8 possibile fornire annunci basici. I contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente i contenuti. \u00c8 possibile valutare le performance dei contenuti. \u00c8 possibile derivare le osservazioni del pubblico che ha visto gli annunci e i contenuti. I dati possono essere utilizzati per costruire o migliorare esperienze, sistemi e software dell\u2019utente."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Annunci basici, contenuti personalizzati e valutazione degli annunci","description":"\u00c8 possibile fornire annunci basici. I contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente i contenuti. \u00c8 possibile valutare le performance degli annunci."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Annunci basici, contenuti personalizzati, valutazione degli annunci e sviluppo di prodotti","description":"\u00c8 possibile fornire annunci basici. I contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente i contenuti. \u00c8 possibile valutare le performance degli annunci. I dati possono essere utilizzati per costruire o migliorare esperienze, sistemi e software dell\u2019utente."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Annunci personalizzati, valutazione degli annunci e sviluppo di prodotti","description":"Gli annunci possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente gli annunci pubblicitari. \u00c8 possibile valutare le prestazioni degli annunci. I dati possono essere utilizzati per creare o migliorare l\u2019esperienza utente, sistemi e software."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Annunci personalizzati, valutazione degli annunci, osservazioni del pubblico e sviluppo di prodotti","description":"Gli annunci possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente gli annunci pubblicitari. \u00c8 possibile valutare le prestazioni degli annunci. \u00c8 possibile ottenere informazioni sul pubblico che ha visualizzato gli annunci e i contenuti. I dati possono essere utilizzati per creare o migliorare l\u2019esperienza utente, sistemi e software."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Annunci personalizzati, valutazione degli annunci e del contenuto, osservazioni del pubblico e sviluppo di prodotti","description":"Gli annunci possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente gli annunci pubblicitari. \u00c8 possibile valutare le prestazioni di annunci e contenuti. \u00c8 possibile ottenere informazioni sul pubblico che ha visualizzato gli annunci e i contenuti. I dati possono essere utilizzati per creare o migliorare l\u2019esperienza utente, sistemi e software."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Annunci personalizzati, visualizzazione di contenuti personalizzati, valutazione degli annunci e del contenuto, osservazioni del pubblico e sviluppo di prodotti","description":"Gli annunci e i contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente gli annunci pubblicitari. \u00c8 possibile valutare le prestazioni di annunci e contenuti. \u00c8 possibile ottenere informazioni sul pubblico che ha visualizzato gli annunci e i contenuti. I dati possono essere utilizzati per creare o migliorare l\u2019esperienza utente, sistemi e software."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Annunci e contenuti personalizzati, valutazione degli annunci e del contenuto, osservazioni del pubblico e sviluppo di prodotti","description":"Gli annunci e i contenuti possono essere personalizzati in base a un profilo. \u00c8 possibile aggiungere ulteriori dati per personalizzare maggiormente annunci e contenuti. \u00c8 possibile valutare le prestazioni di annunci e contenuti. \u00c8 possibile ottenere informazioni sul pubblico che ha visualizzato gli annunci e i contenuti. I dati possono essere utilizzati per creare o migliorare l\u2019esperienza utente, sistemi e software."}}} \ No newline at end of file diff --git a/src/s1/config/2.0/purposes/purposes-ja.json b/src/s1/config/2.0/purposes/purposes-ja.json index c82ae2dc..2f6b685b 100644 --- a/src/s1/config/2.0/purposes/purposes-ja.json +++ b/src/s1/config/2.0/purposes/purposes-ja.json @@ -1 +1 @@ -{"vendorListVersion":79,"lastUpdated":"2021-02-25T16:36:20Z","purposes":{"1":{"id":1,"name":"\u30c7\u30d0\u30a4\u30b9\u306b\u60c5\u5831\u3092\u4fdd\u5b58\u3001\u304a\u3088\u3073/\u307e\u305f\u306f\u30a2\u30af\u30bb\u30b9\u3059\u308b\n","description":"Cookie\u3001\u30c7\u30d0\u30a4\u30b9\u8b58\u5225\u5b50\u3001\u307e\u305f\u306f\u305d\u306e\u4ed6\u306e\u60c5\u5831\u306f\u63d0\u793a\u3055\u308c\u305f\u76ee\u7684\u3067\u3042\u306a\u305f\u306e\u30c7\u30d0\u30a4\u30b9\u4e0a\u306b\u4fdd\u5b58\u307e\u305f\u306f\u30a2\u30af\u30bb\u30b9\u3057\u307e\u3059\u3002\n","descriptionLegal":"\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u3059:\n* Cookie\u3084\u30e6\u30fc\u30b6\u30fc\u306b\u63d0\u793a\u3055\u308c\u308b\u30c7\u30d0\u30a4\u30b9\u8b58\u5225\u5b50\u306a\u3069\u30c7\u30d0\u30a4\u30b9\u4e0a\u306e\u60c5\u5831\u3092\u4fdd\u5b58\u3057\u3066\u30a2\u30af\u30bb\u30b9\u3059\u308b\u3002"},"2":{"id":2,"name":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u306e\u9078\u629e\n","description":"\u3042\u306a\u305f\u304c\u8868\u793a\u3057\u3066\u3044\u308b\u30b3\u30f3\u30c6\u30f3\u30c4\u3001\u4f7f\u7528\u3057\u3066\u3044\u308b\u30a2\u30d7\u30ea\u3001\u304a\u304a\u3088\u305d\u306e\u4f4d\u7f6e\u3001\u307e\u305f\u306f\u30c7\u30d0\u30a4\u30b9\u30bf\u30a4\u30d7\u306b\u57fa\u3065\u3044\u305f\u5e83\u544a\u304c\u8868\u793a\u3055\u308c\u307e\u3059\u3002\n","descriptionLegal":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u306e\u9078\u629e\u3092\u884c\u3046\u305f\u3081\u3001\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u3059:\n* \u30b3\u30f3\u30c6\u30f3\u30c4\u3068\u30c7\u30d0\u30a4\u30b9\u306b\u95a2\u3059\u308b\u60c5\u5831\uff08\u30c7\u30d0\u30a4\u30b9\u306e\u30bf\u30a4\u30d7\u3068\u6a5f\u80fd\u3001\u30e6\u30fc\u30b6\u30fc\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u3001URL\u3001IP\u30a2\u30c9\u30ec\u30b9\u306a\u3069\uff09\u3092\u542b\u3081\u5e83\u544a\u304c\u8868\u793a\u3055\u308c\u308b\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8\u306b\u95a2\u3059\u308b\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0\u60c5\u5831\u3092\u4f7f\u7528\u3057\u5e83\u544a\u3092\u8868\u793a\u3059\u308b\n* \u30e6\u30fc\u30b6\u30fc\u306e\u4e0d\u6b63\u78ba\u306a\u4f4d\u7f6e\u60c5\u5831\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3059\u308b\n*\u30e6\u30fc\u30b6\u30fc\u306b\u8868\u793a\u3055\u308c\u308b\u5e83\u544a\u306e\u983b\u5ea6\u3092\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u3059\u308b\u3002\n*\u30e6\u30fc\u30b6\u30fc\u306b\u5e83\u544a\u304c\u8868\u793a\u3055\u308c\u308b\u9806\u5e8f\u3092\u6c7a\u5b9a\u3059\u308b\u3002\n\u5e83\u544a\u304c\u4e0d\u9069\u5207\u306a\u7de8\u96c6\u4e0a\u306e\uff08\u30d6\u30e9\u30f3\u30c9\u306b\u5bfe\u3057\u3066\u5b89\u5168\u3067\u306a\u3044\uff09\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8\u3067\u914d\u4fe1\u3055\u308c\u308b\u306e\u3092\u9632\u3050\n\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093:\n\u3053\u306e\u60c5\u5831\u3092\u4f7f\u7528\u3057\u3066\u4eca\u5f8c\u306e\u5e83\u544a\u306e\u9078\u629e\u306b\u5f79\u7acb\u3066\u308b\u305f\u3081\u306e\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u3059\u308b\u3002\n * \u6ce8\u8a18\u4e0d\u6b63\u78ba\u306a\u4f4d\u7f6e\u3068\u306f\u3001\u5c11\u306a\u304f\u3068\u3082\u534a\u5f84500\u30e1\u30fc\u30c8\u30eb\u3092\u542b\u3080\u304a\u304a\u3088\u305d\u306e\u4f4d\u7f6e\u60c5\u5831\u306e\u53d6\u5f97\u304c\u8a31\u53ef\u3055\u308c\u308b\u3053\u3068\u3092\u610f\u5473\u3057\u307e\u3059\u3002"},"3":{"id":3,"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306e\u4f5c\u6210\n","description":"\u3042\u306a\u305f\u306b\u95a2\u9023\u3059\u308b\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u3092\u8868\u793a\u3059\u308b\u305f\u3081\u3001\u3042\u306a\u305f\u3068\u3042\u306a\u305f\u304c\u95a2\u5fc3\u3042\u308b\u3053\u3068\u306b\u3064\u3044\u3066\u306e\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u3057\u307e\u3059\u3002\n","descriptionLegal":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u3059\u308b\u305f\u3081\u3001\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u3059:\n* \u30e6\u30fc\u30b6\u30fc\u306e\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3\u3001\u8208\u5473\u3001\u4eba\u53e3\u7d71\u8a08\u5b66\u7684\u60c5\u5831\u3001\u5834\u6240\u306a\u3069\u3092\u542b\u3080\u30e6\u30fc\u30b6\u30fc\u306b\u95a2\u3059\u308b\u60c5\u5831\u3092\u53ce\u96c6\u3057\u3001\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u3067\u4f7f\u7528\u3059\u308b\u305f\u3081\u306e\u30e6\u30fc\u30b6\u30fc\u306e\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u307e\u305f\u306f\u7de8\u96c6\u3059\u308b\u3002\n* \u3053\u306e\u60c5\u5831\u3068\u4ee5\u524d\u306b\u53ce\u96c6\u3057\u305f\u4ed6\u306e\u60c5\u5831\uff08Web\u30b5\u30a4\u30c8\u3068\u30a2\u30d7\u30ea\u5168\u4f53\u304b\u3089\u53ce\u96c6\u3057\u305f\u4ed6\u306e\u60c5\u5831\u3092\u542b\u3080\uff09\u3092\u7d44\u307f\u5408\u308f\u305b\u3001\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u3067\u4f7f\u7528\u3059\u308b\u305f\u3081\u306e\u30e6\u30fc\u30b6\u30fc\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u307e\u305f\u306f\u7de8\u96c6\u3059\u308b\u3002"},"4":{"id":4,"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u3092\u9078\u629e\n","description":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u304c\u3042\u306a\u305f\u306e\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u8868\u793a\u3055\u308c\u307e\u3059\u3002\n","descriptionLegal":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u3092\u9078\u629e\u3059\u308b\u305f\u3081\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u3059:\n* \u30e6\u30fc\u30b6\u30fc\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u3084\u30e6\u30fc\u30b6\u30fc\u306e\u4ee5\u524d\u306e\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3\u3001\u8208\u5473\u3001\u30b5\u30a4\u30c8\u3084\u30a2\u30d7\u30ea\u3078\u306e\u30a2\u30af\u30bb\u30b9\u3001\u5834\u6240\u3001\u4eba\u53e3\u7d71\u8a08\u5b66\u7684\u60c5\u5831\u306a\u3069\u3001\u305d\u306e\u4ed6\u306e\u904e\u53bb\u306e\u30e6\u30fc\u30b6\u30fc\u30c7\u30fc\u30bf\u306b\u57fa\u3065\u3044\u3066\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u3092\u9078\u629e\u3059\u308b\u3002"},"5":{"id":5,"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306e\u4f5c\u6210\n","description":"\u3042\u306a\u305f\u306b\u95a2\u9023\u3059\u308b\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u8868\u793a\u3059\u308b\u305f\u3081\u3001\u3042\u306a\u305f\u3068\u3042\u306a\u305f\u304c\u95a2\u5fc3\u3042\u308b\u3053\u3068\u306b\u95a2\u3059\u308b\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u3057\u307e\u3059\u3002\n","descriptionLegal":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u3059\u308b\u305f\u3081\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u3059:\n*\u30e6\u30fc\u30b6\u30fc\u306e\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3\u3001\u8208\u5473\u3001\u30b5\u30a4\u30c8\u3084\u30a2\u30d7\u30ea\u3078\u306e\u30a2\u30af\u30bb\u30b9\u3001\u4eba\u53e3\u7d71\u8a08\u5b66\u7684\u60c5\u5831\u3001\u5834\u6240\u306a\u3069\u306e\u30e6\u30fc\u30b6\u30fc\u306b\u95a2\u3059\u308b\u60c5\u5831\u3092\u53ce\u96c6\u3057\u3001\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3059\u308b\u305f\u3081\u306e\u30e6\u30fc\u30b6\u30fc\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u307e\u305f\u306f\u7de8\u96c6\u3059\u308b\u3002\n* \u3053\u306e\u60c5\u5831\u3068\u4ee5\u524d\u306b\u53ce\u96c6\u3057\u305f\u4ed6\u306e\u60c5\u5831\uff08Web\u30b5\u30a4\u30c8\u3068\u30a2\u30d7\u30ea\u5168\u4f53\u304b\u3089\u53ce\u96c6\u3057\u305f\u4ed6\u306e\u60c5\u5831\u3092\u542b\u3080\uff09\u3092\u7d44\u307f\u5408\u308f\u305b\u3001\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u306b\u4f7f\u7528\u3059\u308b\u30e6\u30fc\u30b6\u30fc\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u307e\u305f\u306f\u7de8\u96c6\u3059\u308b\u3002"},"6":{"id":6,"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u9078\u629e\n","description":"\u3042\u306a\u305f\u306e\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u304c\u8868\u793a\u3055\u308c\u307e\u3059\u3002\n","descriptionLegal":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u9078\u629e\u3059\u308b\u305f\u3081\u3001\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u3059:\n\u30e6\u30fc\u30b6\u30fc\u306e\u4ee5\u524d\u306e\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3\u3001\u8208\u5473\u3001\u30b5\u30a4\u30c8\u3084\u30a2\u30d7\u30ea\u3078\u306e\u30a2\u30af\u30bb\u30b9\u3001\u5834\u6240\u3001\u4eba\u53e3\u7d71\u8a08\u5b66\u7684\u60c5\u5831\u306a\u3069\u3001\u30e6\u30fc\u30b6\u30fc\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u3084\u305d\u306e\u4ed6\u306e\u904e\u53bb\u306e\u30e6\u30fc\u30b6\u30fc\u30c7\u30fc\u30bf\u306b\u57fa\u3065\u304d\u3001\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u9078\u629e\u3059\u308b\u3002"},"7":{"id":7,"name":"\u5e83\u544a\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u306e\u6e2c\u5b9a\n","description":"\u8868\u793a\u3001\u307e\u305f\u306f\u64cd\u4f5c\u3055\u308c\u305f\u5e83\u544a\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3068\u305d\u306e\u52b9\u679c\u3092\u6e2c\u5b9a\u3057\u307e\u3059\u3002\n","descriptionLegal":"\u5e83\u544a\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3059\u308b\u305f\u3081\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u3059:\n* \u5e83\u544a\u304c\u30e6\u30fc\u30b6\u30fc\u306b\uff08\u3069\u306e\u3088\u3046\u306b\uff09\u914d\u4fe1\u3055\u308c\u305f\u304b\u3001\u307e\u305f\u30e6\u30fc\u30b6\u30fc\u304c\u3069\u306e\u3088\u3046\u306b\u64cd\u4f5c\u3057\u305f\u304b\u3092\u6e2c\u5b9a\n* \u52b9\u679c\u3068\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u542b\u3080\u5e83\u544a\u306b\u95a2\u3059\u308b\u30ec\u30dd\u30fc\u30c8\u3092\u63d0\u4f9b\n* \u30e6\u30fc\u30b6\u30fc\u304c\u5e83\u544a\u3092\u64cd\u4f5c\u3059\u308b\u904e\u7a0b\u3067\u96c6\u3081\u3089\u308c\u305f\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3057\u3001\u5e83\u544a\u3092\u64cd\u4f5c\u3057\u305f\u30e6\u30fc\u30b6\u30fc\u306b\u95a2\u3059\u308b\u30ec\u30dd\u30fc\u30c8\u3092\u63d0\u4f9b\u3059\u308b\n* \u30b5\u30a4\u30c8\u306b\u8868\u793a\u3055\u308c\u305f\u5e83\u544a\u306b\u3064\u3044\u3066\u767a\u884c\u8005\u306b\u30ec\u30dd\u30fc\u30c8\u3092\u63d0\u4f9b\u3059\u308b\n*\u9069\u5207\u306a\u7de8\u96c6\u74b0\u5883\uff08\u30d6\u30e9\u30f3\u30c9\u4fdd\u8b77\uff09\u306e\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8\u3067\u5e83\u544a\u304c\u914d\u4fe1\u3055\u308c\u3066\u3044\u308b\u304b\u3069\u3046\u304b\u3092\u6e2c\u5b9a\u3059\u308b\n*\u8868\u793a\u3055\u308c\u308b\u6a5f\u4f1a\u304c\u3042\u3063\u305f\u5e83\u544a\u306e\u5272\u5408\u3001\u304a\u3088\u3073\u305d\u306e\u7d99\u7d9a\u6642\u9593\u3092\u7279\u5b9a\u3059\u308b\n*\u3053\u306e\u60c5\u5831\u3068\u4ee5\u524d\u306b\u53ce\u96c6\u3057\u305f\u4ed6\u306e\u60c5\u5831\uff08\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u3084\u30a2\u30d7\u30ea\u5168\u4f53\u304b\u3089\u306e\u60c5\u5831\u3092\u542b\u3080\uff09\u3092\u7d44\u307f\u5408\u308f\u305b\u308b\n\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093:\n\u6cd5\u7684\u6839\u62e0\u306a\u3057\u306b\u30d1\u30cd\u30eb\u307e\u305f\u306f\u985e\u4f3c\u306e\u6d3e\u751f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\u30c7\u30fc\u30bf\u3092\u5e83\u544a\u6e2c\u5b9a\u30c7\u30fc\u30bf\u306b\u4f7f\u7528\u3057\u5e02\u5834\u8abf\u67fb\u306b\u9069\u7528\u3057\u3066\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\u3092\u751f\u6210\u3059\u308b\uff08\u76ee\u76849\uff09"},"8":{"id":8,"name":"\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\n","description":"\u8868\u793a\u3055\u308c\u305f\u3001\u307e\u305f\u306f\u3042\u306a\u305f\u304c\u64cd\u4f5c\u3057\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3068\u52b9\u679c\u3092\u6e2c\u5b9a\u3057\u307e\u3059\u3002\n","descriptionLegal":"\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3059\u308b\u305f\u3081\u3001\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u3059:\n* \u30b3\u30f3\u30c6\u30f3\u30c4\u304c\u3069\u306e\u3088\u3046\u306b\u914d\u4fe1\u3055\u308c\u3001\u30e6\u30fc\u30b6\u30fc\u304c\u64cd\u4f5c\u3057\u305f\u304b\u3092\u6e2c\u5b9a\u3057\u5831\u544a\u3059\u308b\u3002\n* \u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u64cd\u4f5c\u3057\u305f\u30e6\u30fc\u30b6\u30fc\u306b\u95a2\u3059\u308b\u76f4\u63a5\u6e2c\u5b9a\u53ef\u80fd\u306a\u60c5\u5831\u307e\u305f\u306f\u65e2\u77e5\u306e\u60c5\u5831\u3092\u4f7f\u7528\u3057\u3001\u30ec\u30dd\u30fc\u30c8\u3092\u63d0\u4f9b\u3059\u308b\n* \u3053\u306e\u60c5\u5831\u3068\u4ee5\u524d\u306b\u53ce\u96c6\u3057\u305f\u4ed6\u306e\u60c5\u5831\uff08\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u3084\u30a2\u30d7\u30ea\u5168\u4f53\u304b\u3089\u306e\u60c5\u5831\u3092\u542b\u3080\uff09\u3092\u7d44\u307f\u5408\u308f\u305b\u308b\n\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093:\n* \u5e83\u544a\uff08\u30cd\u30a4\u30c6\u30a3\u30d6\u5e83\u544a\u3092\u542b\u3080\uff09\u304c\u30e6\u30fc\u30b6\u30fc\u306b\u914d\u4fe1\u3055\u308c\u305f\u304b\u3069\u3046\u304b\u3001\u305d\u3057\u3066\u30e6\u30fc\u30b6\u30fc\u304c\u64cd\u4f5c\u3057\u305f\u304b\u3069\u3046\u304b\u3068\u305d\u306e\u65b9\u6cd5\u3092\u6e2c\u5b9a\u3059\u308b\u3002\n* \u6cd5\u7684\u6839\u62e0\u306a\u3057\u306b\u30d1\u30cd\u30eb\u307e\u305f\u306f\u985e\u4f3c\u306e\u6d3e\u751f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\u30c7\u30fc\u30bf\u3092\u5e83\u544a\u6e2c\u5b9a\u30c7\u30fc\u30bf\u306b\u9069\u7528\u3057\u3001\u5e02\u5834\u8abf\u67fb\u306b\u9069\u7528\u3057\u3066\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\u3092\u751f\u6210\u3059\u308b\uff08\u76ee\u76849\uff09"},"9":{"id":9,"name":"\u5e02\u5834\u8abf\u67fb\u3092\u9069\u7528\u3057\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\u3092\u751f\u6210\u3059\u308b\n","description":"\u5e02\u5834\u8abf\u67fb\u3092\u5229\u7528\u3057\u3001\u30b5\u30a4\u30c8/\u30a2\u30d7\u30ea\u306b\u30a2\u30af\u30bb\u30b9\u3057\u5e83\u544a\u3092\u8868\u793a\u3059\u308b\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u3064\u3044\u3066\u8a73\u3057\u304f\u77e5\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n","descriptionLegal":"\u5e02\u5834\u8abf\u67fb\u3092\u9069\u7528\u3057\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\u3092\u751f\u6210\u3059\u308b\u305f\u3081\u3001\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u3059:\n* \u30d1\u30cd\u30eb\u30d9\u30fc\u30b9\u304a\u3088\u3073\u540c\u69d8\u306b\u5c0e\u304d\u51fa\u3055\u308c\u305f\u6d1e\u5bdf\u3092\u901a\u3058\u3001\u5e83\u544a\u304c\u5230\u9054\u3057\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u96c6\u8a08\u30ec\u30dd\u30fc\u30c8\u3092\u5e83\u544a\u4e3b\u307e\u305f\u306f\u305d\u306e\u4ee3\u7406\u4eba\u306b\u63d0\u4f9b\u3059\u308b\u3002\n* \u30d1\u30cd\u30eb\u30d9\u30fc\u30b9\u304a\u3088\u3073\u540c\u69d8\u306b\u5c0e\u304d\u51fa\u3055\u308c\u305f\u6d1e\u5bdf\u3092\u9069\u7528\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u30b5\u30a4\u30c8\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3001\u304a\u3088\u3073/\u307e\u305f\u306f\u5e83\u544a\u3092\u914d\u4fe1\u3055\u308c\u305f\u3001\u307e\u305f\u306f\u64cd\u4f5c\u3057\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u3064\u3044\u3066\u767a\u884c\u8005\u306b\u96c6\u8a08\u30ec\u30dd\u30fc\u30c8\u3092\u63d0\u4f9b\u3059\u308b\u3002\n* \u30d9\u30f3\u30c0\u30fc\u304c\u30aa\u30d5\u30e9\u30a4\u30f3\u30c7\u30fc\u30bf\u30bd\u30fc\u30b9\u306e\u7167\u5408\u3068\u7d50\u5408\u3092\u5ba3\u8a00\u3057\u3066\u3044\u308b\u5834\u5408\u3001\u5e02\u5834\u8abf\u67fb\u306e\u76ee\u7684\u3067\u30aa\u30d5\u30e9\u30a4\u30f3\u30c7\u30fc\u30bf\u3068\u30aa\u30f3\u30e9\u30a4\u30f3\u30e6\u30fc\u30b6\u30fc\u3092\u95a2\u9023\u4ed8\u3051\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\u3092\u751f\u6210\u3059\u308b\uff08\u6a5f\u80fd1\uff09\n* \u3053\u306e\u60c5\u5831\u3068\u4ee5\u524d\u306b\u53ce\u96c6\u3057\u305f\u60c5\u5831\uff08\u4ed6\u306eWeb\u30b5\u30a4\u30c8\u3084\u30a2\u30d7\u30ea\u304b\u3089\u306e\u60c5\u5831\u3092\u542b\u3080\uff09\u3092\u7d44\u307f\u5408\u308f\u305b\u308b\u3002\n\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093:\n* \u5e83\u544a\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3059\u308b\u6cd5\u7684\u6839\u62e0\u306a\u3057\u306b\u7279\u5b9a\u306e\u30e6\u30fc\u30b6\u30fc\u304c\u914d\u4fe1\u3055\u308c\u305f\u3001\u307e\u305f\u306f\u64cd\u4f5c\u3057\u305f\u5e83\u544a\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3068\u52b9\u679c\u3092\u6e2c\u5b9a\u3059\u308b\u3002\n*\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3059\u308b\u6cd5\u7684\u6839\u62e0\u306a\u3057\u306b\u7279\u5b9a\u306e\u30e6\u30fc\u30b6\u30fc\u304c\u63d0\u4f9b\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u5185\u5bb9\u3068\u305d\u308c\u3092\u3069\u3046\u64cd\u4f5c\u3057\u305f\u304b\u3092\u6e2c\u5b9a\u3059\u308b\u3002"},"10":{"id":10,"name":"\u88fd\u54c1\u306e\u958b\u767a\u3068\u6539\u5584\n","description":"\u65e2\u5b58\u306e\u30b7\u30b9\u30c6\u30e0\u3068\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3092\u6539\u5584\u3057\u3001\u65b0\u88fd\u54c1\u3092\u958b\u767a\u3059\u308b\u306e\u3092\u76ee\u7684\u3068\u3057\u3066\u3042\u306a\u305f\u306e\u30c7\u30fc\u30bf\u304c\u5229\u7528\u3055\u308c\u307e\u3059\u3002\n","descriptionLegal":"\u65b0\u88fd\u54c1\u3092\u958b\u767a\u3057\u88fd\u54c1\u3092\u6539\u5584\u3059\u308b\u305f\u3081\u3001\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u3059:\n* \u65b0\u6a5f\u80fd\u3067\u65e2\u5b58\u306e\u88fd\u54c1\u3092\u6539\u5584\u3059\u308b\u305f\u3081\u3001\u304a\u3088\u3073\u65b0\u88fd\u54c1\u3092\u958b\u767a\u3059\u308b\u305f\u3081\u306b\u60c5\u5831\u3092\u4f7f\u7528\u3059\u308b\n* \u6a5f\u68b0\u5b66\u7fd2\u3092\u901a\u3058\u3066\u65b0\u3057\u3044\u30e2\u30c7\u30eb\u3068\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0\u3092\u4f5c\u6210\u3059\u308b\n\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093:\n* \u5225\u306e\u76ee\u7684\u3067\u8a31\u53ef\u3055\u308c\u3066\u3044\u308b\u305d\u306e\u4ed6\u306e\u30c7\u30fc\u30bf\u3092\u3053\u306e\u76ee\u7684\u306e\u305f\u3081\u306b\u51e6\u7406\u64cd\u4f5c\u3059\u308b"}},"specialPurposes":{"1":{"id":1,"name":"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u306e\u78ba\u4fdd\u3001\u8a50\u6b3a\u884c\u70ba\u306e\u9632\u6b62\u3001\u304a\u3088\u3073\u30c7\u30d0\u30c3\u30b0\n","description":"\u3042\u306a\u305f\u306e\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u3067\u4e0d\u6b63\u884c\u70ba\u3092\u76e3\u8996\u304a\u3088\u3073\u9632\u6b62\u3057\u3001\u30b7\u30b9\u30c6\u30e0\u3068\u30d7\u30ed\u30bb\u30b9\u304c\u9069\u5207\u304b\u3064\u5b89\u5168\u306b\u6a5f\u80fd\u3059\u308b\u3088\u3046\u306b\u3057\u307e\u3059\u3002\n","descriptionLegal":"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u306e\u78ba\u4fdd\u3001\u8a50\u6b3a\u884c\u70ba\u306e\u9632\u6b62\u3001\u304a\u3088\u3073\u30c7\u30d0\u30c3\u30b0\u3092\u3059\u308b\u305f\u3081\u3001\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u3059:\n* \u30c7\u30fc\u30bf\u304c\u5b89\u5168\u306b\u9001\u4fe1\u3055\u308c\u308b\u3088\u3046\u306b\u3059\u308b\n* \u60aa\u8cea\u3001\u4e0d\u6b63\u3001\u7121\u52b9\u306a\u3001\u307e\u305f\u306f\u9055\u6cd5\u6027\u306e\u3042\u308b\u6d3b\u52d5\u3092\u691c\u51fa\u3057\u3066\u9632\u3050\u3002\n* \u8a31\u53ef\u3055\u308c\u305f\u76ee\u7684\u306b\u95a2\u308f\u308b\u30b7\u30b9\u30c6\u30e0\u3068\u30d7\u30ed\u30bb\u30b9\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u76e3\u8996\u304a\u3088\u3073\u5f37\u5316\u3059\u308b\u3053\u3068\u3092\u542b\u3081\u3001\u30b7\u30b9\u30c6\u30e0\u3068\u30d7\u30ed\u30bb\u30b9\u306e\u6b63\u78ba\u3067\u52b9\u7387\u7684\u306a\u64cd\u4f5c\u3092\u4fdd\u8a3c\u3059\u308b\u3002\n\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093:\n* \u5225\u306e\u76ee\u7684\u3067\u8a31\u53ef\u3055\u308c\u3066\u3044\u308b\u305d\u306e\u4ed6\u306e\u30c7\u30fc\u30bf\u3092\u3053\u306e\u76ee\u7684\u306e\u305f\u3081\u306b\u51e6\u7406\u64cd\u4f5c\u3059\u308b\n"},"2":{"id":2,"name":"\u5e83\u544a\u307e\u305f\u306f\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u6280\u8853\u7684\u306a\u914d\u4fe1\n","description":"\u3042\u306a\u305f\u306e\u30c7\u30d0\u30a4\u30b9\u306f\u5e83\u544a\u3084\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u8868\u793a\u3057\u3066\u64cd\u4f5c\u3059\u308b\u305f\u3081\u306e\u60c5\u5831\u3092\u9001\u53d7\u4fe1\u3067\u304d\u307e\u3059\u3002\n","descriptionLegal":"\u60c5\u5831\u3092\u63d0\u4f9b\u3057\u6280\u8853\u7684\u306a\u8981\u6c42\u306b\u5bfe\u5fdc\u3059\u308b\u305f\u3081\u3001\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u3059:\n* \u30e6\u30fc\u30b6\u30fc\u306eIP\u30a2\u30c9\u30ec\u30b9\u3092\u4f7f\u7528\u3057\u3066\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u7d4c\u7531\u3067\u5e83\u544a\u3092\u914d\u4fe1\u3059\u308b\n* \u30e6\u30fc\u30b6\u30fc\u3092\u30e9\u30f3\u30c7\u30a3\u30f3\u30b0\u30da\u30fc\u30b8\u306b\u8a98\u5c0e\u3059\u308b\u3053\u3068\u306b\u3088\u308a\u30e6\u30fc\u30b6\u30fc\u306e\u5e83\u544a\u3068\u306e\u3084\u308a\u3068\u308a\u306b\u30ec\u30b9\u30dd\u30f3\u30b9\u3059\u308b\n* \u30e6\u30fc\u30b6\u30fc\u306eIP\u30a2\u30c9\u30ec\u30b9\u3092\u4f7f\u7528\u3057\u3066\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u7d4c\u7531\u3067\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u914d\u4fe1\u3059\u308b\n* \u30e6\u30fc\u30b6\u30fc\u3092\u30e9\u30f3\u30c7\u30a3\u30f3\u30b0\u30da\u30fc\u30b8\u306b\u8a98\u5c0e\u3059\u308b\u3053\u3068\u306b\u3088\u308a\u3001\u30e6\u30fc\u30b6\u30fc\u306e\u30b3\u30f3\u30c6\u30f3\u30c8\u3068\u306e\u3084\u308a\u3068\u308a\u306b\u30ec\u30b9\u30dd\u30f3\u30b9\u3059\u308b\n* \u30c7\u30d0\u30a4\u30b9\u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3001\u304b\u3064\u9069\u5207\u306a\u30b5\u30a4\u30ba\u306e\u5e83\u544a\u30af\u30ea\u30a8\u30a4\u30c6\u30a3\u30d6\u307e\u305f\u306f\u30d3\u30c7\u30aa\u30d5\u30a1\u30a4\u30eb\u3092\u914d\u4fe1\u3059\u308b\u306a\u3069\u3001\u5e83\u544a\u307e\u305f\u306f\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u914d\u4fe1\u3059\u308b\u305f\u3081\u306b\u30c7\u30d0\u30a4\u30b9\u30bf\u30a4\u30d7\u3068\u6a5f\u80fd\u306b\u95a2\u3059\u308b\u60c5\u5831\u3092\u4f7f\u7528\u3059\u308b\n\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093:\n* \u5225\u306e\u76ee\u7684\u3067\u8a31\u53ef\u3055\u308c\u3066\u3044\u308b\u305d\u306e\u4ed6\u306e\u30c7\u30fc\u30bf\u3092\u3053\u306e\u76ee\u7684\u306e\u305f\u3081\u306b\u51e6\u7406\u64cd\u4f5c\u3059\u308b"}},"features":{"1":{"id":1,"name":"\u30aa\u30d5\u30e9\u30a4\u30f3\u30c7\u30fc\u30bf\u30bd\u30fc\u30b9\u3092\u7167\u5408\u3057\u7d44\u307f\u5408\u308f\u305b\u308b\n","description":"\u30aa\u30d5\u30e9\u30a4\u30f3\u30c7\u30fc\u30bf\u30bd\u30fc\u30b9\u304b\u3089\u306e\u30c7\u30fc\u30bf\u306f\u3042\u306a\u305f\u306e\u30aa\u30f3\u30e9\u30a4\u30f3\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3\u3068\u7d44\u307f\u5408\u308f\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u30011\u3064\u4ee5\u4e0a\u306e\u76ee\u7684\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u307e\u3059\u3002\n","descriptionLegal":"\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u3059:\n* 1\u3064\u4ee5\u4e0a\u306e\u76ee\u7684\u3001\u307e\u305f\u306f\u7279\u5225\u306a\u76ee\u7684\u306e\u305f\u3081\u306b\u30aa\u30d5\u30e9\u30a4\u30f3\u3067\u53d6\u5f97\u3057\u305f\u30c7\u30fc\u30bf\u3068\u30aa\u30f3\u30e9\u30a4\u30f3\u3067\u53ce\u96c6\u3057\u305f\u30c7\u30fc\u30bf\u3092\u7d44\u307f\u5408\u308f\u305b\u308b\u3002"},"2":{"id":2,"name":"\u7570\u306a\u308b\u30c7\u30d0\u30a4\u30b9\u3068\u30ea\u30f3\u30af\u3059\u308b\n","description":"\u3055\u307e\u3056\u307e\u306a\u30c7\u30d0\u30a4\u30b9\u304c\u3042\u306a\u305f\u307e\u305f\u306f\u3042\u306a\u305f\u306e\u4e16\u5e2f\u306b\u5c5e\u3057\u3066\u3044\u308b\u3068\u5224\u65ad\u3057\u30011\u3064\u4ee5\u4e0a\u306e\u76ee\u7684\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u307e\u3059\u3002\n","descriptionLegal":"\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u3059:\n* 2\u3064\u4ee5\u4e0a\u306e\u30c7\u30d0\u30a4\u30b9\u304c\u540c\u3058\u30e6\u30fc\u30b6\u30fc\u307e\u305f\u306f\u4e16\u5e2f\u306b\u5c5e\u3057\u3066\u3044\u308b\u3068\u6c7a\u5b9a\u7684\u306b\u5224\u65ad\u3059\u308b\n* 2\u3064\u4ee5\u4e0a\u306e\u30c7\u30d0\u30a4\u30b9\u304c\u540c\u3058\u30e6\u30fc\u30b6\u30fc\u307e\u305f\u306f\u4e16\u5e2f\u306b\u5c5e\u3057\u3066\u3044\u308b\u3068\u78ba\u7387\u7684\u306b\u5224\u65ad\u3059\u308b\n* \u8b58\u5225\u306e\u305f\u3081\u306b\u30c7\u30d0\u30a4\u30b9\u7279\u6027\u3092\u30a2\u30af\u30c6\u30a3\u30d6\u306b\u30b9\u30ad\u30e3\u30f3\u3059\u308b\u3053\u3068\u3092\u30e6\u30fc\u30b6\u30fc\u304c\u30d9\u30f3\u30c0\u30fc\u306b\u8a31\u53ef\u3057\u3066\u3044\u308b\u5834\u5408\u3001\u30c7\u30d0\u30a4\u30b9\u7279\u6027\u3092\u30a2\u30af\u30c6\u30a3\u30d6\u306b\u30b9\u30ad\u30e3\u30f3\u3057\u78ba\u7387\u7684\u8b58\u5225\u3092\u884c\u3046\uff08\u7279\u5225\u6a5f\u80fd2\uff09\n"},"3":{"id":3,"name":"\u8b58\u5225\u306e\u305f\u3081\u306b\u81ea\u52d5\u9001\u4fe1\u3055\u308c\u305f\u30c7\u30d0\u30a4\u30b9\u7279\u6027\u3092\u53d7\u4fe1\u3057\u3066\u4f7f\u7528\u3059\u308b\n","description":"\u304a\u4f7f\u3044\u306e\u30c7\u30d0\u30a4\u30b9\u306fIP\u30a2\u30c9\u30ec\u30b9\u3084\u30d6\u30e9\u30a6\u30b6\u306e\u7a2e\u985e\u306a\u3069\u30c7\u30d0\u30a4\u30b9\u304c\u81ea\u52d5\u7684\u306b\u9001\u4fe1\u3059\u308b\u60c5\u5831\u306b\u57fa\u3065\u3044\u3066\u4ed6\u306e\u30c7\u30d0\u30a4\u30b9\u3068\u533a\u5225\u3055\u308c\u308b\u5834\u5408\u304c\u3042\u308a\u307e\u3059\u3002\n","descriptionLegal":"\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u3059:\n* IP\u30a2\u30c9\u30ec\u30b9\u3001\u30e6\u30fc\u30b6\u30fc\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u6587\u5b57\u5217\u306a\u3069\u7279\u5b9a\u306e\u7279\u6027\u306b\u3064\u3044\u3066\u30c7\u30d0\u30a4\u30b9\u304b\u3089\u81ea\u52d5\u7684\u306b\u53ce\u96c6\u3055\u308c\u305f\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3057\u3066\u8b58\u5225\u5b50\u3092\u4f5c\u6210\u3059\u308b\u3002\n* \u3053\u306e\u3088\u3046\u306a\u8b58\u5225\u5b50\u3092\u4f7f\u7528\u3057\u30c7\u30d0\u30a4\u30b9\u306e\u518d\u8b58\u5225\u3092\u8a66\u884c\u3059\u308b\u3002\n\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093:\n\u8b58\u5225\u306e\u305f\u3081\u306e\u30c7\u30d0\u30a4\u30b9\u306e\u7279\u6027\u3092\u30a2\u30af\u30c6\u30a3\u30d6\u306b\u30b9\u30ad\u30e3\u30f3\u3059\u308b\u30e6\u30fc\u30b6\u30fc\u306e\u500b\u5225\u306e\u30aa\u30d7\u30c8\u30a4\u30f3\u304c\u306a\u3044\u72b6\u614b\u3067\u3001\u7279\u5b9a\u306e\u7279\u6027\uff08\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u3066\u3044\u308b\u30d5\u30a9\u30f3\u30c8\u3084\u753b\u9762\u89e3\u50cf\u5ea6\u306a\u3069\uff09\u306b\u3064\u3044\u3066\u30c7\u30d0\u30a4\u30b9\u3092\u30a2\u30af\u30c6\u30a3\u30d6\u306b\u30b9\u30ad\u30e3\u30f3\u3057\u3066\u53ce\u96c6\u3055\u308c\u305f\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3057\u3001\u8b58\u5225\u5b50\u3092\u4f5c\u6210\u3059\u308b\u3002\n* \u3053\u306e\u3088\u3046\u306a\u8b58\u5225\u5b50\u3092\u4f7f\u7528\u3057\u3066\u30c7\u30d0\u30a4\u30b9\u3092\u518d\u8b58\u5225\u3059\u308b\u3002"}},"specialFeatures":{"1":{"id":1,"name":"\u6b63\u78ba\u306a\u4f4d\u7f6e\u60c5\u5831\u30c7\u30fc\u30bf\u306e\u4f7f\u7528\n","description":"\u3042\u306a\u305f\u306e\u6b63\u78ba\u306a\u4f4d\u7f6e\u60c5\u5831\u30c7\u30fc\u30bf\u306f1\u3064\u4ee5\u4e0a\u306e\u76ee\u7684\u3092\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u305f\u3081\u306b\u4f7f\u7528\u3055\u308c\u307e\u3059\u3002\u3053\u308c\u306f\u6570\u30e1\u30fc\u30c8\u30eb\u306e\u8ddd\u96e2\u307e\u3067\u3042\u306a\u305f\u306e\u4f4d\u7f6e\u3092\u6b63\u78ba\u306b\u628a\u63e1\u3067\u304d\u308b\u3053\u3068\u3092\u610f\u5473\u3057\u307e\u3059\u3002\n","descriptionLegal":"\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u3059:\n* 1\u3064\u4ee5\u4e0a\u306e\u76ee\u7684\u3092\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u305f\u3081\u6b63\u78ba\u306a\u4f4d\u7f6e\u60c5\u5831\u30c7\u30fc\u30bf\u3092\u53ce\u96c6\u3057\u51e6\u7406\u3059\u308b\u3002\n\u6ce8\u8a18\u6b63\u78ba\u306a\u4f4d\u7f6e\u60c5\u5831\u3068\u306f\u30e6\u30fc\u30b6\u30fc\u306e\u4f4d\u7f6e\u60c5\u5831\u306e\u7cbe\u5ea6\u306b\u5236\u9650\u304c\u306a\u3044\u3053\u3068\u3092\u610f\u5473\u3057\u307e\u3059\u3002 \u4f4d\u7f6e\u60c5\u5831\u306f\u6570\u30e1\u30fc\u30c8\u30eb\u5358\u4f4d\u306e\u6b63\u78ba\u3055\u306e\u5834\u5408\u3082\u3042\u308a\u307e\u3059\u3002"},"2":{"id":2,"name":"\u30c7\u30d0\u30a4\u30b9\u306e\u7279\u6027\u3092\u30a2\u30af\u30c6\u30a3\u30d6\u306b\u30b9\u30ad\u30e3\u30f3\u3057\u3066\u8b58\u5225\u3059\u308b\n","description":"\u30c7\u30d0\u30a4\u30b9\u56fa\u6709\u306e\u7279\u6027\u306e\u7d44\u307f\u5408\u308f\u305b\u3092\u30b9\u30ad\u30e3\u30f3\u3059\u308b\u3053\u3068\u3067\u3001\u3042\u306a\u305f\u306e\u30c7\u30d0\u30a4\u30b9\u3092\u8b58\u5225\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n","descriptionLegal":"\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u3059:\n*\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u3066\u3044\u308b\u30d5\u30a9\u30f3\u30c8\u3084\u753b\u9762\u89e3\u50cf\u5ea6\u306a\u3069\u7279\u5b9a\u306e\u7279\u6027\u306b\u3064\u3044\u3066\u30c7\u30d0\u30a4\u30b9\u3092\u30a2\u30af\u30c6\u30a3\u30d6\u306b\u30b9\u30ad\u30e3\u30f3\u3057\u3001\u53ce\u96c6\u3055\u308c\u305f\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3057\u3066\u8b58\u5225\u5b50\u3092\u4f5c\u6210\u3059\u308b\u3002\n* \u3053\u306e\u3088\u3046\u306a\u8b58\u5225\u5b50\u3092\u4f7f\u7528\u3057\u3066\u30c7\u30d0\u30a4\u30b9\u3092\u518d\u8b58\u5225\u3059\u308b\u3002"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"\u6b63\u78ba\u306a\u4f4d\u7f6e\u60c5\u5831\u30c7\u30fc\u30bf\u3001\u304a\u3088\u3073\u30c7\u30d0\u30a4\u30b9\u30b9\u30ad\u30e3\u30f3\u306b\u3088\u308b\u8b58\u5225\n","description":"\u6b63\u78ba\u306a\u4f4d\u7f6e\u60c5\u5831\u3068\u30c7\u30d0\u30a4\u30b9\u306e\u7279\u6027\u306b\u95a2\u3059\u308b\u60c5\u5831\u304c\u4f7f\u7528\u53ef\u80fd\u3067\u3059\u3002\n"},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3001\u304a\u3088\u3073\u5e83\u544a\u306e\u6e2c\u5b9a\n","description":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3092\u914d\u4fe1\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\n"},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u304d\u5e83\u544a\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u5e83\u544a\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\n"},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3001\u5e83\u544a\u6e2c\u5b9a\u3001\u304a\u3088\u3073\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\n","description":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3092\u914d\u4fe1\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3001\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u3001\u304a\u3088\u3073\u5e83\u544a\u6e2c\u5b9a\n","description":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3092\u914d\u4fe1\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u5e83\u544a\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\n"},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u306e\u8868\u793a\u3068\u5e83\u544a\u306e\u6e2c\u5b9a\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u304d\u5e83\u544a\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\n"},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u8868\u793a\u3001\u5e83\u544a\u6e2c\u5b9a\u3001\u304a\u3088\u3073\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u304d\u5e83\u544a\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u3001\u304a\u3088\u3073\u5e83\u544a\u6e2c\u5b9a\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u304d\u5e83\u544a\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u5e83\u544a\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\n"},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u3001\u5e83\u544a\u6e2c\u5b9a\u3001\u304a\u3088\u3073\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u304d\u5e83\u544a\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u5e83\u544a\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u3068\u30c7\u30a3\u30b9\u30d7\u30ec\u30a4\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u304d\u5e83\u544a\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u5e83\u544a\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\n"},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u8868\u793a\u3001\u304a\u3088\u3073\u30b3\u30f3\u30c6\u30f3\u30c4\u6e2c\u5b9a\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u8868\u793a\u3001\u30b3\u30f3\u30c6\u30f3\u30c4\u6e2c\u5b9a\u3001\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u6e2c\u5b9a\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u3001\u30b3\u30f3\u30c6\u30f3\u30c4\u6e2c\u5b9a\u3001\u304a\u3088\u3073\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u3001\u30b3\u30f3\u30c6\u30f3\u30c4\u6e2c\u5b9a\u3001\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\u3001\u304a\u3088\u3073\u88fd\u54c1\u958b\u767a\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30e6\u30fc\u30b6\u30fc\u30a8\u30af\u30b9\u30da\u30ea\u30a8\u30f3\u30b9\u3001\u30b7\u30b9\u30c6\u30e0\u3001\u304a\u3088\u3073\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3092\u69cb\u7bc9\u307e\u305f\u306f\u6539\u5584\u3059\u308b\u305f\u3081\u306b\u3001\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\n"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u6e2c\u5b9a\u3001\u304a\u3088\u3073\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\n","description":"\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002 \u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u6e2c\u5b9a\n","description":"\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\n"},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"\u5e83\u544a\u6e2c\u5b9a\u3068\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\n","description":"\u5e83\u544a\u3092\u6e2c\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002 \u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u6e2c\u5b9a\u3001\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\u3001\u304a\u3088\u3073\u88fd\u54c1\u958b\u767a\n","description":"\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002 \u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30e6\u30fc\u30b6\u30fc\u30a8\u30af\u30b9\u30da\u30ea\u30a8\u30f3\u30b9\u3001\u30b7\u30b9\u30c6\u30e0\u3001\u304a\u3088\u3073\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3092\u69cb\u7bc9\u307e\u305f\u306f\u6539\u5584\u3059\u308b\u305f\u3081\u306b\u3001\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"\u30b3\u30f3\u30c6\u30f3\u30c4\u6e2c\u5b9a\u3001\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\u3001\u88fd\u54c1\u958b\u767a\u3002\n","description":"\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30e6\u30fc\u30b6\u30fc\u30a8\u30af\u30b9\u30da\u30ea\u30a8\u30f3\u30b9\u3001\u30b7\u30b9\u30c6\u30e0\u3001\u304a\u3088\u3073\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3092\u69cb\u7bc9\u307e\u305f\u306f\u6539\u5584\u3059\u308b\u305f\u3081\u306b\u3001\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"\u30b3\u30f3\u30c6\u30f3\u30c4\u6e2c\u5b9a\u3068\u88fd\u54c1\u958b\u767a\n","description":"\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30e6\u30fc\u30b6\u30fc\u30a8\u30af\u30b9\u30da\u30ea\u30a8\u30f3\u30b9\u3001\u30b7\u30b9\u30c6\u30e0\u3001\u304a\u3088\u3073\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3092\u69cb\u7bc9\u307e\u305f\u306f\u6539\u5584\u3059\u308b\u305f\u3081\u306b\u3001\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u8868\u793a\u3001\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u6e2c\u5b9a\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\n"},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u8868\u793a\u3001\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u6e2c\u5b9a\u3001\u304a\u3088\u3073\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30e6\u30fc\u30b6\u30fc\u30a8\u30af\u30b9\u30da\u30ea\u30a8\u30f3\u30b9\u3001\u30b7\u30b9\u30c6\u30e0\u3001\u304a\u3088\u3073\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3092\u69cb\u7bc9\u307e\u305f\u306f\u6539\u5584\u3059\u308b\u305f\u3081\u306b\u3001\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3001\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u6e2c\u5b9a\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\n"},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3001\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u6e2c\u5b9a\u3001\u304a\u3088\u3073\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u3001\u304a\u3088\u3073\u30b3\u30f3\u30c6\u30f3\u30c4\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\n","description":"\u3055\u3089\u306b\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\n"},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u8868\u793a\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\n"},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3001\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u6e2c\u5b9a\u3001\u304a\u3088\u3073\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\n","description":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3092\u914d\u4fe1\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u306e\u8868\u793a\u3001\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u3001\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u6e2c\u5b9a\u3001\u304a\u3088\u3073\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u306e\u8868\u793a\u3001\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u3001\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u6e2c\u5b9a\u3001\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\u3001\u304a\u3088\u3073\u88fd\u54c1\u958b\u767a\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30e6\u30fc\u30b6\u30fc\u30a8\u30af\u30b9\u30da\u30ea\u30a8\u30f3\u30b9\u3001\u30b7\u30b9\u30c6\u30e0\u3001\u304a\u3088\u3073\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3092\u69cb\u7bc9\u307e\u305f\u306f\u6539\u5584\u3059\u308b\u305f\u3081\u306b\u3001\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3001\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u3001\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u6e2c\u5b9a\u3001\u304a\u3088\u3073\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\n","description":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3092\u914d\u4fe1\u3067\u304d\u307e\u3059\u3002\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3001\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u3001\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u6e2c\u5b9a\u3001\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\u3001\u304a\u3088\u3073\u88fd\u54c1\u958b\u767a\n","description":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3092\u914d\u4fe1\u3067\u304d\u307e\u3059\u3002\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30e6\u30fc\u30b6\u30fc\u30a8\u30af\u30b9\u30da\u30ea\u30a8\u30f3\u30b9\u3001\u30b7\u30b9\u30c6\u30e0\u3001\u304a\u3088\u3073\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3092\u69cb\u7bc9\u307e\u305f\u306f\u6539\u5584\u3059\u308b\u305f\u3081\u306b\u3001\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3001\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u3001\u30b3\u30f3\u30c6\u30f3\u30c4\u6e2c\u5b9a\u3001\u304a\u3088\u3073\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\n","description":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3092\u914d\u4fe1\u3067\u304d\u307e\u3059\u3002\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3001\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u3001\u30b3\u30f3\u30c6\u30f3\u30c4\u6e2c\u5b9a\u3001\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\u3001\u304a\u3088\u3073\u88fd\u54c1\u958b\u767a\n","description":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3092\u914d\u4fe1\u3067\u304d\u307e\u3059\u3002\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30e6\u30fc\u30b6\u30fc\u30a8\u30af\u30b9\u30da\u30ea\u30a8\u30f3\u30b9\u3001\u30b7\u30b9\u30c6\u30e0\u3001\u304a\u3088\u3073\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3092\u69cb\u7bc9\u307e\u305f\u306f\u6539\u5584\u3059\u308b\u305f\u3081\u306b\u3001\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3001\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u3001\u304a\u3088\u3073\u5e83\u544a\u6e2c\u5b9a\n","description":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3092\u914d\u4fe1\u3067\u304d\u307e\u3059\u3002\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\n"},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3001\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u3001\u5e83\u544a\u6e2c\u5b9a\u3001\u304a\u3088\u3073\u88fd\u54c1\u958b\u767a\n","description":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3092\u914d\u4fe1\u3067\u304d\u307e\u3059\u3002\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\u30e6\u30fc\u30b6\u30fc\u30a8\u30af\u30b9\u30da\u30ea\u30a8\u30f3\u30b9\u3001\u30b7\u30b9\u30c6\u30e0\u3001\u304a\u3088\u3073\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3092\u69cb\u7bc9\u307e\u305f\u306f\u6539\u5584\u3059\u308b\u305f\u3081\u306b\u3001\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u3001\u5e83\u544a\u6e2c\u5b9a\u3001\u304a\u3088\u3073\u88fd\u54c1\u958b\u767a\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u304d\u5e83\u544a\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u5e83\u544a\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\u30e6\u30fc\u30b6\u30fc\u30a8\u30af\u30b9\u30da\u30ea\u30a8\u30f3\u30b9\u3001\u30b7\u30b9\u30c6\u30e0\u3001\u304a\u3088\u3073\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3092\u69cb\u7bc9\u307e\u305f\u306f\u6539\u5584\u3059\u308b\u305f\u3081\u306b\u3001\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u3001\u5e83\u544a\u6e2c\u5b9a\u3001\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\u3001\u304a\u3088\u3073\u88fd\u54c1\u958b\u767a\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u304d\u5e83\u544a\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u5e83\u544a\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30e6\u30fc\u30b6\u30fc\u30a8\u30af\u30b9\u30da\u30ea\u30a8\u30f3\u30b9\u3001\u30b7\u30b9\u30c6\u30e0\u3001\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3092\u69cb\u7bc9\u307e\u305f\u306f\u6539\u5584\u3059\u308b\u305f\u3081\u306b\u3001\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u3001\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u6e2c\u5b9a\u3001\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\u3001\u304a\u3088\u3073\u88fd\u54c1\u958b\u767a\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u304d\u5e83\u544a\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u5e83\u544a\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3084\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30e6\u30fc\u30b6\u30fc\u30a8\u30af\u30b9\u30da\u30ea\u30a8\u30f3\u30b9\u3001\u30b7\u30b9\u30c6\u30e0\u3001\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3092\u69cb\u7bc9\u307e\u305f\u306f\u6539\u5584\u3059\u308b\u305f\u3081\u306b\u3001\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u3001\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u8868\u793a\u3001\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u6e2c\u5b9a\u3001\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\u3001\u304a\u3088\u3073\u88fd\u54c1\u958b\u767a\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u5e83\u544a\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3084\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30e6\u30fc\u30b6\u30fc\u30a8\u30af\u30b9\u30da\u30ea\u30a8\u30f3\u30b9\u3001\u30b7\u30b9\u30c6\u30e0\u3001\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3092\u69cb\u7bc9\u307e\u305f\u306f\u6539\u5584\u3059\u308b\u305f\u3081\u306b\u3001\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3001\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u6e2c\u5b9a\u3001\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\u3001\u304a\u3088\u3073\u88fd\u54c1\u958b\u767a\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3084\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30e6\u30fc\u30b6\u30fc\u30a8\u30af\u30b9\u30da\u30ea\u30a8\u30f3\u30b9\u3001\u30b7\u30b9\u30c6\u30e0\u3001\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3092\u69cb\u7bc9\u307e\u305f\u306f\u6539\u5584\u3059\u308b\u305f\u3081\u306b\u3001\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"}}} \ No newline at end of file +{"vendorListVersion":94,"lastUpdated":"2021-06-10T16:43:59Z","purposes":{"1":{"id":1,"name":"\u30c7\u30d0\u30a4\u30b9\u306b\u60c5\u5831\u3092\u4fdd\u5b58\u3001\u304a\u3088\u3073/\u307e\u305f\u306f\u30a2\u30af\u30bb\u30b9\u3059\u308b\n","description":"Cookie\u3001\u30c7\u30d0\u30a4\u30b9\u8b58\u5225\u5b50\u3001\u307e\u305f\u306f\u305d\u306e\u4ed6\u306e\u60c5\u5831\u306f\u63d0\u793a\u3055\u308c\u305f\u76ee\u7684\u3067\u3042\u306a\u305f\u306e\u30c7\u30d0\u30a4\u30b9\u4e0a\u306b\u4fdd\u5b58\u307e\u305f\u306f\u30a2\u30af\u30bb\u30b9\u3057\u307e\u3059\u3002\n","descriptionLegal":"\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u3059:\n* Cookie\u3084\u30e6\u30fc\u30b6\u30fc\u306b\u63d0\u793a\u3055\u308c\u308b\u30c7\u30d0\u30a4\u30b9\u8b58\u5225\u5b50\u306a\u3069\u30c7\u30d0\u30a4\u30b9\u4e0a\u306e\u60c5\u5831\u3092\u4fdd\u5b58\u3057\u3066\u30a2\u30af\u30bb\u30b9\u3059\u308b\u3002"},"2":{"id":2,"name":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u306e\u9078\u629e\n","description":"\u3042\u306a\u305f\u304c\u8868\u793a\u3057\u3066\u3044\u308b\u30b3\u30f3\u30c6\u30f3\u30c4\u3001\u4f7f\u7528\u3057\u3066\u3044\u308b\u30a2\u30d7\u30ea\u3001\u304a\u304a\u3088\u305d\u306e\u4f4d\u7f6e\u3001\u307e\u305f\u306f\u30c7\u30d0\u30a4\u30b9\u30bf\u30a4\u30d7\u306b\u57fa\u3065\u3044\u305f\u5e83\u544a\u304c\u8868\u793a\u3055\u308c\u307e\u3059\u3002\n","descriptionLegal":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u306e\u9078\u629e\u3092\u884c\u3046\u305f\u3081\u3001\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u3059:\n* \u30b3\u30f3\u30c6\u30f3\u30c4\u3068\u30c7\u30d0\u30a4\u30b9\u306b\u95a2\u3059\u308b\u60c5\u5831\uff08\u30c7\u30d0\u30a4\u30b9\u306e\u30bf\u30a4\u30d7\u3068\u6a5f\u80fd\u3001\u30e6\u30fc\u30b6\u30fc\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u3001URL\u3001IP\u30a2\u30c9\u30ec\u30b9\u306a\u3069\uff09\u3092\u542b\u3081\u5e83\u544a\u304c\u8868\u793a\u3055\u308c\u308b\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8\u306b\u95a2\u3059\u308b\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0\u60c5\u5831\u3092\u4f7f\u7528\u3057\u5e83\u544a\u3092\u8868\u793a\u3059\u308b\n* \u30e6\u30fc\u30b6\u30fc\u306e\u4e0d\u6b63\u78ba\u306a\u4f4d\u7f6e\u60c5\u5831\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3059\u308b\n*\u30e6\u30fc\u30b6\u30fc\u306b\u8868\u793a\u3055\u308c\u308b\u5e83\u544a\u306e\u983b\u5ea6\u3092\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u3059\u308b\u3002\n*\u30e6\u30fc\u30b6\u30fc\u306b\u5e83\u544a\u304c\u8868\u793a\u3055\u308c\u308b\u9806\u5e8f\u3092\u6c7a\u5b9a\u3059\u308b\u3002\n\u5e83\u544a\u304c\u4e0d\u9069\u5207\u306a\u7de8\u96c6\u4e0a\u306e\uff08\u30d6\u30e9\u30f3\u30c9\u306b\u5bfe\u3057\u3066\u5b89\u5168\u3067\u306a\u3044\uff09\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8\u3067\u914d\u4fe1\u3055\u308c\u308b\u306e\u3092\u9632\u3050\n\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093:\n\u3053\u306e\u60c5\u5831\u3092\u4f7f\u7528\u3057\u3066\u4eca\u5f8c\u306e\u5e83\u544a\u306e\u9078\u629e\u306b\u5f79\u7acb\u3066\u308b\u305f\u3081\u306e\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u3059\u308b\u3002\n * \u6ce8\u8a18\u4e0d\u6b63\u78ba\u306a\u4f4d\u7f6e\u3068\u306f\u3001\u5c11\u306a\u304f\u3068\u3082\u534a\u5f84500\u30e1\u30fc\u30c8\u30eb\u3092\u542b\u3080\u304a\u304a\u3088\u305d\u306e\u4f4d\u7f6e\u60c5\u5831\u306e\u53d6\u5f97\u304c\u8a31\u53ef\u3055\u308c\u308b\u3053\u3068\u3092\u610f\u5473\u3057\u307e\u3059\u3002"},"3":{"id":3,"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306e\u4f5c\u6210\n","description":"\u3042\u306a\u305f\u306b\u95a2\u9023\u3059\u308b\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u3092\u8868\u793a\u3059\u308b\u305f\u3081\u3001\u3042\u306a\u305f\u3068\u3042\u306a\u305f\u304c\u95a2\u5fc3\u3042\u308b\u3053\u3068\u306b\u3064\u3044\u3066\u306e\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u3057\u307e\u3059\u3002\n","descriptionLegal":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u3059\u308b\u305f\u3081\u3001\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u3059:\n* \u30e6\u30fc\u30b6\u30fc\u306e\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3\u3001\u8208\u5473\u3001\u4eba\u53e3\u7d71\u8a08\u5b66\u7684\u60c5\u5831\u3001\u5834\u6240\u306a\u3069\u3092\u542b\u3080\u30e6\u30fc\u30b6\u30fc\u306b\u95a2\u3059\u308b\u60c5\u5831\u3092\u53ce\u96c6\u3057\u3001\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u3067\u4f7f\u7528\u3059\u308b\u305f\u3081\u306e\u30e6\u30fc\u30b6\u30fc\u306e\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u307e\u305f\u306f\u7de8\u96c6\u3059\u308b\u3002\n* \u3053\u306e\u60c5\u5831\u3068\u4ee5\u524d\u306b\u53ce\u96c6\u3057\u305f\u4ed6\u306e\u60c5\u5831\uff08Web\u30b5\u30a4\u30c8\u3068\u30a2\u30d7\u30ea\u5168\u4f53\u304b\u3089\u53ce\u96c6\u3057\u305f\u4ed6\u306e\u60c5\u5831\u3092\u542b\u3080\uff09\u3092\u7d44\u307f\u5408\u308f\u305b\u3001\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u3067\u4f7f\u7528\u3059\u308b\u305f\u3081\u306e\u30e6\u30fc\u30b6\u30fc\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u307e\u305f\u306f\u7de8\u96c6\u3059\u308b\u3002"},"4":{"id":4,"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u3092\u9078\u629e\n","description":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u304c\u3042\u306a\u305f\u306e\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u8868\u793a\u3055\u308c\u307e\u3059\u3002\n","descriptionLegal":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u3092\u9078\u629e\u3059\u308b\u305f\u3081\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u3059:\n* \u30e6\u30fc\u30b6\u30fc\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u3084\u30e6\u30fc\u30b6\u30fc\u306e\u4ee5\u524d\u306e\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3\u3001\u8208\u5473\u3001\u30b5\u30a4\u30c8\u3084\u30a2\u30d7\u30ea\u3078\u306e\u30a2\u30af\u30bb\u30b9\u3001\u5834\u6240\u3001\u4eba\u53e3\u7d71\u8a08\u5b66\u7684\u60c5\u5831\u306a\u3069\u3001\u305d\u306e\u4ed6\u306e\u904e\u53bb\u306e\u30e6\u30fc\u30b6\u30fc\u30c7\u30fc\u30bf\u306b\u57fa\u3065\u3044\u3066\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u3092\u9078\u629e\u3059\u308b\u3002"},"5":{"id":5,"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306e\u4f5c\u6210\n","description":"\u3042\u306a\u305f\u306b\u95a2\u9023\u3059\u308b\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u8868\u793a\u3059\u308b\u305f\u3081\u3001\u3042\u306a\u305f\u3068\u3042\u306a\u305f\u304c\u95a2\u5fc3\u3042\u308b\u3053\u3068\u306b\u95a2\u3059\u308b\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u3057\u307e\u3059\u3002\n","descriptionLegal":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u3059\u308b\u305f\u3081\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u3059:\n*\u30e6\u30fc\u30b6\u30fc\u306e\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3\u3001\u8208\u5473\u3001\u30b5\u30a4\u30c8\u3084\u30a2\u30d7\u30ea\u3078\u306e\u30a2\u30af\u30bb\u30b9\u3001\u4eba\u53e3\u7d71\u8a08\u5b66\u7684\u60c5\u5831\u3001\u5834\u6240\u306a\u3069\u306e\u30e6\u30fc\u30b6\u30fc\u306b\u95a2\u3059\u308b\u60c5\u5831\u3092\u53ce\u96c6\u3057\u3001\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3059\u308b\u305f\u3081\u306e\u30e6\u30fc\u30b6\u30fc\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u307e\u305f\u306f\u7de8\u96c6\u3059\u308b\u3002\n* \u3053\u306e\u60c5\u5831\u3068\u4ee5\u524d\u306b\u53ce\u96c6\u3057\u305f\u4ed6\u306e\u60c5\u5831\uff08Web\u30b5\u30a4\u30c8\u3068\u30a2\u30d7\u30ea\u5168\u4f53\u304b\u3089\u53ce\u96c6\u3057\u305f\u4ed6\u306e\u60c5\u5831\u3092\u542b\u3080\uff09\u3092\u7d44\u307f\u5408\u308f\u305b\u3001\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u306b\u4f7f\u7528\u3059\u308b\u30e6\u30fc\u30b6\u30fc\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u307e\u305f\u306f\u7de8\u96c6\u3059\u308b\u3002"},"6":{"id":6,"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u9078\u629e\n","description":"\u3042\u306a\u305f\u306e\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u304c\u8868\u793a\u3055\u308c\u307e\u3059\u3002\n","descriptionLegal":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u9078\u629e\u3059\u308b\u305f\u3081\u3001\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u3059:\n\u30e6\u30fc\u30b6\u30fc\u306e\u4ee5\u524d\u306e\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3\u3001\u8208\u5473\u3001\u30b5\u30a4\u30c8\u3084\u30a2\u30d7\u30ea\u3078\u306e\u30a2\u30af\u30bb\u30b9\u3001\u5834\u6240\u3001\u4eba\u53e3\u7d71\u8a08\u5b66\u7684\u60c5\u5831\u306a\u3069\u3001\u30e6\u30fc\u30b6\u30fc\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u3084\u305d\u306e\u4ed6\u306e\u904e\u53bb\u306e\u30e6\u30fc\u30b6\u30fc\u30c7\u30fc\u30bf\u306b\u57fa\u3065\u304d\u3001\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u9078\u629e\u3059\u308b\u3002"},"7":{"id":7,"name":"\u5e83\u544a\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u306e\u6e2c\u5b9a\n","description":"\u8868\u793a\u3001\u307e\u305f\u306f\u64cd\u4f5c\u3055\u308c\u305f\u5e83\u544a\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3068\u305d\u306e\u52b9\u679c\u3092\u6e2c\u5b9a\u3057\u307e\u3059\u3002\n","descriptionLegal":"\u5e83\u544a\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3059\u308b\u305f\u3081\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u3059:\n* \u5e83\u544a\u304c\u30e6\u30fc\u30b6\u30fc\u306b\uff08\u3069\u306e\u3088\u3046\u306b\uff09\u914d\u4fe1\u3055\u308c\u305f\u304b\u3001\u307e\u305f\u30e6\u30fc\u30b6\u30fc\u304c\u3069\u306e\u3088\u3046\u306b\u64cd\u4f5c\u3057\u305f\u304b\u3092\u6e2c\u5b9a\n* \u52b9\u679c\u3068\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u542b\u3080\u5e83\u544a\u306b\u95a2\u3059\u308b\u30ec\u30dd\u30fc\u30c8\u3092\u63d0\u4f9b\n* \u30e6\u30fc\u30b6\u30fc\u304c\u5e83\u544a\u3092\u64cd\u4f5c\u3059\u308b\u904e\u7a0b\u3067\u96c6\u3081\u3089\u308c\u305f\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3057\u3001\u5e83\u544a\u3092\u64cd\u4f5c\u3057\u305f\u30e6\u30fc\u30b6\u30fc\u306b\u95a2\u3059\u308b\u30ec\u30dd\u30fc\u30c8\u3092\u63d0\u4f9b\u3059\u308b\n* \u30b5\u30a4\u30c8\u306b\u8868\u793a\u3055\u308c\u305f\u5e83\u544a\u306b\u3064\u3044\u3066\u767a\u884c\u8005\u306b\u30ec\u30dd\u30fc\u30c8\u3092\u63d0\u4f9b\u3059\u308b\n*\u9069\u5207\u306a\u7de8\u96c6\u74b0\u5883\uff08\u30d6\u30e9\u30f3\u30c9\u4fdd\u8b77\uff09\u306e\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8\u3067\u5e83\u544a\u304c\u914d\u4fe1\u3055\u308c\u3066\u3044\u308b\u304b\u3069\u3046\u304b\u3092\u6e2c\u5b9a\u3059\u308b\n*\u8868\u793a\u3055\u308c\u308b\u6a5f\u4f1a\u304c\u3042\u3063\u305f\u5e83\u544a\u306e\u5272\u5408\u3001\u304a\u3088\u3073\u305d\u306e\u7d99\u7d9a\u6642\u9593\u3092\u7279\u5b9a\u3059\u308b\n*\u3053\u306e\u60c5\u5831\u3068\u4ee5\u524d\u306b\u53ce\u96c6\u3057\u305f\u4ed6\u306e\u60c5\u5831\uff08\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u3084\u30a2\u30d7\u30ea\u5168\u4f53\u304b\u3089\u306e\u60c5\u5831\u3092\u542b\u3080\uff09\u3092\u7d44\u307f\u5408\u308f\u305b\u308b\n\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093:\n\u6cd5\u7684\u6839\u62e0\u306a\u3057\u306b\u30d1\u30cd\u30eb\u307e\u305f\u306f\u985e\u4f3c\u306e\u6d3e\u751f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\u30c7\u30fc\u30bf\u3092\u5e83\u544a\u6e2c\u5b9a\u30c7\u30fc\u30bf\u306b\u4f7f\u7528\u3057\u5e02\u5834\u8abf\u67fb\u306b\u9069\u7528\u3057\u3066\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\u3092\u751f\u6210\u3059\u308b\uff08\u76ee\u76849\uff09"},"8":{"id":8,"name":"\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\n","description":"\u8868\u793a\u3055\u308c\u305f\u3001\u307e\u305f\u306f\u3042\u306a\u305f\u304c\u64cd\u4f5c\u3057\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3068\u52b9\u679c\u3092\u6e2c\u5b9a\u3057\u307e\u3059\u3002\n","descriptionLegal":"\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3059\u308b\u305f\u3081\u3001\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u3059:\n* \u30b3\u30f3\u30c6\u30f3\u30c4\u304c\u3069\u306e\u3088\u3046\u306b\u914d\u4fe1\u3055\u308c\u3001\u30e6\u30fc\u30b6\u30fc\u304c\u64cd\u4f5c\u3057\u305f\u304b\u3092\u6e2c\u5b9a\u3057\u5831\u544a\u3059\u308b\u3002\n* \u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u64cd\u4f5c\u3057\u305f\u30e6\u30fc\u30b6\u30fc\u306b\u95a2\u3059\u308b\u76f4\u63a5\u6e2c\u5b9a\u53ef\u80fd\u306a\u60c5\u5831\u307e\u305f\u306f\u65e2\u77e5\u306e\u60c5\u5831\u3092\u4f7f\u7528\u3057\u3001\u30ec\u30dd\u30fc\u30c8\u3092\u63d0\u4f9b\u3059\u308b\n* \u3053\u306e\u60c5\u5831\u3068\u4ee5\u524d\u306b\u53ce\u96c6\u3057\u305f\u4ed6\u306e\u60c5\u5831\uff08\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u3084\u30a2\u30d7\u30ea\u5168\u4f53\u304b\u3089\u306e\u60c5\u5831\u3092\u542b\u3080\uff09\u3092\u7d44\u307f\u5408\u308f\u305b\u308b\n\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093:\n* \u5e83\u544a\uff08\u30cd\u30a4\u30c6\u30a3\u30d6\u5e83\u544a\u3092\u542b\u3080\uff09\u304c\u30e6\u30fc\u30b6\u30fc\u306b\u914d\u4fe1\u3055\u308c\u305f\u304b\u3069\u3046\u304b\u3001\u305d\u3057\u3066\u30e6\u30fc\u30b6\u30fc\u304c\u64cd\u4f5c\u3057\u305f\u304b\u3069\u3046\u304b\u3068\u305d\u306e\u65b9\u6cd5\u3092\u6e2c\u5b9a\u3059\u308b\u3002\n* \u6cd5\u7684\u6839\u62e0\u306a\u3057\u306b\u30d1\u30cd\u30eb\u307e\u305f\u306f\u985e\u4f3c\u306e\u6d3e\u751f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\u30c7\u30fc\u30bf\u3092\u5e83\u544a\u6e2c\u5b9a\u30c7\u30fc\u30bf\u306b\u9069\u7528\u3057\u3001\u5e02\u5834\u8abf\u67fb\u306b\u9069\u7528\u3057\u3066\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\u3092\u751f\u6210\u3059\u308b\uff08\u76ee\u76849\uff09"},"9":{"id":9,"name":"\u5e02\u5834\u8abf\u67fb\u3092\u9069\u7528\u3057\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\u3092\u751f\u6210\u3059\u308b\n","description":"\u5e02\u5834\u8abf\u67fb\u3092\u5229\u7528\u3057\u3001\u30b5\u30a4\u30c8/\u30a2\u30d7\u30ea\u306b\u30a2\u30af\u30bb\u30b9\u3057\u5e83\u544a\u3092\u8868\u793a\u3059\u308b\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u3064\u3044\u3066\u8a73\u3057\u304f\u77e5\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n","descriptionLegal":"\u5e02\u5834\u8abf\u67fb\u3092\u9069\u7528\u3057\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\u3092\u751f\u6210\u3059\u308b\u305f\u3081\u3001\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u3059:\n* \u30d1\u30cd\u30eb\u30d9\u30fc\u30b9\u304a\u3088\u3073\u540c\u69d8\u306b\u5c0e\u304d\u51fa\u3055\u308c\u305f\u6d1e\u5bdf\u3092\u901a\u3058\u3001\u5e83\u544a\u304c\u5230\u9054\u3057\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u96c6\u8a08\u30ec\u30dd\u30fc\u30c8\u3092\u5e83\u544a\u4e3b\u307e\u305f\u306f\u305d\u306e\u4ee3\u7406\u4eba\u306b\u63d0\u4f9b\u3059\u308b\u3002\n* \u30d1\u30cd\u30eb\u30d9\u30fc\u30b9\u304a\u3088\u3073\u540c\u69d8\u306b\u5c0e\u304d\u51fa\u3055\u308c\u305f\u6d1e\u5bdf\u3092\u9069\u7528\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u30b5\u30a4\u30c8\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3001\u304a\u3088\u3073/\u307e\u305f\u306f\u5e83\u544a\u3092\u914d\u4fe1\u3055\u308c\u305f\u3001\u307e\u305f\u306f\u64cd\u4f5c\u3057\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u3064\u3044\u3066\u767a\u884c\u8005\u306b\u96c6\u8a08\u30ec\u30dd\u30fc\u30c8\u3092\u63d0\u4f9b\u3059\u308b\u3002\n* \u30d9\u30f3\u30c0\u30fc\u304c\u30aa\u30d5\u30e9\u30a4\u30f3\u30c7\u30fc\u30bf\u30bd\u30fc\u30b9\u306e\u7167\u5408\u3068\u7d50\u5408\u3092\u5ba3\u8a00\u3057\u3066\u3044\u308b\u5834\u5408\u3001\u5e02\u5834\u8abf\u67fb\u306e\u76ee\u7684\u3067\u30aa\u30d5\u30e9\u30a4\u30f3\u30c7\u30fc\u30bf\u3068\u30aa\u30f3\u30e9\u30a4\u30f3\u30e6\u30fc\u30b6\u30fc\u3092\u95a2\u9023\u4ed8\u3051\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\u3092\u751f\u6210\u3059\u308b\uff08\u6a5f\u80fd1\uff09\n* \u3053\u306e\u60c5\u5831\u3068\u4ee5\u524d\u306b\u53ce\u96c6\u3057\u305f\u60c5\u5831\uff08\u4ed6\u306eWeb\u30b5\u30a4\u30c8\u3084\u30a2\u30d7\u30ea\u304b\u3089\u306e\u60c5\u5831\u3092\u542b\u3080\uff09\u3092\u7d44\u307f\u5408\u308f\u305b\u308b\u3002\n\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093:\n* \u5e83\u544a\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3059\u308b\u6cd5\u7684\u6839\u62e0\u306a\u3057\u306b\u7279\u5b9a\u306e\u30e6\u30fc\u30b6\u30fc\u304c\u914d\u4fe1\u3055\u308c\u305f\u3001\u307e\u305f\u306f\u64cd\u4f5c\u3057\u305f\u5e83\u544a\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3068\u52b9\u679c\u3092\u6e2c\u5b9a\u3059\u308b\u3002\n*\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3059\u308b\u6cd5\u7684\u6839\u62e0\u306a\u3057\u306b\u7279\u5b9a\u306e\u30e6\u30fc\u30b6\u30fc\u304c\u63d0\u4f9b\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u5185\u5bb9\u3068\u305d\u308c\u3092\u3069\u3046\u64cd\u4f5c\u3057\u305f\u304b\u3092\u6e2c\u5b9a\u3059\u308b\u3002"},"10":{"id":10,"name":"\u88fd\u54c1\u306e\u958b\u767a\u3068\u6539\u5584\n","description":"\u65e2\u5b58\u306e\u30b7\u30b9\u30c6\u30e0\u3068\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3092\u6539\u5584\u3057\u3001\u65b0\u88fd\u54c1\u3092\u958b\u767a\u3059\u308b\u306e\u3092\u76ee\u7684\u3068\u3057\u3066\u3042\u306a\u305f\u306e\u30c7\u30fc\u30bf\u304c\u5229\u7528\u3055\u308c\u307e\u3059\u3002\n","descriptionLegal":"\u65b0\u88fd\u54c1\u3092\u958b\u767a\u3057\u88fd\u54c1\u3092\u6539\u5584\u3059\u308b\u305f\u3081\u3001\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u3059:\n* \u65b0\u6a5f\u80fd\u3067\u65e2\u5b58\u306e\u88fd\u54c1\u3092\u6539\u5584\u3059\u308b\u305f\u3081\u3001\u304a\u3088\u3073\u65b0\u88fd\u54c1\u3092\u958b\u767a\u3059\u308b\u305f\u3081\u306b\u60c5\u5831\u3092\u4f7f\u7528\u3059\u308b\n* \u6a5f\u68b0\u5b66\u7fd2\u3092\u901a\u3058\u3066\u65b0\u3057\u3044\u30e2\u30c7\u30eb\u3068\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0\u3092\u4f5c\u6210\u3059\u308b\n\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093:\n* \u5225\u306e\u76ee\u7684\u3067\u8a31\u53ef\u3055\u308c\u3066\u3044\u308b\u305d\u306e\u4ed6\u306e\u30c7\u30fc\u30bf\u3092\u3053\u306e\u76ee\u7684\u306e\u305f\u3081\u306b\u51e6\u7406\u64cd\u4f5c\u3059\u308b"}},"specialPurposes":{"1":{"id":1,"name":"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u306e\u78ba\u4fdd\u3001\u8a50\u6b3a\u884c\u70ba\u306e\u9632\u6b62\u3001\u304a\u3088\u3073\u30c7\u30d0\u30c3\u30b0\n","description":"\u3042\u306a\u305f\u306e\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u3067\u4e0d\u6b63\u884c\u70ba\u3092\u76e3\u8996\u304a\u3088\u3073\u9632\u6b62\u3057\u3001\u30b7\u30b9\u30c6\u30e0\u3068\u30d7\u30ed\u30bb\u30b9\u304c\u9069\u5207\u304b\u3064\u5b89\u5168\u306b\u6a5f\u80fd\u3059\u308b\u3088\u3046\u306b\u3057\u307e\u3059\u3002\n","descriptionLegal":"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u306e\u78ba\u4fdd\u3001\u8a50\u6b3a\u884c\u70ba\u306e\u9632\u6b62\u3001\u304a\u3088\u3073\u30c7\u30d0\u30c3\u30b0\u3092\u3059\u308b\u305f\u3081\u3001\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u3059:\n* \u30c7\u30fc\u30bf\u304c\u5b89\u5168\u306b\u9001\u4fe1\u3055\u308c\u308b\u3088\u3046\u306b\u3059\u308b\n* \u60aa\u8cea\u3001\u4e0d\u6b63\u3001\u7121\u52b9\u306a\u3001\u307e\u305f\u306f\u9055\u6cd5\u6027\u306e\u3042\u308b\u6d3b\u52d5\u3092\u691c\u51fa\u3057\u3066\u9632\u3050\u3002\n* \u8a31\u53ef\u3055\u308c\u305f\u76ee\u7684\u306b\u95a2\u308f\u308b\u30b7\u30b9\u30c6\u30e0\u3068\u30d7\u30ed\u30bb\u30b9\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u76e3\u8996\u304a\u3088\u3073\u5f37\u5316\u3059\u308b\u3053\u3068\u3092\u542b\u3081\u3001\u30b7\u30b9\u30c6\u30e0\u3068\u30d7\u30ed\u30bb\u30b9\u306e\u6b63\u78ba\u3067\u52b9\u7387\u7684\u306a\u64cd\u4f5c\u3092\u4fdd\u8a3c\u3059\u308b\u3002\n\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093:\n* \u5225\u306e\u76ee\u7684\u3067\u8a31\u53ef\u3055\u308c\u3066\u3044\u308b\u305d\u306e\u4ed6\u306e\u30c7\u30fc\u30bf\u3092\u3053\u306e\u76ee\u7684\u306e\u305f\u3081\u306b\u51e6\u7406\u64cd\u4f5c\u3059\u308b\n"},"2":{"id":2,"name":"\u5e83\u544a\u307e\u305f\u306f\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u6280\u8853\u7684\u306a\u914d\u4fe1\n","description":"\u3042\u306a\u305f\u306e\u30c7\u30d0\u30a4\u30b9\u306f\u5e83\u544a\u3084\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u8868\u793a\u3057\u3066\u64cd\u4f5c\u3059\u308b\u305f\u3081\u306e\u60c5\u5831\u3092\u9001\u53d7\u4fe1\u3067\u304d\u307e\u3059\u3002\n","descriptionLegal":"\u60c5\u5831\u3092\u63d0\u4f9b\u3057\u6280\u8853\u7684\u306a\u8981\u6c42\u306b\u5bfe\u5fdc\u3059\u308b\u305f\u3081\u3001\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u3059:\n* \u30e6\u30fc\u30b6\u30fc\u306eIP\u30a2\u30c9\u30ec\u30b9\u3092\u4f7f\u7528\u3057\u3066\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u7d4c\u7531\u3067\u5e83\u544a\u3092\u914d\u4fe1\u3059\u308b\n* \u30e6\u30fc\u30b6\u30fc\u3092\u30e9\u30f3\u30c7\u30a3\u30f3\u30b0\u30da\u30fc\u30b8\u306b\u8a98\u5c0e\u3059\u308b\u3053\u3068\u306b\u3088\u308a\u30e6\u30fc\u30b6\u30fc\u306e\u5e83\u544a\u3068\u306e\u3084\u308a\u3068\u308a\u306b\u30ec\u30b9\u30dd\u30f3\u30b9\u3059\u308b\n* \u30e6\u30fc\u30b6\u30fc\u306eIP\u30a2\u30c9\u30ec\u30b9\u3092\u4f7f\u7528\u3057\u3066\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u7d4c\u7531\u3067\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u914d\u4fe1\u3059\u308b\n* \u30e6\u30fc\u30b6\u30fc\u3092\u30e9\u30f3\u30c7\u30a3\u30f3\u30b0\u30da\u30fc\u30b8\u306b\u8a98\u5c0e\u3059\u308b\u3053\u3068\u306b\u3088\u308a\u3001\u30e6\u30fc\u30b6\u30fc\u306e\u30b3\u30f3\u30c6\u30f3\u30c8\u3068\u306e\u3084\u308a\u3068\u308a\u306b\u30ec\u30b9\u30dd\u30f3\u30b9\u3059\u308b\n* \u30c7\u30d0\u30a4\u30b9\u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3001\u304b\u3064\u9069\u5207\u306a\u30b5\u30a4\u30ba\u306e\u5e83\u544a\u30af\u30ea\u30a8\u30a4\u30c6\u30a3\u30d6\u307e\u305f\u306f\u30d3\u30c7\u30aa\u30d5\u30a1\u30a4\u30eb\u3092\u914d\u4fe1\u3059\u308b\u306a\u3069\u3001\u5e83\u544a\u307e\u305f\u306f\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u914d\u4fe1\u3059\u308b\u305f\u3081\u306b\u30c7\u30d0\u30a4\u30b9\u30bf\u30a4\u30d7\u3068\u6a5f\u80fd\u306b\u95a2\u3059\u308b\u60c5\u5831\u3092\u4f7f\u7528\u3059\u308b\n\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093:\n* \u5225\u306e\u76ee\u7684\u3067\u8a31\u53ef\u3055\u308c\u3066\u3044\u308b\u305d\u306e\u4ed6\u306e\u30c7\u30fc\u30bf\u3092\u3053\u306e\u76ee\u7684\u306e\u305f\u3081\u306b\u51e6\u7406\u64cd\u4f5c\u3059\u308b"}},"features":{"1":{"id":1,"name":"\u30aa\u30d5\u30e9\u30a4\u30f3\u30c7\u30fc\u30bf\u30bd\u30fc\u30b9\u3092\u7167\u5408\u3057\u7d44\u307f\u5408\u308f\u305b\u308b\n","description":"\u30aa\u30d5\u30e9\u30a4\u30f3\u30c7\u30fc\u30bf\u30bd\u30fc\u30b9\u304b\u3089\u306e\u30c7\u30fc\u30bf\u306f\u3042\u306a\u305f\u306e\u30aa\u30f3\u30e9\u30a4\u30f3\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3\u3068\u7d44\u307f\u5408\u308f\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u30011\u3064\u4ee5\u4e0a\u306e\u76ee\u7684\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u307e\u3059\u3002\n","descriptionLegal":"\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u3059:\n* 1\u3064\u4ee5\u4e0a\u306e\u76ee\u7684\u3001\u307e\u305f\u306f\u7279\u5225\u306a\u76ee\u7684\u306e\u305f\u3081\u306b\u30aa\u30d5\u30e9\u30a4\u30f3\u3067\u53d6\u5f97\u3057\u305f\u30c7\u30fc\u30bf\u3068\u30aa\u30f3\u30e9\u30a4\u30f3\u3067\u53ce\u96c6\u3057\u305f\u30c7\u30fc\u30bf\u3092\u7d44\u307f\u5408\u308f\u305b\u308b\u3002"},"2":{"id":2,"name":"\u7570\u306a\u308b\u30c7\u30d0\u30a4\u30b9\u3068\u30ea\u30f3\u30af\u3059\u308b\n","description":"\u3055\u307e\u3056\u307e\u306a\u30c7\u30d0\u30a4\u30b9\u304c\u3042\u306a\u305f\u307e\u305f\u306f\u3042\u306a\u305f\u306e\u4e16\u5e2f\u306b\u5c5e\u3057\u3066\u3044\u308b\u3068\u5224\u65ad\u3057\u30011\u3064\u4ee5\u4e0a\u306e\u76ee\u7684\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u307e\u3059\u3002\n","descriptionLegal":"\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u3059:\n* 2\u3064\u4ee5\u4e0a\u306e\u30c7\u30d0\u30a4\u30b9\u304c\u540c\u3058\u30e6\u30fc\u30b6\u30fc\u307e\u305f\u306f\u4e16\u5e2f\u306b\u5c5e\u3057\u3066\u3044\u308b\u3068\u6c7a\u5b9a\u7684\u306b\u5224\u65ad\u3059\u308b\n* 2\u3064\u4ee5\u4e0a\u306e\u30c7\u30d0\u30a4\u30b9\u304c\u540c\u3058\u30e6\u30fc\u30b6\u30fc\u307e\u305f\u306f\u4e16\u5e2f\u306b\u5c5e\u3057\u3066\u3044\u308b\u3068\u78ba\u7387\u7684\u306b\u5224\u65ad\u3059\u308b\n* \u8b58\u5225\u306e\u305f\u3081\u306b\u30c7\u30d0\u30a4\u30b9\u7279\u6027\u3092\u30a2\u30af\u30c6\u30a3\u30d6\u306b\u30b9\u30ad\u30e3\u30f3\u3059\u308b\u3053\u3068\u3092\u30e6\u30fc\u30b6\u30fc\u304c\u30d9\u30f3\u30c0\u30fc\u306b\u8a31\u53ef\u3057\u3066\u3044\u308b\u5834\u5408\u3001\u30c7\u30d0\u30a4\u30b9\u7279\u6027\u3092\u30a2\u30af\u30c6\u30a3\u30d6\u306b\u30b9\u30ad\u30e3\u30f3\u3057\u78ba\u7387\u7684\u8b58\u5225\u3092\u884c\u3046\uff08\u7279\u5225\u6a5f\u80fd2\uff09\n"},"3":{"id":3,"name":"\u8b58\u5225\u306e\u305f\u3081\u306b\u81ea\u52d5\u9001\u4fe1\u3055\u308c\u305f\u30c7\u30d0\u30a4\u30b9\u7279\u6027\u3092\u53d7\u4fe1\u3057\u3066\u4f7f\u7528\u3059\u308b\n","description":"\u304a\u4f7f\u3044\u306e\u30c7\u30d0\u30a4\u30b9\u306fIP\u30a2\u30c9\u30ec\u30b9\u3084\u30d6\u30e9\u30a6\u30b6\u306e\u7a2e\u985e\u306a\u3069\u30c7\u30d0\u30a4\u30b9\u304c\u81ea\u52d5\u7684\u306b\u9001\u4fe1\u3059\u308b\u60c5\u5831\u306b\u57fa\u3065\u3044\u3066\u4ed6\u306e\u30c7\u30d0\u30a4\u30b9\u3068\u533a\u5225\u3055\u308c\u308b\u5834\u5408\u304c\u3042\u308a\u307e\u3059\u3002\n","descriptionLegal":"\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u3059:\n* IP\u30a2\u30c9\u30ec\u30b9\u3001\u30e6\u30fc\u30b6\u30fc\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u6587\u5b57\u5217\u306a\u3069\u7279\u5b9a\u306e\u7279\u6027\u306b\u3064\u3044\u3066\u30c7\u30d0\u30a4\u30b9\u304b\u3089\u81ea\u52d5\u7684\u306b\u53ce\u96c6\u3055\u308c\u305f\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3057\u3066\u8b58\u5225\u5b50\u3092\u4f5c\u6210\u3059\u308b\u3002\n* \u3053\u306e\u3088\u3046\u306a\u8b58\u5225\u5b50\u3092\u4f7f\u7528\u3057\u30c7\u30d0\u30a4\u30b9\u306e\u518d\u8b58\u5225\u3092\u8a66\u884c\u3059\u308b\u3002\n\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093:\n\u8b58\u5225\u306e\u305f\u3081\u306e\u30c7\u30d0\u30a4\u30b9\u306e\u7279\u6027\u3092\u30a2\u30af\u30c6\u30a3\u30d6\u306b\u30b9\u30ad\u30e3\u30f3\u3059\u308b\u30e6\u30fc\u30b6\u30fc\u306e\u500b\u5225\u306e\u30aa\u30d7\u30c8\u30a4\u30f3\u304c\u306a\u3044\u72b6\u614b\u3067\u3001\u7279\u5b9a\u306e\u7279\u6027\uff08\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u3066\u3044\u308b\u30d5\u30a9\u30f3\u30c8\u3084\u753b\u9762\u89e3\u50cf\u5ea6\u306a\u3069\uff09\u306b\u3064\u3044\u3066\u30c7\u30d0\u30a4\u30b9\u3092\u30a2\u30af\u30c6\u30a3\u30d6\u306b\u30b9\u30ad\u30e3\u30f3\u3057\u3066\u53ce\u96c6\u3055\u308c\u305f\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3057\u3001\u8b58\u5225\u5b50\u3092\u4f5c\u6210\u3059\u308b\u3002\n* \u3053\u306e\u3088\u3046\u306a\u8b58\u5225\u5b50\u3092\u4f7f\u7528\u3057\u3066\u30c7\u30d0\u30a4\u30b9\u3092\u518d\u8b58\u5225\u3059\u308b\u3002"}},"specialFeatures":{"1":{"id":1,"name":"\u6b63\u78ba\u306a\u4f4d\u7f6e\u60c5\u5831\u30c7\u30fc\u30bf\u306e\u4f7f\u7528\n","description":"\u3042\u306a\u305f\u306e\u6b63\u78ba\u306a\u4f4d\u7f6e\u60c5\u5831\u30c7\u30fc\u30bf\u306f1\u3064\u4ee5\u4e0a\u306e\u76ee\u7684\u3092\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u305f\u3081\u306b\u4f7f\u7528\u3055\u308c\u307e\u3059\u3002\u3053\u308c\u306f\u6570\u30e1\u30fc\u30c8\u30eb\u306e\u8ddd\u96e2\u307e\u3067\u3042\u306a\u305f\u306e\u4f4d\u7f6e\u3092\u6b63\u78ba\u306b\u628a\u63e1\u3067\u304d\u308b\u3053\u3068\u3092\u610f\u5473\u3057\u307e\u3059\u3002\n","descriptionLegal":"\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u3059:\n* 1\u3064\u4ee5\u4e0a\u306e\u76ee\u7684\u3092\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u305f\u3081\u6b63\u78ba\u306a\u4f4d\u7f6e\u60c5\u5831\u30c7\u30fc\u30bf\u3092\u53ce\u96c6\u3057\u51e6\u7406\u3059\u308b\u3002\n\u6ce8\u8a18\u6b63\u78ba\u306a\u4f4d\u7f6e\u60c5\u5831\u3068\u306f\u30e6\u30fc\u30b6\u30fc\u306e\u4f4d\u7f6e\u60c5\u5831\u306e\u7cbe\u5ea6\u306b\u5236\u9650\u304c\u306a\u3044\u3053\u3068\u3092\u610f\u5473\u3057\u307e\u3059\u3002 \u4f4d\u7f6e\u60c5\u5831\u306f\u6570\u30e1\u30fc\u30c8\u30eb\u5358\u4f4d\u306e\u6b63\u78ba\u3055\u306e\u5834\u5408\u3082\u3042\u308a\u307e\u3059\u3002"},"2":{"id":2,"name":"\u30c7\u30d0\u30a4\u30b9\u306e\u7279\u6027\u3092\u30a2\u30af\u30c6\u30a3\u30d6\u306b\u30b9\u30ad\u30e3\u30f3\u3057\u3066\u8b58\u5225\u3059\u308b\n","description":"\u30c7\u30d0\u30a4\u30b9\u56fa\u6709\u306e\u7279\u6027\u306e\u7d44\u307f\u5408\u308f\u305b\u3092\u30b9\u30ad\u30e3\u30f3\u3059\u308b\u3053\u3068\u3067\u3001\u3042\u306a\u305f\u306e\u30c7\u30d0\u30a4\u30b9\u3092\u8b58\u5225\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n","descriptionLegal":"\u30d9\u30f3\u30c0\u30fc\u306f\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u307e\u3059:\n*\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u3066\u3044\u308b\u30d5\u30a9\u30f3\u30c8\u3084\u753b\u9762\u89e3\u50cf\u5ea6\u306a\u3069\u7279\u5b9a\u306e\u7279\u6027\u306b\u3064\u3044\u3066\u30c7\u30d0\u30a4\u30b9\u3092\u30a2\u30af\u30c6\u30a3\u30d6\u306b\u30b9\u30ad\u30e3\u30f3\u3057\u3001\u53ce\u96c6\u3055\u308c\u305f\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3057\u3066\u8b58\u5225\u5b50\u3092\u4f5c\u6210\u3059\u308b\u3002\n* \u3053\u306e\u3088\u3046\u306a\u8b58\u5225\u5b50\u3092\u4f7f\u7528\u3057\u3066\u30c7\u30d0\u30a4\u30b9\u3092\u518d\u8b58\u5225\u3059\u308b\u3002"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"\u6b63\u78ba\u306a\u4f4d\u7f6e\u60c5\u5831\u30c7\u30fc\u30bf\u3001\u304a\u3088\u3073\u30c7\u30d0\u30a4\u30b9\u30b9\u30ad\u30e3\u30f3\u306b\u3088\u308b\u8b58\u5225\n","description":"\u6b63\u78ba\u306a\u4f4d\u7f6e\u60c5\u5831\u3068\u30c7\u30d0\u30a4\u30b9\u306e\u7279\u6027\u306b\u95a2\u3059\u308b\u60c5\u5831\u304c\u4f7f\u7528\u53ef\u80fd\u3067\u3059\u3002\n"},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3001\u304a\u3088\u3073\u5e83\u544a\u306e\u6e2c\u5b9a\n","description":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3092\u914d\u4fe1\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\n"},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u304d\u5e83\u544a\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u5e83\u544a\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\n"},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3001\u5e83\u544a\u6e2c\u5b9a\u3001\u304a\u3088\u3073\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\n","description":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3092\u914d\u4fe1\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3001\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u3001\u304a\u3088\u3073\u5e83\u544a\u6e2c\u5b9a\n","description":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3092\u914d\u4fe1\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u5e83\u544a\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\n"},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u306e\u8868\u793a\u3068\u5e83\u544a\u306e\u6e2c\u5b9a\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u304d\u5e83\u544a\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\n"},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u8868\u793a\u3001\u5e83\u544a\u6e2c\u5b9a\u3001\u304a\u3088\u3073\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u304d\u5e83\u544a\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u3001\u304a\u3088\u3073\u5e83\u544a\u6e2c\u5b9a\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u304d\u5e83\u544a\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u5e83\u544a\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\n"},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u3001\u5e83\u544a\u6e2c\u5b9a\u3001\u304a\u3088\u3073\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u304d\u5e83\u544a\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u5e83\u544a\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u3068\u30c7\u30a3\u30b9\u30d7\u30ec\u30a4\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u304d\u5e83\u544a\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u5e83\u544a\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\n"},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u8868\u793a\u3001\u304a\u3088\u3073\u30b3\u30f3\u30c6\u30f3\u30c4\u6e2c\u5b9a\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u8868\u793a\u3001\u30b3\u30f3\u30c6\u30f3\u30c4\u6e2c\u5b9a\u3001\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u6e2c\u5b9a\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u3001\u30b3\u30f3\u30c6\u30f3\u30c4\u6e2c\u5b9a\u3001\u304a\u3088\u3073\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u3001\u30b3\u30f3\u30c6\u30f3\u30c4\u6e2c\u5b9a\u3001\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\u3001\u304a\u3088\u3073\u88fd\u54c1\u958b\u767a\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30e6\u30fc\u30b6\u30fc\u30a8\u30af\u30b9\u30da\u30ea\u30a8\u30f3\u30b9\u3001\u30b7\u30b9\u30c6\u30e0\u3001\u304a\u3088\u3073\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3092\u69cb\u7bc9\u307e\u305f\u306f\u6539\u5584\u3059\u308b\u305f\u3081\u306b\u3001\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\n"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u6e2c\u5b9a\u3001\u304a\u3088\u3073\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\n","description":"\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002 \u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u6e2c\u5b9a\n","description":"\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\n"},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"\u5e83\u544a\u6e2c\u5b9a\u3068\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\n","description":"\u5e83\u544a\u3092\u6e2c\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002 \u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u6e2c\u5b9a\u3001\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\u3001\u304a\u3088\u3073\u88fd\u54c1\u958b\u767a\n","description":"\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002 \u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30e6\u30fc\u30b6\u30fc\u30a8\u30af\u30b9\u30da\u30ea\u30a8\u30f3\u30b9\u3001\u30b7\u30b9\u30c6\u30e0\u3001\u304a\u3088\u3073\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3092\u69cb\u7bc9\u307e\u305f\u306f\u6539\u5584\u3059\u308b\u305f\u3081\u306b\u3001\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"\u30b3\u30f3\u30c6\u30f3\u30c4\u6e2c\u5b9a\u3001\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\u3001\u88fd\u54c1\u958b\u767a\n","description":"\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30e6\u30fc\u30b6\u30fc\u30a8\u30af\u30b9\u30da\u30ea\u30a8\u30f3\u30b9\u3001\u30b7\u30b9\u30c6\u30e0\u3001\u304a\u3088\u3073\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3092\u69cb\u7bc9\u307e\u305f\u306f\u6539\u5584\u3059\u308b\u305f\u3081\u306b\u3001\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"\u30b3\u30f3\u30c6\u30f3\u30c4\u6e2c\u5b9a\u3068\u88fd\u54c1\u958b\u767a\n","description":"\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30e6\u30fc\u30b6\u30fc\u30a8\u30af\u30b9\u30da\u30ea\u30a8\u30f3\u30b9\u3001\u30b7\u30b9\u30c6\u30e0\u3001\u304a\u3088\u3073\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3092\u69cb\u7bc9\u307e\u305f\u306f\u6539\u5584\u3059\u308b\u305f\u3081\u306b\u3001\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u8868\u793a\u3001\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u6e2c\u5b9a\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\n"},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u8868\u793a\u3001\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u6e2c\u5b9a\u3001\u304a\u3088\u3073\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30e6\u30fc\u30b6\u30fc\u30a8\u30af\u30b9\u30da\u30ea\u30a8\u30f3\u30b9\u3001\u30b7\u30b9\u30c6\u30e0\u3001\u304a\u3088\u3073\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3092\u69cb\u7bc9\u307e\u305f\u306f\u6539\u5584\u3059\u308b\u305f\u3081\u306b\u3001\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3001\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u6e2c\u5b9a\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\n"},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3001\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u6e2c\u5b9a\u3001\u304a\u3088\u3073\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u3001\u304a\u3088\u3073\u30b3\u30f3\u30c6\u30f3\u30c4\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\n","description":"\u3055\u3089\u306b\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\n"},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u8868\u793a\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\n"},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3001\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u6e2c\u5b9a\u3001\u304a\u3088\u3073\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\n","description":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3092\u914d\u4fe1\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u306e\u8868\u793a\u3001\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u3001\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u6e2c\u5b9a\u3001\u304a\u3088\u3073\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u306e\u8868\u793a\u3001\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u3001\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u6e2c\u5b9a\u3001\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\u3001\u304a\u3088\u3073\u88fd\u54c1\u958b\u767a\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30e6\u30fc\u30b6\u30fc\u30a8\u30af\u30b9\u30da\u30ea\u30a8\u30f3\u30b9\u3001\u30b7\u30b9\u30c6\u30e0\u3001\u304a\u3088\u3073\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3092\u69cb\u7bc9\u307e\u305f\u306f\u6539\u5584\u3059\u308b\u305f\u3081\u306b\u3001\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3001\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u3001\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u6e2c\u5b9a\u3001\u304a\u3088\u3073\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\n","description":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3092\u914d\u4fe1\u3067\u304d\u307e\u3059\u3002\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3001\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u3001\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u6e2c\u5b9a\u3001\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\u3001\u304a\u3088\u3073\u88fd\u54c1\u958b\u767a\n","description":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3092\u914d\u4fe1\u3067\u304d\u307e\u3059\u3002\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30e6\u30fc\u30b6\u30fc\u30a8\u30af\u30b9\u30da\u30ea\u30a8\u30f3\u30b9\u3001\u30b7\u30b9\u30c6\u30e0\u3001\u304a\u3088\u3073\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3092\u69cb\u7bc9\u307e\u305f\u306f\u6539\u5584\u3059\u308b\u305f\u3081\u306b\u3001\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3001\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u3001\u30b3\u30f3\u30c6\u30f3\u30c4\u6e2c\u5b9a\u3001\u304a\u3088\u3073\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\n","description":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3092\u914d\u4fe1\u3067\u304d\u307e\u3059\u3002\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3001\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u3001\u30b3\u30f3\u30c6\u30f3\u30c4\u6e2c\u5b9a\u3001\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\u3001\u304a\u3088\u3073\u88fd\u54c1\u958b\u767a\n","description":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3092\u914d\u4fe1\u3067\u304d\u307e\u3059\u3002\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30e6\u30fc\u30b6\u30fc\u30a8\u30af\u30b9\u30da\u30ea\u30a8\u30f3\u30b9\u3001\u30b7\u30b9\u30c6\u30e0\u3001\u304a\u3088\u3073\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3092\u69cb\u7bc9\u307e\u305f\u306f\u6539\u5584\u3059\u308b\u305f\u3081\u306b\u3001\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3001\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u3001\u304a\u3088\u3073\u5e83\u544a\u6e2c\u5b9a\n","description":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3092\u914d\u4fe1\u3067\u304d\u307e\u3059\u3002\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\n"},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3001\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u3001\u5e83\u544a\u6e2c\u5b9a\u3001\u304a\u3088\u3073\u88fd\u54c1\u958b\u767a\n","description":"\u57fa\u672c\u7684\u306a\u5e83\u544a\u3092\u914d\u4fe1\u3067\u304d\u307e\u3059\u3002\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\u30e6\u30fc\u30b6\u30fc\u30a8\u30af\u30b9\u30da\u30ea\u30a8\u30f3\u30b9\u3001\u30b7\u30b9\u30c6\u30e0\u3001\u304a\u3088\u3073\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3092\u69cb\u7bc9\u307e\u305f\u306f\u6539\u5584\u3059\u308b\u305f\u3081\u306b\u3001\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u3001\u5e83\u544a\u6e2c\u5b9a\u3001\u304a\u3088\u3073\u88fd\u54c1\u958b\u767a\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u304d\u5e83\u544a\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u5e83\u544a\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\u30e6\u30fc\u30b6\u30fc\u30a8\u30af\u30b9\u30da\u30ea\u30a8\u30f3\u30b9\u3001\u30b7\u30b9\u30c6\u30e0\u3001\u304a\u3088\u3073\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3092\u69cb\u7bc9\u307e\u305f\u306f\u6539\u5584\u3059\u308b\u305f\u3081\u306b\u3001\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u3001\u5e83\u544a\u6e2c\u5b9a\u3001\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\u3001\u304a\u3088\u3073\u88fd\u54c1\u958b\u767a\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u304d\u5e83\u544a\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u5e83\u544a\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30e6\u30fc\u30b6\u30fc\u30a8\u30af\u30b9\u30da\u30ea\u30a8\u30f3\u30b9\u3001\u30b7\u30b9\u30c6\u30e0\u3001\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3092\u69cb\u7bc9\u307e\u305f\u306f\u6539\u5584\u3059\u308b\u305f\u3081\u306b\u3001\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u3001\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u6e2c\u5b9a\u3001\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\u3001\u304a\u3088\u3073\u88fd\u54c1\u958b\u767a\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u304d\u5e83\u544a\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u5e83\u544a\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3084\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30e6\u30fc\u30b6\u30fc\u30a8\u30af\u30b9\u30da\u30ea\u30a8\u30f3\u30b9\u3001\u30b7\u30b9\u30c6\u30e0\u3001\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3092\u69cb\u7bc9\u307e\u305f\u306f\u6539\u5584\u3059\u308b\u305f\u3081\u306b\u3001\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u3001\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u8868\u793a\u3001\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u6e2c\u5b9a\u3001\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\u3001\u304a\u3088\u3073\u88fd\u54c1\u958b\u767a\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u5e83\u544a\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3084\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30e6\u30fc\u30b6\u30fc\u30a8\u30af\u30b9\u30da\u30ea\u30a8\u30f3\u30b9\u3001\u30b7\u30b9\u30c6\u30e0\u3001\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3092\u69cb\u7bc9\u307e\u305f\u306f\u6539\u5584\u3059\u308b\u305f\u3081\u306b\u3001\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3001\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u6e2c\u5b9a\u3001\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306e\u6d1e\u5bdf\u3001\u304a\u3088\u3073\u88fd\u54c1\u958b\u767a\n","description":"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306b\u57fa\u3065\u3044\u3066\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002\u3088\u308a\u591a\u304f\u306e\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u3088\u308a\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6e2c\u5b9a\u3067\u304d\u307e\u3059\u3002\u5e83\u544a\u3084\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u305f\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30e6\u30fc\u30b6\u30fc\u30a8\u30af\u30b9\u30da\u30ea\u30a8\u30f3\u30b9\u3001\u30b7\u30b9\u30c6\u30e0\u3001\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3092\u69cb\u7bc9\u307e\u305f\u306f\u6539\u5584\u3059\u308b\u305f\u3081\u306b\u3001\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n"}}} \ No newline at end of file diff --git a/src/s1/config/2.0/purposes/purposes-lt.json b/src/s1/config/2.0/purposes/purposes-lt.json index ec7fa259..aedc697c 100644 --- a/src/s1/config/2.0/purposes/purposes-lt.json +++ b/src/s1/config/2.0/purposes/purposes-lt.json @@ -1 +1 @@ -{"vendorListVersion":79,"lastUpdated":"2021-02-25T16:36:20Z","purposes":{"1":{"id":1,"name":"Laikyti ir (arba) gauti informacij\u0105 \u012frenginyje","description":"Slapukai, \u012frengini\u0173 identifikatoriai ar kita informacija gali b\u016bti laikoma ir prieinama j\u016bs\u0173 \u012frenginyje jums nurodytais tikslais.","descriptionLegal":"Tiek\u0117jai gali:\n* Laikyti ir (arba) prieiti \u012frenginyje toki\u0105 informacij\u0105 kaip slapukai ir vartotojui suteikti \u012frengini\u0173 identifikatoriai.\n"},"2":{"id":2,"name":"Pasirinkti pagrindinius reklaminius skelbimus","description":"Reklaminiai skelbimai gali b\u016bti jums rodomi atsi\u017evelgiant \u012f j\u016bs\u0173 per\u017ei\u016brim\u0105 turin\u012f, naudojam\u0105 program\u0117l\u0119, j\u016bs\u0173 apytiksl\u0119 buvimo viet\u0105 arba j\u016bs\u0173 \u012frenginio tip\u0105.","descriptionLegal":"Nor\u0117dami pasirinkti pagrindinius reklaminius skelbimus tiek\u0117jai gali:\n* Remtis tikralaike informacija apie kontekst\u0105, kuriame reklaminis skelbimas bus rodomas, parodyti skelbim\u0105, \u012fskaitant informacij\u0105 apie turin\u012f ir \u012frengin\u012f, tok\u012f kaip \u012frenginio tipas ir charakteristikos, vartotojo atstovas, URL, IP adresas \n* Naudokite vartotojo netikslius geografin\u0117s vietos duomenis.\n* Valdykite skelbim\u0173 rodymo vartotojui da\u017en\u012f.\n* Nustatykite skelbim\u0173 rodym\u0173 vartotojui sek\u0105.\n* Neleiskite skelbimo naudoti netinkamame redakciniame kontekste (nesaugiame prek\u0117s \u017eenklui)\nTiek\u0117jai negali:\n* Sukurti suasmenint\u0105 skelbim\u0173 profil\u012f, naudodami \u0161i\u0105 informacij\u0105 b\u016bsimiems skelbimams pasirinkti be atskiro teisinio pagrindo kaip suasmenint\u0105 skelbim\u0173 profil\u012f.\nPastaba. Netiksli rei\u0161kia, kad leid\u017eiama nurodyti apytiksl\u0119, ne ma\u017eesnio nei 500 metr\u0173 spindulio teritorijoje esan\u010di\u0105 buvimo viet\u0105.\n"},"3":{"id":3,"name":"Kurti suasmenint\u0105 reklamini\u0173 skelbim\u0173 profil\u012f","description":"Profilis gali b\u016bti sukurtas atsi\u017evelgiant \u012f jus ir j\u016bs\u0173 interesus, kad jums b\u016bt\u0173 rodomi asmeni\u0161kai jums pritaikyti ir aktual\u016bs skelbimai.","descriptionLegal":"Nor\u0117dami sukurti suasmenint\u0105 reklamini\u0173 skelbim\u0173 profil\u012f tiek\u0117jai gali:\n* Rinkti informacij\u0105 apie vartotoj\u0105, \u012fskaitant vartotojo veikl\u0105, interesus, demografin\u0119 informacij\u0105, buvimo viet\u0105, kad sukurt\u0173 arba redaguot\u0173 vartotojo profil\u012f, skirt\u0105 naudoti suasmenintuose reklaminiuose prane\u0161imuose.\n* Sujunkite \u0161i\u0105 informacij\u0105 su kita anks\u010diau surinkta informacija, \u012fskaitant i\u0161 vis\u0173 svetaini\u0173 ir program\u0173, kad sukurtum\u0117te ar redaguotum\u0117te vartotojo profil\u012f, skirt\u0105 naudoti suasmenintoje reklamoje."},"4":{"id":4,"name":"Pasirinkti suasmenintus skelbimus","description":"Suasmeninti skelbimai gali b\u016bti rodomi vadovaujantis sukurtu j\u016bs\u0173 profiliu.","descriptionLegal":"Nor\u0117dami pasirinkti suasmenintus skelbimus tiek\u0117jai gali:\n* Pasirinkti suasmenint\u0105 reklamin\u012f skelbim\u0105 remiantis vartotojo profiliu ir kitais istoriniais duomenimis, \u012fskaitant ankstesn\u0119 vartotojo veikl\u0105, interesus, jo apsilankymus svetain\u0117se arba naudojamas program\u0117les, vietoves ar demografin\u0119 informacij\u0105.\n"},"5":{"id":5,"name":"Sukurti suasmenint\u0105 turinio profil\u012f","description":"Profilis gali b\u016bti sukurtas atsi\u017evelgiant \u012f jus ir j\u016bs\u0173 interesus, kad jums b\u016bt\u0173 rodomas asmeni\u0161kai jums pritaikytas ir aktualus turinys.","descriptionLegal":"Nor\u0117dami sukurti suasmeninto turinio profil\u012f tiek\u0117jai gali:\n* Rinkti informacij\u0105 apie vartotoj\u0105, \u012fskaitant vartotojo veikl\u0105, interesus, duomenis apie jo apsilankymus svetain\u0117se ir naudojamas program\u0117les, demografin\u0119 informacij\u0105, buvimo viet\u0105, kad sukurt\u0173 arba redaguot\u0173 vartotojo profil\u012f suasmenintam turiniui.\n* Sujunkite \u0161i\u0105 informacij\u0105 su kita anks\u010diau surinkta informacija, \u012fskaitant i\u0161 vis\u0173 svetaini\u0173 ir program\u0173, kad sukurtum\u0117te ar redaguotum\u0117te vartotojo profil\u012f, skirt\u0105 naudoti turinio suasmeninimui."},"6":{"id":6,"name":"Pasirinkti suasmenint\u0105 turin\u012f","description":"Suasmenintas turinys gali b\u016bti rodomas vadovaujantis sukurtu j\u016bs\u0173 profiliu.","descriptionLegal":"Nor\u0117dami pasirinkti suasmenint\u0105 turin\u012f tiek\u0117jai gali:\n* Pasirinkti suasmenint\u0105 turin\u012f remiantis vartotojo profiliu ir kitais istoriniais duomenimis, \u012fskaitant ankstesn\u0119 vartotojo veikl\u0105, interesus, jo apsilankymus svetain\u0117se arba naudojamas program\u0117les ar demografin\u0119 informacij\u0105.\n"},"7":{"id":7,"name":"Vertinti skelbimo veiksmingum\u0105","description":"Skelbim\u0173, kuriuos matote ir su kuriais s\u0105veikaujate, veiksmingumas ir efektyvumas gali b\u016bti \u012fvertintas.","descriptionLegal":"Nor\u0117dami \u012fvertinti skelbimo veiksmingum\u0105 teik\u0117jai gali:\n* Vertinti, ar ir kokiu b\u016bdu skelbimas buvo pateiktas vartotojui, ir ar vartotojas \u012f j\u012f atsiliep\u0117\n* Teikti ataskaitas apie skelbimus, \u012fskaitant j\u0173 efektyvum\u0105 ir veiksmingum\u0105\n* Teikti ataskaitas apie vartotojus, kurie atsiliep\u0117 \u012f skelbimus, naudodamiesi duomenimis, surinktais vartotojui s\u0105veikaujant su \u0161iuo skelbimu\n* Teikti prane\u0161imus leid\u0117jams apie j\u0173 teritorijoje rodomus skelbimus\n* Vertinti, ar skelbimas atitinka redakcin\u0117s aplinkos kontekst\u0105 (yra saugus prek\u0117s \u017eenklui) ir yra jam tinkamas\n* Nustatyti procentin\u0119 skelbimo dal\u012f, kuri\u0105 galima buvo pamatyti ir skelbimo per\u017ei\u016bros trukm\u0119 \nTiek\u0117jai negali:\n* Taikyti vertinimu ar pana\u0161iai gautus auditorijos \u012f\u017evalg\u0173 duomenis skelbim\u0173 vertinimo duomenims, netur\u0117dami teisinio pagrindo taikyti rinkos tyrim\u0173 duomenis auditorijos \u012f\u017evalgoms gauti.\n"},"8":{"id":8,"name":"Vertinti turinio veiksmingum\u0105","description":"Turinio, kur\u012f matote ir su kuriuo s\u0105veikaujate veiksmingumas ir efektyvumas gali b\u016bti \u012fvertintas.","descriptionLegal":"Nor\u0117dami \u012fvertinti turinio veiksmingum\u0105 teik\u0117jai gali:\n* \u012evertinti ir informuoti, kaip turinys buvo pateiktas vartotojams ir kaip jie su juo s\u0105veikavo.\n* Remiantis tiesiogiai \u012fvertinama ar \u017einoma informacija pateikti ataskaitas, kaip vartotojai s\u0105veikavo su turiniu\nTiek\u0117jai negali:\n* Vertinti, ar ir kokiu b\u016bdu skelbimai (\u012fskaitant vartotojo platformai pritaikytus skelbimus) buvo pateikti vartotojui, ir ar vartotojas \u012f juos atsiliep\u0117.\n* Taikyti vertinimu ar pana\u0161iai gautus auditorijos \u012f\u017evalg\u0173 duomenis skelbim\u0173 vertinimo duomenims, netur\u0117dami atskiro teisinio pagrindo taikyti rinkos tyrim\u0173 duomenis auditorijos \u012f\u017evalgoms gauti.\n"},"9":{"id":9,"name":"Taikyti rinkos tyrimus auditorijos \u012f\u017evalgoms gauti","description":"Rinkos tyrim\u0173 duomenys gali b\u016bti naudojami siekiant su\u017einoti daugiau apie auditorijas, kurios lankosi svetain\u0117se / program\u0117l\u0117se, ar jas per\u017ei\u016bri.","descriptionLegal":"Nor\u0117dami taikyti rinkos tyrim\u0173 duomenis auditorijos \u012f\u017evalgoms gauti tiek\u0117jai gali:\n* Teikti apibendrintas ataskaitas reklamos tiek\u0117jams ar j\u0173 atstovams apie auditorijas, kurias pasiekia j\u0173 skelbimai, remdamiesi vertinimu ar pana\u0161iai gautomis \u012f\u017evalgomis.\n* Teikti apibendrintas ataskaitas leid\u0117jams apie auditorijas, kurioms toks turinys ir (arba) skelbimas buvo skirti, arba kurios s\u0105veikavo su turiniu ir (arba) skelbimais j\u0173 \u012fmon\u0117se, taikydamos vertinimu ar pana\u0161iai gautomis \u012f\u017evalgomis. \n* Susieti ne internetu gautus duomenis su interneto vartotojais, siekdami atlikti rinkos tyrimus, siekiant gauti auditorijos \u012f\u017evalgas, jeigu tiek\u0117jai yra deklarav\u0119, kad jie gali derinti ir jungti ne interneto duomen\u0173 \u0161altinius (1-a funkcija)\nTiek\u0117jai negali: \n* Vertinti skelbim\u0173, kurie buvo pateikti konkre\u010diam vartotojui, arba su kuriais toks vartotojas s\u0105veikavo, veiksmingumo ir efektyvumo, netur\u0117dami teisinio pagrindo vertinti skelbim\u0173 veiksmingum\u0105.\n* Vertinti, koks turinys buvo pateiktas konkre\u010diam vartotojui ir kaip jis su tokiu turiniu s\u0105veikavo, netur\u0117dami teisinio pagrindo vertinti turinio veiksmingumo.\n"},"10":{"id":10,"name":"Kurti ir tobulinti produktus","description":"J\u016bs\u0173 duomenys gali b\u016bti naudojami esamoms sistemoms ir programinei \u012frangai tobulinti ir naujiems produktams kurti.","descriptionLegal":"Nor\u0117dami kurti naujus ir tobulinti esamus produktus tiek\u0117jai gali:\n* Naudoti informacij\u0105 siekiant esamus produktus patobulinti naujomis funkcijomis arba kurti naujus produktus\n* Sukurti naujus modelius ir algoritmus ma\u0161ininio mokymosi priemon\u0117mis\nTiek\u0117jai negali:\n* Atlikti bet koki\u0173 kit\u0173 pagal \u0161\u012f tiksl\u0105 leid\u017eiam\u0173 duomen\u0173 tvarkymo operacij\u0173 siekdami kito tikslo\n"}},"specialPurposes":{"1":{"id":1,"name":"U\u017etikrinti saugum\u0105, u\u017ekirti keli\u0105 apgaul\u0117ms ir atlikti derinimo veiksmus","description":"J\u016bs\u0173 duomenys gali b\u016bti naudojami apgaulingai veiklai steb\u0117ti ir u\u017ekirsti jai keli\u0105, ir u\u017etikrinti, kad sistemos ir procesai veikt\u0173 tinkamai ir saugiai.","descriptionLegal":"Siekdami u\u017etikrinti saugum\u0105, u\u017ekirti keli\u0105 apgaul\u0117ms ir atlikti derinimo veiksmus tiek\u0117jai gali:\n* U\u017etikrinti, kad duomenys b\u016bt\u0173 saugiai perduoti \n* Nustatyti kenk\u0117ji\u0161k\u0105, apgauling\u0105, netinkam\u0105 ar neteis\u0117t\u0105 veikl\u0105 ir jai u\u017ekirsti keli\u0105.\n* U\u017etikrinti teising\u0105 ir veiksming\u0105 sistem\u0173 ir proces\u0173 veikim\u0105, taip pat vykdyti sistem\u0173 ir proces\u0173 veikimo, siekiant leid\u017eiam\u0173 tiksl\u0173 steb\u0117senos ir tobulinimo, veiksmus\nTiek\u0117jai negali:\n* Atlikti bet koki\u0173 kit\u0173 pagal \u0161\u012f tiksl\u0105 leid\u017eiam\u0173 duomen\u0173 tvarkymo operacij\u0173 siekdami kito tikslo\nPastaba. Duomenys, surinkti ir naudojami siekiant u\u017etikrinti saugum\u0105, u\u017ekirsti keli\u0105 suk\u010diavimui ir derinimo priemon\u0117ms, gali apimti automati\u0161kai siun\u010diamas \u012frenginio charakteristikas identifikavimui, tikslius geografin\u0117s pad\u0117ties duomenis ir duomenis, gautus aktyviai nuskaitant \u012frenginio charakteristikas, kad b\u016bt\u0173 galima juos identifikuoti, neatskleid\u017eiant ir (arba) neprisijungus.\n"},"2":{"id":2,"name":"Techni\u0161kai pateikti turin\u012f arba skelbimus","description":"J\u016bs\u0173 \u012frenginys gali priimti ir gauti informacij\u0105, kuri jums leist\u0173 matyti skelbimus ir turin\u012f ir su jais s\u0105veikauti","descriptionLegal":"Nor\u0117dami pateikti informacij\u0105 ir atsiliepti \u012f technines u\u017eklausas tiek\u0117jai gali:\n* Naudoti vartotojo IP adres\u0105 pateikti skelbim\u0105 internetu\n* Reaguoti \u012f vartotojo s\u0105veikavim\u0105 su skelbimu nukreipdami vartotoj\u0105 \u012f \u012f\u0117jimo tinklalap\u012f\n* Naudoti vartotojo IP adres\u0105 pateikti turin\u012f internetu\n* Reaguoti \u012f vartotojo s\u0105veikavim\u0105 su turiniu nukreipdami vartotoj\u0105 \u012f \u012f\u0117jimo tinklalap\u012f\n* Naudoti informacij\u0105 apie \u012frenginio tip\u0105 ir jo charakteristikas skelbimams ir turiniui pateikti, pavyzd\u017eiui, pateikti tinkamo dyd\u017eio k\u016brybin\u012f ar vaizdo \u012fra\u0161\u0105 \u012frenginio palaikomu formatu\nTiek\u0117jai negali:\n* Atlikti bet koki\u0173 kit\u0173 pagal \u0161\u012f tiksl\u0105 leid\u017eiam\u0173 duomen\u0173 tvarkymo operacij\u0173 siekdami kito tikslo\n"}},"features":{"1":{"id":1,"name":"Derinti ir jungti ne interneto duomen\u0173 \u0161altinius","description":"Ne interneto duomen\u0173 \u0161altini\u0173 duomenys gali b\u016bti derinami su j\u016bs\u0173 veiklos internete duomenimis padedant pasiekti vieno ar daugiau tiksl\u0173.","descriptionLegal":"Tiek\u0117jai gali: \n* Jungti ne internetu gautus duomenis su internetu gautais duomenimis padedant pasiekti vieno ar daugiau tiksl\u0173 ar speciali\u0173j\u0173 tiksl\u0173.\n"},"2":{"id":2,"name":"Susieti skirtingus \u012frenginius","description":"Gali b\u016bti nustatyta, kad skirtingi \u012frenginiai priklauso jums ar j\u016bs\u0173 b\u016bstui siekiant vieno ar keli\u0173 tiksl\u0173.","descriptionLegal":"Tiek\u0117jai gali:\n* Deterministi\u0161kai nustatyti, kad du ar daugiau \u012frengini\u0173 priklauso tam pa\u010diam vartotojui arba b\u016bstui\n* Tikimybi\u0161kai nustatyti, kad du ar daugiau \u012frengini\u0173 priklauso tam pa\u010diam vartotojui arba b\u016bstui\n* Aktyviai skenuoti \u012frenginio identifikavimo charakteristikas tikimybiniam identifikavimui, jeigu vartotojas yra leid\u0119s tiek\u0117jams aktyviai skenuoti \u012frenginio charakteristikas identifikavimo tikslais (2-a specialioji funkcija)\n"},"3":{"id":3,"name":"Gauti ir naudoti automati\u0161kai siun\u010diamas \u012frenginio charakteristikas identifikavimui","description":"J\u016bs\u0173 \u012frenginys gali b\u016bti atskirtas nuo kit\u0173 \u012frengini\u0173 pagal informacij\u0105, kuri\u0105 jis automati\u0161kai siun\u010dia, pvz., IP adres\u0105 ar nar\u0161ykl\u0117s tip\u0105.","descriptionLegal":"Tiek\u0117jai gali:\n* Sukurti identifikatori\u0173, naudodamiesi duomenimis, automati\u0161kai renkamais i\u0161 \u012frenginio, tam tikroms charakteristikoms, pvz., IP adresui, vartotojo atstovo eilutei.\n* Tok\u012f identifikatori\u0173 naudoti bandant pakartotinai identifikuoti \u012frengin\u012f.\nTiek\u0117jai negali:\n* Sukurti identifikatori\u0173, naudodami duomenis, surinktus aktyviai skenuojant \u012frengin\u012f d\u0117l konkre\u010di\u0173 jo charakteristik\u0173, pvz., \u012fdiegt\u0173 \u0161rift\u0173 ar ekrano skiriamosios gebos, vartotojui neturint galimyb\u0117s atskirai atsisakyti aktyviai skenuoti \u012frengin\u012f d\u0117l konkre\u010di\u0173 jo charakteristik\u0173.\n* Tok\u012f identifikatori\u0173 naudoti \u012frenginiui pakartotinai identifikuoti.\n"}},"specialFeatures":{"1":{"id":1,"name":"Naudoti tikslius geografin\u0117s vietos duomenis","description":"J\u016bs\u0173 tiksl\u016bs geografin\u0117s vietos duomenys gali b\u016bti naudojami siekiant vieno ar daugiau tiksl\u0173. Tai rei\u0161kia, kad j\u016bs\u0173 buvimo vieta gali b\u016bti nustatyta keli\u0173 metr\u0173 tikslumu.","descriptionLegal":"Tiek\u0117jai gali:\n* Rinkti ir tvarkyti tikslius geografin\u0117s vietos duomenis siekdami vieno ar daugiau tiksl\u0173.\nPastaba. Tiksl\u016bs geografin\u0117s vietos duomenys rei\u0161kia, kad n\u0117ra joki\u0173 naudojo vietos tikslumo apribojim\u0173; vieta gali b\u016bti nustatoma keli\u0173 metr\u0173 tikslumu.\nPastaba. Tam tikras \u0161i\u0173 duomen\u0173 naudojimas apsaugai ar suk\u010diavimo prevencijai yra atskirai apra\u0161ytas ir nereikalaujama atskiro vartotojo sprendimo naudoti tikslius geografin\u0117s pad\u0117ties duomenis.\n"},"2":{"id":2,"name":"Aktyviai skenuoti \u012frenginio charakteristikas identifikavimo tikslais","description":"J\u016bs\u0173 \u012frenginys gali b\u016bti identifikuotas remiantis j\u016bs\u0173 \u012frenginio unikali\u0173 charakteristik\u0173 derinio skenavimo duomenimis.","descriptionLegal":"Tiek\u0117jai gali:\n* Sukurti identifikatori\u0173, naudodami duomenis, surinktus aktyviai skenuojant \u012frengin\u012f d\u0117l konkre\u010di\u0173 jo charakteristik\u0173, pvz., \u012fdiegt\u0173 \u0161rift\u0173 ar ekrano skiriamosios gebos. \n* Tok\u012f identifikatori\u0173 naudoti \u012frenginiui pakartotinai identifikuoti.\nPastaba. Tam tikras \u0161i\u0173 duomen\u0173 naudojimas apsaugai ar suk\u010diavimui reglamentuotas atskirai ir nereikalauja atskiro vartotojo sprendimo aktyviai skenuoti \u012frenginio charakteristikas identifikavimo tikslais.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Tiksl\u016bs geografin\u0117s vietos duomenys ir identifikavimas skenuojant \u012frengin\u012f","description":"Tiksl\u016bs geografin\u0117s vietos duomenys ir informacija apie \u012frenginio charakteristikas gali b\u016bti naudojami."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Pagrindiniai skelbimai ir skelbim\u0173 vertinimas","description":"Gali b\u016bti pateikiami pagrindiniai reklaminiai skelbimai. Skelbimo veiksmingumas gali b\u016bti \u012fvertintas."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Suasmeninti skelbimai","description":"Skelbimai gali b\u016bti suasmeninti remiantis profiliu. Norint geriau suasmeninti skelbimus gali b\u016bti prid\u0117ta daugiau duomen\u0173."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Pagrindiniai skelbimai ir skelbim\u0173 vertinimas","description":"Gali b\u016bti pateikiami pagrindiniai reklaminiai skelbimai. Skelbimo veiksmingumas gali b\u016bti \u012fvertintas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Pagrindiniai skelbimai, suasmenint\u0173 skelbim\u0173 profilis ir skelbim\u0173 veiksmingumo vertinimas","description":"Gali b\u016bti pateikiami pagrindiniai reklaminiai skelbimai. Norint geriau suasmeninti skelbimus gali b\u016bti prid\u0117ta daugiau duomen\u0173. Skelbimo veiksmingumas gali b\u016bti \u012fvertintas."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Suasmenint\u0173 skelbim\u0173 pateikimas ir skelbim\u0173 vertinimas","description":"Skelbimai gali b\u016bti suasmeninti remiantis profiliu. Skelbimo veiksmingumas gali b\u016bti \u012fvertintas."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Suasmenint\u0173 skelbim\u0173 pateikimas ir skelbim\u0173 vertinimas ir auditorijos \u012f\u017evalgos","description":"Skelbimai gali b\u016bti suasmeninti remiantis profiliu. Skelbimo veiksmingumas gali b\u016bti \u012fvertintas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Suasmeninti skelbimai ir skelbim\u0173 vertinimas","description":"Skelbimai gali b\u016bti suasmeninti remiantis profiliu. Norint geriau suasmeninti skelbimus gali b\u016bti prid\u0117ta daugiau duomen\u0173. Skelbimo veiksmingumas gali b\u016bti \u012fvertintas."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Suasmeninti skelbimai, skelbim\u0173 vertinimas ir auditorijos \u012f\u017evalgos","description":"Skelbimai gali b\u016bti suasmeninti remiantis profiliu. Norint geriau suasmeninti skelbimus gali b\u016bti prid\u0117ta daugiau duomen\u0173. Skelbimo veiksmingumas gali b\u016bti \u012fvertintas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Suasmeninto skelbimo profilis ir pateikimas","description":"Skelbimai gali b\u016bti suasmeninti remiantis profiliu. Norint geriau suasmeninti skelbimus gali b\u016bti prid\u0117ta daugiau duomen\u0173."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Suasmenintas turinys","description":"Turinys gali b\u016bti suasmenintas remiantis profiliu. Norint geriau suasmeninti turin\u012f gali b\u016bti prid\u0117ta daugiau duomen\u0173."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Suasmeninto turinio pateikimas ir turinio vertinimas","description":"Turinys gali b\u016bti suasmenintas remiantis profiliu. Turinio veiksmingumas gali b\u016bti \u012fvertinamas."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Suasmeninto turinio pateikimas, turinio vertinimas ir auditorijos \u012f\u017evalgos","description":"Turinys gali b\u016bti suasmenintas remiantis profiliu. Turinio veiksmingumas gali b\u016bti \u012fvertinamas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Suasmenintas turinys ir turinio vertinimas","description":"Turinys gali b\u016bti suasmenintas remiantis profiliu. Norint geriau suasmeninti turin\u012f gali b\u016bti prid\u0117ta daugiau duomen\u0173. Turinio veiksmingumas gali b\u016bti \u012fvertinamas."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Suasmenintas turinys, turinio vertinimas ir auditorijos \u012f\u017evalgos","description":"Turinys gali b\u016bti suasmenintas remiantis profiliu. Norint geriau suasmeninti turin\u012f gali b\u016bti prid\u0117ta daugiau duomen\u0173. Turinio veiksmingumas gali b\u016bti \u012fvertinamas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Suasmenintas turinys, turinio vertinimas, auditorijos \u012f\u017evalgos ir produkto k\u016brimas.","description":"Turinys gali b\u016bti suasmenintas remiantis profiliu. Norint geriau suasmeninti turin\u012f gali b\u016bti prid\u0117ta daugiau duomen\u0173. Turinio veiksmingumas gali b\u016bti \u012fvertinamas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas. Duomenys gali b\u016bti naudojami pagerinti vartotojo patirt\u012f, sistemas ir programin\u0119 \u012frang\u0105"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Skelbimo ir turinio vertinimas, auditorijos \u012f\u017evalgos","description":"Skelbimo ir turinio veiksmingumas gali b\u016bti \u012fvertinamas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Skelbimo ir turinio vertinimas","description":"Skelbimo ir turinio veiksmingumas gali b\u016bti \u012fvertinamas."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Skelbimo vertinimas, auditorijos \u012f\u017evalgos","description":"Skelbimas gali b\u016bti \u012fvertintas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Skelbimo ir turinio vertinimas, auditorijos \u012f\u017evalgos ir produkto k\u016brimas","description":"Skelbimo ir turinio veiksmingumas gali b\u016bti \u012fvertinamas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas. Duomenys gali b\u016bti naudojami kurti ir pagerinti vartotojo patirt\u012f, sistemas ir programin\u0119 \u012frang\u0105. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Turinio vertinimas, auditorijos \u012f\u017evalgos ir produkto k\u016brimas","description":"Turinio veiksmingumas gali b\u016bti \u012fvertinamas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas. Duomenys gali b\u016bti naudojami kurti ir pagerinti vartotojo patirt\u012f, sistemas ir programin\u0119 \u012frang\u0105."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Turinio vertinimas ir produkto k\u016brimas","description":"Turinio veiksmingumas gali b\u016bti \u012fvertinamas. Duomenys gali b\u016bti naudojami kurti ir pagerinti vartotojo patirt\u012f, sistemas ir programin\u0119 \u012frang\u0105."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Suasmenint\u0173 skelbim\u0173 ir turinio pateikimas, skelbim\u0173 ir turinio vertinimas","description":"Skelbimai ir turinys gali b\u016bti suasmeninti remiantis profiliu. Skelbimo ir turinio veiksmingumas gali b\u016bti \u012fvertinamas."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Suasmenint\u0173 skelbim\u0173 ir turinio pateikimas, skelbim\u0173 ir turinio vertinimas ir auditorijos \u012f\u017evalgos","description":"Skelbimai ir turinys gali b\u016bti suasmeninti remiantis profiliu. Skelbimo ir turinio veiksmingumas gali b\u016bti \u012fvertinamas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas. Duomenys gali b\u016bti naudojami kurti ir pagerinti vartotojo patirt\u012f, sistemas ir programin\u0119 \u012frang\u0105."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Suasmenint\u0173 skelbim\u0173 ir turinio pateikimas, skelbimo ir turinio vertinimas","description":"Skelbimai ir turinys gali b\u016bti suasmeninti remiantis profiliu. Norint geriau suasmeninti skelbimus ir turin\u012f gali b\u016bti prid\u0117ta daugiau duomen\u0173. Skelbimo ir turinio veiksmingumas gali b\u016bti \u012fvertinamas."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Suasmeninti skelbimai ir turinys, skelbim\u0173 ir turinio vertinimas ir auditorijos \u012f\u017evalgos","description":"Skelbimai ir turinys gali b\u016bti suasmeninti remiantis profiliu. Norint geriau suasmeninti skelbimus ir turin\u012f gali b\u016bti prid\u0117ta daugiau duomen\u0173. Skelbimo ir turinio veiksmingumas gali b\u016bti \u012fvertinamas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Suasmeninti skelbimai ir turinio profilis","description":"Norint suasmeninti skelbimus ir turin\u012f gali b\u016bti prid\u0117ta daugiau duomen\u0173."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Suasmenint\u0173 skelbim\u0173 ir turinio pateikimas","description":"Skelbimai ir turinys gali b\u016bti suasmeninti remiantis profiliu."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Pagrindini\u0173 skelbim\u0173, reklamini\u0173 skelbim\u0173 ir turinio vertinimas, auditorijos \u012f\u017evalgos","description":"Gali b\u016bti pateikiami pagrindiniai reklaminiai skelbimai. Skelbimo ir turinio veiksmingumas gali b\u016bti \u012fvertinamas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Suasmenint\u0173 skelbim\u0173 pateikimas, suasmeninto turinio, skelbim\u0173 ir turinio vertinimas ir auditorijos \u012f\u017evalgos","description":"Skelbimai ir turinys gali b\u016bti suasmeninti remiantis profiliu. Norint geriau suasmeninti turin\u012f gali b\u016bti prid\u0117ta daugiau duomen\u0173. Skelbimo ir turinio veiksmingumas gali b\u016bti \u012fvertinamas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Suasmenint\u0173 skelbim\u0173 pateikimas, suasmeninto turinio, skelbimo ir turinio vertinimas, auditorijos \u012f\u017evalgos ir produkt\u0173 k\u016brimas","description":"Skelbimai ir turinys gali b\u016bti suasmeninti remiantis profiliu. Norint geriau suasmeninti turin\u012f gali b\u016bti prid\u0117ta daugiau duomen\u0173. Skelbimo ir turinio veiksmingumas gali b\u016bti \u012fvertinamas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas. Duomenys gali b\u016bti naudojami kurti ir pagerinti vartotojo patirt\u012f, sistemas ir programin\u0119 \u012frang\u0105."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Pagrindini\u0173 skelbim\u0173, suasmeninto turinio, skelbimo ir turinio vertinimas ir auditorijos \u012f\u017evalgos","description":"Gali b\u016bti pateikiami pagrindiniai reklaminiai skelbimai. Turinys gali b\u016bti suasmenintas remiantis profiliu. Norint geriau suasmeninti turin\u012f gali b\u016bti prid\u0117ta daugiau duomen\u0173. Skelbimo ir turinio veiksmingumas gali b\u016bti \u012fvertinamas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Pagrindini\u0173 skelbim\u0173, suasmeninto turinio, skelbimo ir turinio vertinimas, auditorijos \u012f\u017evalgos ir produkt\u0173 k\u016brimas","description":"Gali b\u016bti pateikiami pagrindiniai reklaminiai skelbimai. Turinys gali b\u016bti suasmenintas remiantis profiliu. Norint geriau suasmeninti turin\u012f gali b\u016bti prid\u0117ta daugiau duomen\u0173. Skelbimo ir turinio veiksmingumas gali b\u016bti \u012fvertinamas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas. Duomenys gali b\u016bti naudojami kurti ir pagerinti vartotojo patirt\u012f, sistemas ir programin\u0119 \u012frang\u0105."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Pagrindini\u0173 skelbim\u0173, suasmeninto turinio ir turinio vertinimas, auditorijos \u012f\u017evalgos","description":"Gali b\u016bti pateikiami pagrindiniai reklaminiai skelbimai. Turinys gali b\u016bti suasmenintas remiantis profiliu. Norint geriau suasmeninti turin\u012f gali b\u016bti prid\u0117ta daugiau duomen\u0173. Skelbimo ir turinio veiksmingumas gali b\u016bti \u012fvertinamas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Pagrindini\u0173 skelbim\u0173, suasmeninto turinio ir turinio vertinimas, auditorijos \u012f\u017evalgos ir produkt\u0173 k\u016brimas","description":"Gali b\u016bti pateikiami pagrindiniai reklaminiai skelbimai. Turinys gali b\u016bti suasmenintas remiantis profiliu. Norint geriau suasmeninti turin\u012f gali b\u016bti prid\u0117ta daugiau duomen\u0173. Turinio veiksmingumas gali b\u016bti \u012fvertinamas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas. Duomenys gali b\u016bti naudojami kurti ir pagerinti vartotojo patirt\u012f, sistemas ir programin\u0119 \u012frang\u0105."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Pagrindini\u0173 skelbim\u0173, suasmeninto turinio ir skelbimo vertinimas","description":"Gali b\u016bti pateikiami pagrindiniai reklaminiai skelbimai. Turinys gali b\u016bti suasmenintas remiantis profiliu. Norint geriau suasmeninti turin\u012f gali b\u016bti prid\u0117ta daugiau duomen\u0173. Skelbimo veiksmingumas gali b\u016bti \u012fvertintas."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Pagrindini\u0173 skelbim\u0173, suasmeninto turinio ir skelbimo vertinimas ir produkt\u0173 k\u016brimas","description":"Gali b\u016bti pateikiami pagrindiniai reklaminiai skelbimai. Turinys gali b\u016bti suasmenintas remiantis profiliu. Norint geriau suasmeninti turin\u012f gali b\u016bti prid\u0117ta daugiau duomen\u0173. Skelbimo veiksmingumas gali b\u016bti \u012fvertintas. Duomenys gali b\u016bti naudojami kurti ir pagerinti vartotojo patirt\u012f, sistemas ir programin\u0119 \u012frang\u0105."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Suasmeninti skelbimai, skelbim\u0173 vertinimas ir produkt\u0173 k\u016brimas","description":"Skelbimai gali b\u016bti suasmeninti remiantis profiliu. Norint geriau suasmeninti skelbimus gali b\u016bti prid\u0117ta daugiau duomen\u0173. Skelbimo veiksmingumas gali b\u016bti \u012fvertintas. Duomenys gali b\u016bti naudojami kurti ar pagerinti vartotojo patirt\u012f, sistemas ir programin\u0119 \u012frang\u0105."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Suasmeninti skelbimai, skelbim\u0173 vertinimas, auditorijos \u012f\u017evalgos ir produkt\u0173 k\u016brimas","description":"Skelbimai gali b\u016bti suasmeninti remiantis profiliu. Norint geriau suasmeninti skelbimus gali b\u016bti prid\u0117ta daugiau duomen\u0173. Skelbimo veiksmingumas gali b\u016bti \u012fvertintas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas. Duomenys gali b\u016bti naudojami kurti ar pagerinti vartotojo patirt\u012f, sistemas ir programin\u0119 \u012frang\u0105."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Suasmeninti skelbimai, skelbim\u0173 ir j\u0173 turinio vertinimas, auditorijos \u012f\u017evalgos ir produkt\u0173 k\u016brimas","description":"Skelbimai gali b\u016bti suasmeninti remiantis profiliu. Norint geriau suasmeninti skelbimus gali b\u016bti prid\u0117ta daugiau duomen\u0173. Skelbimo ir turinio veiksmingumas gali b\u016bti \u012fvertinamas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas. Duomenys gali b\u016bti naudojami kurti ar pagerinti vartotojo patirt\u012f, sistemas ir programin\u0119 \u012frang\u0105."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Suasmeninti skelbimai, suasmeninto turinio pateikimas, skelbimo ir turinio vertinimas, auditorijos \u012f\u017evalgos ir produkt\u0173 k\u016brimas","description":"Skelbimai ir turinys gali b\u016bti suasmeninti remiantis profiliu. Norint geriau suasmeninti skelbimus gali b\u016bti prid\u0117ta daugiau duomen\u0173. Skelbimo ir turinio veiksmingumas gali b\u016bti \u012fvertinamas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas. Duomenys gali b\u016bti naudojami kurti ar pagerinti vartotojo patirt\u012f, sistemas ir programin\u0119 \u012frang\u0105."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Suasmeninti skelbimai ir turinys, skelbim\u0173 ir j\u0173 turinio vertinimas, auditorijos \u012f\u017evalgos ir produkt\u0173 k\u016brimas","description":"Skelbimai ir turinys gali b\u016bti suasmeninti remiantis profiliu. Norint geriau suasmeninti skelbimus ir turin\u012f gali b\u016bti prid\u0117ta daugiau duomen\u0173. Skelbimo ir turinio veiksmingumas gali b\u016bti \u012fvertinamas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas. Duomenys gali b\u016bti naudojami kurti ar pagerinti vartotojo patirt\u012f, sistemas ir programin\u0119 \u012frang\u0105."}}} \ No newline at end of file +{"vendorListVersion":94,"lastUpdated":"2021-06-10T16:44:00Z","purposes":{"1":{"id":1,"name":"Laikyti ir (arba) gauti informacij\u0105 \u012frenginyje","description":"Slapukai, \u012frengini\u0173 identifikatoriai ar kita informacija gali b\u016bti laikoma ir prieinama j\u016bs\u0173 \u012frenginyje jums nurodytais tikslais.","descriptionLegal":"Tiek\u0117jai gali:\n* Laikyti ir (arba) prieiti \u012frenginyje toki\u0105 informacij\u0105 kaip slapukai ir vartotojui suteikti \u012frengini\u0173 identifikatoriai.\n"},"2":{"id":2,"name":"Pasirinkti pagrindinius reklaminius skelbimus","description":"Reklaminiai skelbimai gali b\u016bti jums rodomi atsi\u017evelgiant \u012f j\u016bs\u0173 per\u017ei\u016brim\u0105 turin\u012f, naudojam\u0105 program\u0117l\u0119, j\u016bs\u0173 apytiksl\u0119 buvimo viet\u0105 arba j\u016bs\u0173 \u012frenginio tip\u0105.","descriptionLegal":"Nor\u0117dami pasirinkti pagrindinius reklaminius skelbimus tiek\u0117jai gali:\n* Remtis tikralaike informacija apie kontekst\u0105, kuriame reklaminis skelbimas bus rodomas, parodyti skelbim\u0105, \u012fskaitant informacij\u0105 apie turin\u012f ir \u012frengin\u012f, tok\u012f kaip \u012frenginio tipas ir charakteristikos, vartotojo atstovas, URL, IP adresas \n* Naudokite vartotojo netikslius geografin\u0117s vietos duomenis.\n* Valdykite skelbim\u0173 rodymo vartotojui da\u017en\u012f.\n* Nustatykite skelbim\u0173 rodym\u0173 vartotojui sek\u0105.\n* Neleiskite skelbimo naudoti netinkamame redakciniame kontekste (nesaugiame prek\u0117s \u017eenklui)\nTiek\u0117jai negali:\n* Sukurti suasmenint\u0105 skelbim\u0173 profil\u012f, naudodami \u0161i\u0105 informacij\u0105 b\u016bsimiems skelbimams pasirinkti be atskiro teisinio pagrindo kaip suasmenint\u0105 skelbim\u0173 profil\u012f.\nPastaba. Netiksli rei\u0161kia, kad leid\u017eiama nurodyti apytiksl\u0119, ne ma\u017eesnio nei 500 metr\u0173 spindulio teritorijoje esan\u010di\u0105 buvimo viet\u0105.\n"},"3":{"id":3,"name":"Kurti suasmenint\u0105 reklamini\u0173 skelbim\u0173 profil\u012f","description":"Profilis gali b\u016bti sukurtas atsi\u017evelgiant \u012f jus ir j\u016bs\u0173 interesus, kad jums b\u016bt\u0173 rodomi asmeni\u0161kai jums pritaikyti ir aktual\u016bs skelbimai.","descriptionLegal":"Nor\u0117dami sukurti suasmenint\u0105 reklamini\u0173 skelbim\u0173 profil\u012f tiek\u0117jai gali:\n* Rinkti informacij\u0105 apie vartotoj\u0105, \u012fskaitant vartotojo veikl\u0105, interesus, demografin\u0119 informacij\u0105, buvimo viet\u0105, kad sukurt\u0173 arba redaguot\u0173 vartotojo profil\u012f, skirt\u0105 naudoti suasmenintuose reklaminiuose prane\u0161imuose.\n* Sujunkite \u0161i\u0105 informacij\u0105 su kita anks\u010diau surinkta informacija, \u012fskaitant i\u0161 vis\u0173 svetaini\u0173 ir program\u0173, kad sukurtum\u0117te ar redaguotum\u0117te vartotojo profil\u012f, skirt\u0105 naudoti suasmenintoje reklamoje."},"4":{"id":4,"name":"Pasirinkti suasmenintus skelbimus","description":"Suasmeninti skelbimai gali b\u016bti rodomi vadovaujantis sukurtu j\u016bs\u0173 profiliu.","descriptionLegal":"Nor\u0117dami pasirinkti suasmenintus skelbimus tiek\u0117jai gali:\n* Pasirinkti suasmenint\u0105 reklamin\u012f skelbim\u0105 remiantis vartotojo profiliu ir kitais istoriniais duomenimis, \u012fskaitant ankstesn\u0119 vartotojo veikl\u0105, interesus, jo apsilankymus svetain\u0117se arba naudojamas program\u0117les, vietoves ar demografin\u0119 informacij\u0105.\n"},"5":{"id":5,"name":"Sukurti suasmenint\u0105 turinio profil\u012f","description":"Profilis gali b\u016bti sukurtas atsi\u017evelgiant \u012f jus ir j\u016bs\u0173 interesus, kad jums b\u016bt\u0173 rodomas asmeni\u0161kai jums pritaikytas ir aktualus turinys.","descriptionLegal":"Nor\u0117dami sukurti suasmeninto turinio profil\u012f tiek\u0117jai gali:\n* Rinkti informacij\u0105 apie vartotoj\u0105, \u012fskaitant vartotojo veikl\u0105, interesus, duomenis apie jo apsilankymus svetain\u0117se ir naudojamas program\u0117les, demografin\u0119 informacij\u0105, buvimo viet\u0105, kad sukurt\u0173 arba redaguot\u0173 vartotojo profil\u012f suasmenintam turiniui.\n* Sujunkite \u0161i\u0105 informacij\u0105 su kita anks\u010diau surinkta informacija, \u012fskaitant i\u0161 vis\u0173 svetaini\u0173 ir program\u0173, kad sukurtum\u0117te ar redaguotum\u0117te vartotojo profil\u012f, skirt\u0105 naudoti turinio suasmeninimui."},"6":{"id":6,"name":"Pasirinkti suasmenint\u0105 turin\u012f","description":"Suasmenintas turinys gali b\u016bti rodomas vadovaujantis sukurtu j\u016bs\u0173 profiliu.","descriptionLegal":"Nor\u0117dami pasirinkti suasmenint\u0105 turin\u012f tiek\u0117jai gali:\n* Pasirinkti suasmenint\u0105 turin\u012f remiantis vartotojo profiliu ir kitais istoriniais duomenimis, \u012fskaitant ankstesn\u0119 vartotojo veikl\u0105, interesus, jo apsilankymus svetain\u0117se arba naudojamas program\u0117les ar demografin\u0119 informacij\u0105.\n"},"7":{"id":7,"name":"Vertinti skelbimo veiksmingum\u0105","description":"Skelbim\u0173, kuriuos matote ir su kuriais s\u0105veikaujate, veiksmingumas ir efektyvumas gali b\u016bti \u012fvertintas.","descriptionLegal":"Nor\u0117dami \u012fvertinti skelbimo veiksmingum\u0105 teik\u0117jai gali:\n* Vertinti, ar ir kokiu b\u016bdu skelbimas buvo pateiktas vartotojui, ir ar vartotojas \u012f j\u012f atsiliep\u0117\n* Teikti ataskaitas apie skelbimus, \u012fskaitant j\u0173 efektyvum\u0105 ir veiksmingum\u0105\n* Teikti ataskaitas apie vartotojus, kurie atsiliep\u0117 \u012f skelbimus, naudodamiesi duomenimis, surinktais vartotojui s\u0105veikaujant su \u0161iuo skelbimu\n* Teikti prane\u0161imus leid\u0117jams apie j\u0173 teritorijoje rodomus skelbimus\n* Vertinti, ar skelbimas atitinka redakcin\u0117s aplinkos kontekst\u0105 (yra saugus prek\u0117s \u017eenklui) ir yra jam tinkamas\n* Nustatyti procentin\u0119 skelbimo dal\u012f, kuri\u0105 galima buvo pamatyti ir skelbimo per\u017ei\u016bros trukm\u0119 \nTiek\u0117jai negali:\n* Taikyti vertinimu ar pana\u0161iai gautus auditorijos \u012f\u017evalg\u0173 duomenis skelbim\u0173 vertinimo duomenims, netur\u0117dami teisinio pagrindo taikyti rinkos tyrim\u0173 duomenis auditorijos \u012f\u017evalgoms gauti.\n"},"8":{"id":8,"name":"Vertinti turinio veiksmingum\u0105","description":"Turinio, kur\u012f matote ir su kuriuo s\u0105veikaujate veiksmingumas ir efektyvumas gali b\u016bti \u012fvertintas.","descriptionLegal":"Nor\u0117dami \u012fvertinti turinio veiksmingum\u0105 teik\u0117jai gali:\n* \u012evertinti ir informuoti, kaip turinys buvo pateiktas vartotojams ir kaip jie su juo s\u0105veikavo.\n* Remiantis tiesiogiai \u012fvertinama ar \u017einoma informacija pateikti ataskaitas, kaip vartotojai s\u0105veikavo su turiniu\nTiek\u0117jai negali:\n* Vertinti, ar ir kokiu b\u016bdu skelbimai (\u012fskaitant vartotojo platformai pritaikytus skelbimus) buvo pateikti vartotojui, ir ar vartotojas \u012f juos atsiliep\u0117.\n* Taikyti vertinimu ar pana\u0161iai gautus auditorijos \u012f\u017evalg\u0173 duomenis skelbim\u0173 vertinimo duomenims, netur\u0117dami atskiro teisinio pagrindo taikyti rinkos tyrim\u0173 duomenis auditorijos \u012f\u017evalgoms gauti.\n"},"9":{"id":9,"name":"Taikyti rinkos tyrimus auditorijos \u012f\u017evalgoms gauti","description":"Rinkos tyrim\u0173 duomenys gali b\u016bti naudojami siekiant su\u017einoti daugiau apie auditorijas, kurios lankosi svetain\u0117se / program\u0117l\u0117se, ar jas per\u017ei\u016bri.","descriptionLegal":"Nor\u0117dami taikyti rinkos tyrim\u0173 duomenis auditorijos \u012f\u017evalgoms gauti tiek\u0117jai gali:\n* Teikti apibendrintas ataskaitas reklamos tiek\u0117jams ar j\u0173 atstovams apie auditorijas, kurias pasiekia j\u0173 skelbimai, remdamiesi vertinimu ar pana\u0161iai gautomis \u012f\u017evalgomis.\n* Teikti apibendrintas ataskaitas leid\u0117jams apie auditorijas, kurioms toks turinys ir (arba) skelbimas buvo skirti, arba kurios s\u0105veikavo su turiniu ir (arba) skelbimais j\u0173 \u012fmon\u0117se, taikydamos vertinimu ar pana\u0161iai gautomis \u012f\u017evalgomis. \n* Susieti ne internetu gautus duomenis su interneto vartotojais, siekdami atlikti rinkos tyrimus, siekiant gauti auditorijos \u012f\u017evalgas, jeigu tiek\u0117jai yra deklarav\u0119, kad jie gali derinti ir jungti ne interneto duomen\u0173 \u0161altinius (1-a funkcija)\nTiek\u0117jai negali: \n* Vertinti skelbim\u0173, kurie buvo pateikti konkre\u010diam vartotojui, arba su kuriais toks vartotojas s\u0105veikavo, veiksmingumo ir efektyvumo, netur\u0117dami teisinio pagrindo vertinti skelbim\u0173 veiksmingum\u0105.\n* Vertinti, koks turinys buvo pateiktas konkre\u010diam vartotojui ir kaip jis su tokiu turiniu s\u0105veikavo, netur\u0117dami teisinio pagrindo vertinti turinio veiksmingumo.\n"},"10":{"id":10,"name":"Kurti ir tobulinti produktus","description":"J\u016bs\u0173 duomenys gali b\u016bti naudojami esamoms sistemoms ir programinei \u012frangai tobulinti ir naujiems produktams kurti.","descriptionLegal":"Nor\u0117dami kurti naujus ir tobulinti esamus produktus tiek\u0117jai gali:\n* Naudoti informacij\u0105 siekiant esamus produktus patobulinti naujomis funkcijomis arba kurti naujus produktus\n* Sukurti naujus modelius ir algoritmus ma\u0161ininio mokymosi priemon\u0117mis\nTiek\u0117jai negali:\n* Atlikti bet koki\u0173 kit\u0173 pagal \u0161\u012f tiksl\u0105 leid\u017eiam\u0173 duomen\u0173 tvarkymo operacij\u0173 siekdami kito tikslo\n"}},"specialPurposes":{"1":{"id":1,"name":"U\u017etikrinti saugum\u0105, u\u017ekirti keli\u0105 apgaul\u0117ms ir atlikti derinimo veiksmus","description":"J\u016bs\u0173 duomenys gali b\u016bti naudojami apgaulingai veiklai steb\u0117ti ir u\u017ekirsti jai keli\u0105, ir u\u017etikrinti, kad sistemos ir procesai veikt\u0173 tinkamai ir saugiai.","descriptionLegal":"Siekdami u\u017etikrinti saugum\u0105, u\u017ekirti keli\u0105 apgaul\u0117ms ir atlikti derinimo veiksmus tiek\u0117jai gali:\n* U\u017etikrinti, kad duomenys b\u016bt\u0173 saugiai perduoti \n* Nustatyti kenk\u0117ji\u0161k\u0105, apgauling\u0105, netinkam\u0105 ar neteis\u0117t\u0105 veikl\u0105 ir jai u\u017ekirsti keli\u0105.\n* U\u017etikrinti teising\u0105 ir veiksming\u0105 sistem\u0173 ir proces\u0173 veikim\u0105, taip pat vykdyti sistem\u0173 ir proces\u0173 veikimo, siekiant leid\u017eiam\u0173 tiksl\u0173 steb\u0117senos ir tobulinimo, veiksmus\nTiek\u0117jai negali:\n* Atlikti bet koki\u0173 kit\u0173 pagal \u0161\u012f tiksl\u0105 leid\u017eiam\u0173 duomen\u0173 tvarkymo operacij\u0173 siekdami kito tikslo\nPastaba. Duomenys, surinkti ir naudojami siekiant u\u017etikrinti saugum\u0105, u\u017ekirsti keli\u0105 suk\u010diavimui ir derinimo priemon\u0117ms, gali apimti automati\u0161kai siun\u010diamas \u012frenginio charakteristikas identifikavimui, tikslius geografin\u0117s pad\u0117ties duomenis ir duomenis, gautus aktyviai nuskaitant \u012frenginio charakteristikas, kad b\u016bt\u0173 galima juos identifikuoti, neatskleid\u017eiant ir (arba) neprisijungus.\n"},"2":{"id":2,"name":"Techni\u0161kai pateikti turin\u012f arba skelbimus","description":"J\u016bs\u0173 \u012frenginys gali priimti ir gauti informacij\u0105, kuri jums leist\u0173 matyti skelbimus ir turin\u012f ir su jais s\u0105veikauti","descriptionLegal":"Nor\u0117dami pateikti informacij\u0105 ir atsiliepti \u012f technines u\u017eklausas tiek\u0117jai gali:\n* Naudoti vartotojo IP adres\u0105 pateikti skelbim\u0105 internetu\n* Reaguoti \u012f vartotojo s\u0105veikavim\u0105 su skelbimu nukreipdami vartotoj\u0105 \u012f \u012f\u0117jimo tinklalap\u012f\n* Naudoti vartotojo IP adres\u0105 pateikti turin\u012f internetu\n* Reaguoti \u012f vartotojo s\u0105veikavim\u0105 su turiniu nukreipdami vartotoj\u0105 \u012f \u012f\u0117jimo tinklalap\u012f\n* Naudoti informacij\u0105 apie \u012frenginio tip\u0105 ir jo charakteristikas skelbimams ir turiniui pateikti, pavyzd\u017eiui, pateikti tinkamo dyd\u017eio k\u016brybin\u012f ar vaizdo \u012fra\u0161\u0105 \u012frenginio palaikomu formatu\nTiek\u0117jai negali:\n* Atlikti bet koki\u0173 kit\u0173 pagal \u0161\u012f tiksl\u0105 leid\u017eiam\u0173 duomen\u0173 tvarkymo operacij\u0173 siekdami kito tikslo\n"}},"features":{"1":{"id":1,"name":"Derinti ir jungti ne interneto duomen\u0173 \u0161altinius","description":"Ne interneto duomen\u0173 \u0161altini\u0173 duomenys gali b\u016bti derinami su j\u016bs\u0173 veiklos internete duomenimis padedant pasiekti vieno ar daugiau tiksl\u0173.","descriptionLegal":"Tiek\u0117jai gali: \n* Jungti ne internetu gautus duomenis su internetu gautais duomenimis padedant pasiekti vieno ar daugiau tiksl\u0173 ar speciali\u0173j\u0173 tiksl\u0173.\n"},"2":{"id":2,"name":"Susieti skirtingus \u012frenginius","description":"Gali b\u016bti nustatyta, kad skirtingi \u012frenginiai priklauso jums ar j\u016bs\u0173 b\u016bstui siekiant vieno ar keli\u0173 tiksl\u0173.","descriptionLegal":"Tiek\u0117jai gali:\n* Deterministi\u0161kai nustatyti, kad du ar daugiau \u012frengini\u0173 priklauso tam pa\u010diam vartotojui arba b\u016bstui\n* Tikimybi\u0161kai nustatyti, kad du ar daugiau \u012frengini\u0173 priklauso tam pa\u010diam vartotojui arba b\u016bstui\n* Aktyviai skenuoti \u012frenginio identifikavimo charakteristikas tikimybiniam identifikavimui, jeigu vartotojas yra leid\u0119s tiek\u0117jams aktyviai skenuoti \u012frenginio charakteristikas identifikavimo tikslais (2-a specialioji funkcija)\n"},"3":{"id":3,"name":"Gauti ir naudoti automati\u0161kai siun\u010diamas \u012frenginio charakteristikas identifikavimui","description":"J\u016bs\u0173 \u012frenginys gali b\u016bti atskirtas nuo kit\u0173 \u012frengini\u0173 pagal informacij\u0105, kuri\u0105 jis automati\u0161kai siun\u010dia, pvz., IP adres\u0105 ar nar\u0161ykl\u0117s tip\u0105.","descriptionLegal":"Tiek\u0117jai gali:\n* Sukurti identifikatori\u0173, naudodamiesi duomenimis, automati\u0161kai renkamais i\u0161 \u012frenginio, tam tikroms charakteristikoms, pvz., IP adresui, vartotojo atstovo eilutei.\n* Tok\u012f identifikatori\u0173 naudoti bandant pakartotinai identifikuoti \u012frengin\u012f.\nTiek\u0117jai negali:\n* Sukurti identifikatori\u0173, naudodami duomenis, surinktus aktyviai skenuojant \u012frengin\u012f d\u0117l konkre\u010di\u0173 jo charakteristik\u0173, pvz., \u012fdiegt\u0173 \u0161rift\u0173 ar ekrano skiriamosios gebos, vartotojui neturint galimyb\u0117s atskirai atsisakyti aktyviai skenuoti \u012frengin\u012f d\u0117l konkre\u010di\u0173 jo charakteristik\u0173.\n* Tok\u012f identifikatori\u0173 naudoti \u012frenginiui pakartotinai identifikuoti.\n"}},"specialFeatures":{"1":{"id":1,"name":"Naudoti tikslius geografin\u0117s vietos duomenis","description":"J\u016bs\u0173 tiksl\u016bs geografin\u0117s vietos duomenys gali b\u016bti naudojami siekiant vieno ar daugiau tiksl\u0173. Tai rei\u0161kia, kad j\u016bs\u0173 buvimo vieta gali b\u016bti nustatyta keli\u0173 metr\u0173 tikslumu.","descriptionLegal":"Tiek\u0117jai gali:\n* Rinkti ir tvarkyti tikslius geografin\u0117s vietos duomenis siekdami vieno ar daugiau tiksl\u0173.\nPastaba. Tiksl\u016bs geografin\u0117s vietos duomenys rei\u0161kia, kad n\u0117ra joki\u0173 naudojo vietos tikslumo apribojim\u0173; vieta gali b\u016bti nustatoma keli\u0173 metr\u0173 tikslumu.\nPastaba. Tam tikras \u0161i\u0173 duomen\u0173 naudojimas apsaugai ar suk\u010diavimo prevencijai yra atskirai apra\u0161ytas ir nereikalaujama atskiro vartotojo sprendimo naudoti tikslius geografin\u0117s pad\u0117ties duomenis.\n"},"2":{"id":2,"name":"Aktyviai skenuoti \u012frenginio charakteristikas identifikavimo tikslais","description":"J\u016bs\u0173 \u012frenginys gali b\u016bti identifikuotas remiantis j\u016bs\u0173 \u012frenginio unikali\u0173 charakteristik\u0173 derinio skenavimo duomenimis.","descriptionLegal":"Tiek\u0117jai gali:\n* Sukurti identifikatori\u0173, naudodami duomenis, surinktus aktyviai skenuojant \u012frengin\u012f d\u0117l konkre\u010di\u0173 jo charakteristik\u0173, pvz., \u012fdiegt\u0173 \u0161rift\u0173 ar ekrano skiriamosios gebos. \n* Tok\u012f identifikatori\u0173 naudoti \u012frenginiui pakartotinai identifikuoti.\nPastaba. Tam tikras \u0161i\u0173 duomen\u0173 naudojimas apsaugai ar suk\u010diavimui reglamentuotas atskirai ir nereikalauja atskiro vartotojo sprendimo aktyviai skenuoti \u012frenginio charakteristikas identifikavimo tikslais.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Tiksl\u016bs geografin\u0117s vietos duomenys ir identifikavimas skenuojant \u012frengin\u012f","description":"Tiksl\u016bs geografin\u0117s vietos duomenys ir informacija apie \u012frenginio charakteristikas gali b\u016bti naudojami."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Pagrindiniai skelbimai ir skelbim\u0173 vertinimas","description":"Gali b\u016bti pateikiami pagrindiniai reklaminiai skelbimai. Skelbimo veiksmingumas gali b\u016bti \u012fvertintas."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Suasmeninti skelbimai","description":"Skelbimai gali b\u016bti suasmeninti remiantis profiliu. Norint geriau suasmeninti skelbimus gali b\u016bti prid\u0117ta daugiau duomen\u0173."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Pagrindiniai skelbimai ir skelbim\u0173 vertinimas","description":"Gali b\u016bti pateikiami pagrindiniai reklaminiai skelbimai. Skelbimo veiksmingumas gali b\u016bti \u012fvertintas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Pagrindiniai skelbimai, suasmenint\u0173 skelbim\u0173 profilis ir skelbim\u0173 veiksmingumo vertinimas","description":"Gali b\u016bti pateikiami pagrindiniai reklaminiai skelbimai. Norint geriau suasmeninti skelbimus gali b\u016bti prid\u0117ta daugiau duomen\u0173. Skelbimo veiksmingumas gali b\u016bti \u012fvertintas."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Suasmenint\u0173 skelbim\u0173 pateikimas ir skelbim\u0173 vertinimas","description":"Skelbimai gali b\u016bti suasmeninti remiantis profiliu. Skelbimo veiksmingumas gali b\u016bti \u012fvertintas."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Suasmenint\u0173 skelbim\u0173 pateikimas ir skelbim\u0173 vertinimas ir auditorijos \u012f\u017evalgos","description":"Skelbimai gali b\u016bti suasmeninti remiantis profiliu. Skelbimo veiksmingumas gali b\u016bti \u012fvertintas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Suasmeninti skelbimai ir skelbim\u0173 vertinimas","description":"Skelbimai gali b\u016bti suasmeninti remiantis profiliu. Norint geriau suasmeninti skelbimus gali b\u016bti prid\u0117ta daugiau duomen\u0173. Skelbimo veiksmingumas gali b\u016bti \u012fvertintas."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Suasmeninti skelbimai, skelbim\u0173 vertinimas ir auditorijos \u012f\u017evalgos","description":"Skelbimai gali b\u016bti suasmeninti remiantis profiliu. Norint geriau suasmeninti skelbimus gali b\u016bti prid\u0117ta daugiau duomen\u0173. Skelbimo veiksmingumas gali b\u016bti \u012fvertintas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Suasmeninto skelbimo profilis ir pateikimas","description":"Skelbimai gali b\u016bti suasmeninti remiantis profiliu. Norint geriau suasmeninti skelbimus gali b\u016bti prid\u0117ta daugiau duomen\u0173."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Suasmenintas turinys","description":"Turinys gali b\u016bti suasmenintas remiantis profiliu. Norint geriau suasmeninti turin\u012f gali b\u016bti prid\u0117ta daugiau duomen\u0173."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Suasmeninto turinio pateikimas ir turinio vertinimas","description":"Turinys gali b\u016bti suasmenintas remiantis profiliu. Turinio veiksmingumas gali b\u016bti \u012fvertinamas."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Suasmeninto turinio pateikimas, turinio vertinimas ir auditorijos \u012f\u017evalgos","description":"Turinys gali b\u016bti suasmenintas remiantis profiliu. Turinio veiksmingumas gali b\u016bti \u012fvertinamas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Suasmenintas turinys ir turinio vertinimas","description":"Turinys gali b\u016bti suasmenintas remiantis profiliu. Norint geriau suasmeninti turin\u012f gali b\u016bti prid\u0117ta daugiau duomen\u0173. Turinio veiksmingumas gali b\u016bti \u012fvertinamas."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Suasmenintas turinys, turinio vertinimas ir auditorijos \u012f\u017evalgos","description":"Turinys gali b\u016bti suasmenintas remiantis profiliu. Norint geriau suasmeninti turin\u012f gali b\u016bti prid\u0117ta daugiau duomen\u0173. Turinio veiksmingumas gali b\u016bti \u012fvertinamas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Suasmenintas turinys, turinio vertinimas, auditorijos \u012f\u017evalgos ir produkto k\u016brimas.","description":"Turinys gali b\u016bti suasmenintas remiantis profiliu. Norint geriau suasmeninti turin\u012f gali b\u016bti prid\u0117ta daugiau duomen\u0173. Turinio veiksmingumas gali b\u016bti \u012fvertinamas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas. Duomenys gali b\u016bti naudojami pagerinti vartotojo patirt\u012f, sistemas ir programin\u0119 \u012frang\u0105"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Skelbimo ir turinio vertinimas, auditorijos \u012f\u017evalgos","description":"Skelbimo ir turinio veiksmingumas gali b\u016bti \u012fvertinamas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Skelbimo ir turinio vertinimas","description":"Skelbimo ir turinio veiksmingumas gali b\u016bti \u012fvertinamas."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Skelbimo vertinimas, auditorijos \u012f\u017evalgos","description":"Skelbimas gali b\u016bti \u012fvertintas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Skelbimo ir turinio vertinimas, auditorijos \u012f\u017evalgos ir produkto k\u016brimas","description":"Skelbimo ir turinio veiksmingumas gali b\u016bti \u012fvertinamas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas. Duomenys gali b\u016bti naudojami kurti ir pagerinti vartotojo patirt\u012f, sistemas ir programin\u0119 \u012frang\u0105. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Turinio vertinimas, auditorijos \u012f\u017evalgos ir produkto k\u016brimas","description":"Turinio veiksmingumas gali b\u016bti \u012fvertinamas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas. Duomenys gali b\u016bti naudojami kurti ir pagerinti vartotojo patirt\u012f, sistemas ir programin\u0119 \u012frang\u0105."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Turinio vertinimas ir produkto k\u016brimas","description":"Turinio veiksmingumas gali b\u016bti \u012fvertinamas. Duomenys gali b\u016bti naudojami kurti ir pagerinti vartotojo patirt\u012f, sistemas ir programin\u0119 \u012frang\u0105."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Suasmenint\u0173 skelbim\u0173 ir turinio pateikimas, skelbim\u0173 ir turinio vertinimas","description":"Skelbimai ir turinys gali b\u016bti suasmeninti remiantis profiliu. Skelbimo ir turinio veiksmingumas gali b\u016bti \u012fvertinamas."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Suasmenint\u0173 skelbim\u0173 ir turinio pateikimas, skelbim\u0173 ir turinio vertinimas ir auditorijos \u012f\u017evalgos","description":"Skelbimai ir turinys gali b\u016bti suasmeninti remiantis profiliu. Skelbimo ir turinio veiksmingumas gali b\u016bti \u012fvertinamas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas. Duomenys gali b\u016bti naudojami kurti ir pagerinti vartotojo patirt\u012f, sistemas ir programin\u0119 \u012frang\u0105."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Suasmenint\u0173 skelbim\u0173 ir turinio pateikimas, skelbimo ir turinio vertinimas","description":"Skelbimai ir turinys gali b\u016bti suasmeninti remiantis profiliu. Norint geriau suasmeninti skelbimus ir turin\u012f gali b\u016bti prid\u0117ta daugiau duomen\u0173. Skelbimo ir turinio veiksmingumas gali b\u016bti \u012fvertinamas."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Suasmeninti skelbimai ir turinys, skelbim\u0173 ir turinio vertinimas ir auditorijos \u012f\u017evalgos","description":"Skelbimai ir turinys gali b\u016bti suasmeninti remiantis profiliu. Norint geriau suasmeninti skelbimus ir turin\u012f gali b\u016bti prid\u0117ta daugiau duomen\u0173. Skelbimo ir turinio veiksmingumas gali b\u016bti \u012fvertinamas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Suasmeninti skelbimai ir turinio profilis","description":"Norint suasmeninti skelbimus ir turin\u012f gali b\u016bti prid\u0117ta daugiau duomen\u0173."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Suasmenint\u0173 skelbim\u0173 ir turinio pateikimas","description":"Skelbimai ir turinys gali b\u016bti suasmeninti remiantis profiliu."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Pagrindini\u0173 skelbim\u0173, reklamini\u0173 skelbim\u0173 ir turinio vertinimas, auditorijos \u012f\u017evalgos","description":"Gali b\u016bti pateikiami pagrindiniai reklaminiai skelbimai. Skelbimo ir turinio veiksmingumas gali b\u016bti \u012fvertinamas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Suasmenint\u0173 skelbim\u0173 pateikimas, suasmeninto turinio, skelbim\u0173 ir turinio vertinimas ir auditorijos \u012f\u017evalgos","description":"Skelbimai ir turinys gali b\u016bti suasmeninti remiantis profiliu. Norint geriau suasmeninti turin\u012f gali b\u016bti prid\u0117ta daugiau duomen\u0173. Skelbimo ir turinio veiksmingumas gali b\u016bti \u012fvertinamas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Suasmenint\u0173 skelbim\u0173 pateikimas, suasmeninto turinio, skelbimo ir turinio vertinimas, auditorijos \u012f\u017evalgos ir produkt\u0173 k\u016brimas","description":"Skelbimai ir turinys gali b\u016bti suasmeninti remiantis profiliu. Norint geriau suasmeninti turin\u012f gali b\u016bti prid\u0117ta daugiau duomen\u0173. Skelbimo ir turinio veiksmingumas gali b\u016bti \u012fvertinamas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas. Duomenys gali b\u016bti naudojami kurti ir pagerinti vartotojo patirt\u012f, sistemas ir programin\u0119 \u012frang\u0105."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Pagrindini\u0173 skelbim\u0173, suasmeninto turinio, skelbimo ir turinio vertinimas ir auditorijos \u012f\u017evalgos","description":"Gali b\u016bti pateikiami pagrindiniai reklaminiai skelbimai. Turinys gali b\u016bti suasmenintas remiantis profiliu. Norint geriau suasmeninti turin\u012f gali b\u016bti prid\u0117ta daugiau duomen\u0173. Skelbimo ir turinio veiksmingumas gali b\u016bti \u012fvertinamas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Pagrindini\u0173 skelbim\u0173, suasmeninto turinio, skelbimo ir turinio vertinimas, auditorijos \u012f\u017evalgos ir produkt\u0173 k\u016brimas","description":"Gali b\u016bti pateikiami pagrindiniai reklaminiai skelbimai. Turinys gali b\u016bti suasmenintas remiantis profiliu. Norint geriau suasmeninti turin\u012f gali b\u016bti prid\u0117ta daugiau duomen\u0173. Skelbimo ir turinio veiksmingumas gali b\u016bti \u012fvertinamas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas. Duomenys gali b\u016bti naudojami kurti ir pagerinti vartotojo patirt\u012f, sistemas ir programin\u0119 \u012frang\u0105."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Pagrindini\u0173 skelbim\u0173, suasmeninto turinio ir turinio vertinimas, auditorijos \u012f\u017evalgos","description":"Gali b\u016bti pateikiami pagrindiniai reklaminiai skelbimai. Turinys gali b\u016bti suasmenintas remiantis profiliu. Norint geriau suasmeninti turin\u012f gali b\u016bti prid\u0117ta daugiau duomen\u0173. Skelbimo ir turinio veiksmingumas gali b\u016bti \u012fvertinamas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Pagrindini\u0173 skelbim\u0173, suasmeninto turinio ir turinio vertinimas, auditorijos \u012f\u017evalgos ir produkt\u0173 k\u016brimas","description":"Gali b\u016bti pateikiami pagrindiniai reklaminiai skelbimai. Turinys gali b\u016bti suasmenintas remiantis profiliu. Norint geriau suasmeninti turin\u012f gali b\u016bti prid\u0117ta daugiau duomen\u0173. Turinio veiksmingumas gali b\u016bti \u012fvertinamas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas. Duomenys gali b\u016bti naudojami kurti ir pagerinti vartotojo patirt\u012f, sistemas ir programin\u0119 \u012frang\u0105."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Pagrindini\u0173 skelbim\u0173, suasmeninto turinio ir skelbimo vertinimas","description":"Gali b\u016bti pateikiami pagrindiniai reklaminiai skelbimai. Turinys gali b\u016bti suasmenintas remiantis profiliu. Norint geriau suasmeninti turin\u012f gali b\u016bti prid\u0117ta daugiau duomen\u0173. Skelbimo veiksmingumas gali b\u016bti \u012fvertintas."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Pagrindini\u0173 skelbim\u0173, suasmeninto turinio ir skelbimo vertinimas ir produkt\u0173 k\u016brimas","description":"Gali b\u016bti pateikiami pagrindiniai reklaminiai skelbimai. Turinys gali b\u016bti suasmenintas remiantis profiliu. Norint geriau suasmeninti turin\u012f gali b\u016bti prid\u0117ta daugiau duomen\u0173. Skelbimo veiksmingumas gali b\u016bti \u012fvertintas. Duomenys gali b\u016bti naudojami kurti ir pagerinti vartotojo patirt\u012f, sistemas ir programin\u0119 \u012frang\u0105."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Suasmeninti skelbimai, skelbim\u0173 vertinimas ir produkt\u0173 k\u016brimas","description":"Skelbimai gali b\u016bti suasmeninti remiantis profiliu. Norint geriau suasmeninti skelbimus gali b\u016bti prid\u0117ta daugiau duomen\u0173. Skelbimo veiksmingumas gali b\u016bti \u012fvertintas. Duomenys gali b\u016bti naudojami kurti ar pagerinti vartotojo patirt\u012f, sistemas ir programin\u0119 \u012frang\u0105."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Suasmeninti skelbimai, skelbim\u0173 vertinimas, auditorijos \u012f\u017evalgos ir produkt\u0173 k\u016brimas","description":"Skelbimai gali b\u016bti suasmeninti remiantis profiliu. Norint geriau suasmeninti skelbimus gali b\u016bti prid\u0117ta daugiau duomen\u0173. Skelbimo veiksmingumas gali b\u016bti \u012fvertintas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas. Duomenys gali b\u016bti naudojami kurti ar pagerinti vartotojo patirt\u012f, sistemas ir programin\u0119 \u012frang\u0105."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Suasmeninti skelbimai, skelbim\u0173 ir j\u0173 turinio vertinimas, auditorijos \u012f\u017evalgos ir produkt\u0173 k\u016brimas","description":"Skelbimai gali b\u016bti suasmeninti remiantis profiliu. Norint geriau suasmeninti skelbimus gali b\u016bti prid\u0117ta daugiau duomen\u0173. Skelbimo ir turinio veiksmingumas gali b\u016bti \u012fvertinamas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas. Duomenys gali b\u016bti naudojami kurti ar pagerinti vartotojo patirt\u012f, sistemas ir programin\u0119 \u012frang\u0105."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Suasmeninti skelbimai, suasmeninto turinio pateikimas, skelbimo ir turinio vertinimas, auditorijos \u012f\u017evalgos ir produkt\u0173 k\u016brimas","description":"Skelbimai ir turinys gali b\u016bti suasmeninti remiantis profiliu. Norint geriau suasmeninti skelbimus gali b\u016bti prid\u0117ta daugiau duomen\u0173. Skelbimo ir turinio veiksmingumas gali b\u016bti \u012fvertinamas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas. Duomenys gali b\u016bti naudojami kurti ar pagerinti vartotojo patirt\u012f, sistemas ir programin\u0119 \u012frang\u0105."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Suasmeninti skelbimai ir turinys, skelbim\u0173 ir j\u0173 turinio vertinimas, auditorijos \u012f\u017evalgos ir produkt\u0173 k\u016brimas","description":"Skelbimai ir turinys gali b\u016bti suasmeninti remiantis profiliu. Norint geriau suasmeninti skelbimus ir turin\u012f gali b\u016bti prid\u0117ta daugiau duomen\u0173. Skelbimo ir turinio veiksmingumas gali b\u016bti \u012fvertinamas. Galima gauti \u012f\u017evalgas apie skelbimus ir turin\u012f ma\u010diusias auditorijas. Duomenys gali b\u016bti naudojami kurti ar pagerinti vartotojo patirt\u012f, sistemas ir programin\u0119 \u012frang\u0105."}}} \ No newline at end of file diff --git a/src/s1/config/2.0/purposes/purposes-lv.json b/src/s1/config/2.0/purposes/purposes-lv.json index 9483955d..16f53977 100644 --- a/src/s1/config/2.0/purposes/purposes-lv.json +++ b/src/s1/config/2.0/purposes/purposes-lv.json @@ -1 +1 @@ -{"vendorListVersion":79,"lastUpdated":"2021-02-25T16:36:21Z","purposes":{"1":{"id":1,"name":"Inform\u0101cijas ievieto\u0161ana ier\u012bc\u0113 un/vai piek\u013cuve tai","description":"M\u0113s varam ievietot j\u016bsu ier\u012bc\u0113 s\u012bkdatnes, ier\u012b\u010du identifikatorus un citu inform\u0101ciju un piek\u013c\u016bt tai jums izkl\u0101st\u012btajos nol\u016bkos.","descriptionLegal":"Pieg\u0101d\u0101t\u0101ji var:\n\u2022\tIevietot ier\u012bc\u0113 un piek\u013c\u016bt t\u0101dai inform\u0101cijai, k\u0101 s\u012bkdatn\u0113m un lietot\u0101jiem pie\u0161\u0137irtajiem ier\u012b\u010du identifikatoriem.\n"},"2":{"id":2,"name":"Pamata rekl\u0101mu atlase","description":"Rekl\u0101mas var tikt r\u0101d\u012btas, pamatojoties uz j\u016bsu apl\u016bkoto saturu lietotnes izmanto\u0161anas laik\u0101, j\u016bsu aptuveno atra\u0161an\u0101s vietu vai j\u016bsu ier\u012bces veidu.","descriptionLegal":"Lai atlas\u012btu pamata rekl\u0101mas, pieg\u0101d\u0101t\u0101ji var:\n* izmantot re\u0101llaika inform\u0101ciju par kontekstu, kur\u0101 tiks r\u0101d\u012bta rekl\u0101ma, lai r\u0101d\u012btu rekl\u0101mu, tostarp inform\u0101ciju par saturu un ier\u012bci, piem\u0113ram, ier\u012bces veidu un iesp\u0113j\u0101m, lietot\u0101ja a\u0123entu, t\u012bmek\u013ca adresi (URL) un IP adresi; \n* izmantot nekonkr\u0113tus lietot\u0101ja atra\u0161an\u0101s vietas datus;\n* kontrol\u0113t lietot\u0101jam r\u0101d\u012bto rekl\u0101mu bie\u017eumu;\n* noteikt sec\u012bbu, k\u0101d\u0101 rekl\u0101mas tiek r\u0101d\u012btas lietot\u0101jam;\n* nov\u0113rst rekl\u0101mu r\u0101d\u012b\u0161anu nepiem\u0113rot\u0101 redakcion\u0101l\u0101 (z\u012bmolam nedro\u0161\u0101) kontekst\u0101.\nPieg\u0101d\u0101t\u0101ji nevar:\n* izveidojiet personaliz\u0113tu rekl\u0101mu profilu, izmantojot \u0161o inform\u0101ciju n\u0101kotnes rekl\u0101mu izv\u0113lei bez atsevi\u0161\u0137a juridisk\u0101 pamata, lai izveidotu personaliz\u0113tu rekl\u0101mu profilu.\nIev\u0113rot labi, nekonkr\u0113ta atra\u0161an\u0101s vieta noz\u012bm\u0113, ka ir at\u013cauts att\u0113lot tikai aptuvenu atra\u0161an\u0101s vietu vismaz 500 metru r\u0101dius\u0101.\n"},"3":{"id":3,"name":"Personaliz\u0113ta rekl\u0101mu profila izveide","description":"Par jums un j\u016bsu interes\u0113m var tikt izveidots profils, lai r\u0101d\u012btu jums atbilsto\u0161as personaliz\u0113tas rekl\u0101mas.","descriptionLegal":"Lai izveidotu personaliz\u0113tu rekl\u0101mu profilu, pieg\u0101d\u0101t\u0101ji var:\n* Apkopot inform\u0101ciju par lietot\u0101ju, tostarp t\u0101 aktivit\u0101ti, interes\u0113m, demogr\u0101fisko inform\u0101ciju un atra\u0161an\u0101s vietu, lai izveidotu vai redi\u0123\u0113tu lietot\u0101ja profilu personaliz\u0113tu rekl\u0101mu r\u0101d\u012b\u0161anas nol\u016bk\u0101.\n* Apvienojiet \u0161o inform\u0101ciju ar citu iepriek\u0161 sav\u0101kto inform\u0101ciju, tostarp no vis\u0101m vietn\u0113m un lietotn\u0113m, lai izveidotu vai redi\u0123\u0113tu lietot\u0101ja profilu lieto\u0161anai personaliz\u0113t\u0101 rekl\u0101m\u0101.\n"},"4":{"id":4,"name":"Personaliz\u0113tu rekl\u0101mu atlase","description":"Jums var tikt r\u0101d\u012btas personaliz\u0113tas rekl\u0101mas, pamatojoties uz profilu, kas izveidots par jums.","descriptionLegal":"Lai atlas\u012btu personaliz\u0113tas rekl\u0101mas, pieg\u0101d\u0101t\u0101ji var:\n* atlas\u012bt personaliz\u0113tas rekl\u0101mas, pamatojoties uz lietot\u0101ja profilu vai citiem v\u0113sturiskajiem lietot\u0101ja datiem, tostarp lietot\u0101ja iepriek\u0161\u0113jo aktivit\u0101ti, interes\u0113m, viet\u0146u un lietot\u0146u apmekl\u0113jumiem, atra\u0161an\u0101s vietu un demogr\u0101fisko inform\u0101ciju.\n"},"5":{"id":5,"name":"Personaliz\u0113ta satura profila izveide","description":"Par jums un j\u016bsu interes\u0113m var tikt veidots profils, lai r\u0101d\u012btu jums atbilsto\u0161u personaliz\u0113tu saturu.","descriptionLegal":"Lai izveidotu personaliz\u0113ta satura profilu, pieg\u0101d\u0101t\u0101ji var:\n* iev\u0101kt inform\u0101ciju par lietot\u0101ju, tostarp t\u0101 aktivit\u0101ti, interes\u0113m, viet\u0146u un lietot\u0146u apmekl\u0113jumiem, demogr\u0101fisko inform\u0101ciju un atra\u0161an\u0101s vietu, lai izveidotu vai redi\u0123\u0113tu lietot\u0101ja profilu satura personaliz\u0113\u0161anas nol\u016bk\u0101.\n* Apvienojiet \u0161o inform\u0101ciju ar citu iepriek\u0161 sav\u0101kto inform\u0101ciju, tostarp no vis\u0101m vietn\u0113m un lietotn\u0113m, lai izveidotu vai redi\u0123\u0113tu lietot\u0101ja profilu izmanto\u0161anai satura personaliz\u0113\u0161anai."},"6":{"id":6,"name":"Personaliz\u0113ta satura atlase","description":"Jums var tikt r\u0101d\u012bts personaliz\u0113ts saturs, pamatojoties uz profilu, kas izveidots par jums.","descriptionLegal":"Lai atlas\u012btu personaliz\u0113tu saturu, pieg\u0101d\u0101t\u0101ji var:\n\u2022\tatlas\u012bt personaliz\u0113tu saturu, pamatojoties uz lietot\u0101ja profilu vai citiem v\u0113sturiskajiem lietot\u0101ja datiem, tostarp t\u0101 iepriek\u0161\u0113jo aktivit\u0101ti, interes\u0113m, viet\u0146u un lietot\u0146u apmekl\u0113jumiem, atra\u0161an\u0101s vietu un demogr\u0101fisko inform\u0101ciju.\n"},"7":{"id":7,"name":"Rekl\u0101mas efektivit\u0101tes nov\u0113rt\u0113\u0161ana","description":"Var tikt izv\u0113rt\u0113ta to rekl\u0101mu efektivit\u0101te un pan\u0101kumi, kuras jums tika att\u0113lotas vai ar kur\u0101m esat mijiedarbojies(-usies).","descriptionLegal":"Lai nov\u0113rt\u0113tu rekl\u0101mu efektivit\u0101ti, pieg\u0101d\u0101t\u0101ji var:\n* izv\u0113rt\u0113t, vai un k\u0101 lietot\u0101jam tika r\u0101d\u012btas rekl\u0101mas, k\u0101 ar\u012b vai un k\u0101 lietot\u0101js mijiedarboj\u0101s ar t\u0101m;\n* nodro\u0161in\u0101t p\u0101rskatus par rekl\u0101m\u0101m, tostarp to efektivit\u0101ti un pan\u0101kumiem;\n* sniegt p\u0101rskatus par lietot\u0101jiem, kuri mijiedarboj\u0101s ar rekl\u0101m\u0101m, izmantojot datus, kas ieg\u016bti, lietot\u0101jam mijiedarbojoties ar attiec\u012bgo rekl\u0101mu;\n* sniegt p\u0101rskatus public\u0113t\u0101jiem par sav\u0101 \u012bpa\u0161um\u0101 r\u0101d\u012btaj\u0101m rekl\u0101m\u0101m;\n* izv\u0113rt\u0113t, vai rekl\u0101ma tiek r\u0101d\u012bta piem\u0113rot\u0101 redakcion\u0101l\u0101 (z\u012bmolam dro\u0161\u0101) kontekst\u0101;\n* noteikt to rekl\u0101mas procentu\u0101lo da\u013cu, kuru bija iesp\u0113jams apskat\u012bt, k\u0101 ar\u012b \u0161\u012bs apskat\u012b\u0161anas iesp\u0113jas ilgumu. \nPieg\u0101d\u0101t\u0101ji nevar:\n* rekl\u0101mas izp\u0113tes datiem piem\u0113rot no lietot\u0101ju grup\u0101m vai taml\u012bdz\u012bgos veidos ieg\u016btu anal\u012btisko inform\u0101ciju par m\u0113r\u0137a grup\u0101m bez atsevi\u0161\u0137a juridiska pamatojuma izmantot tirgus p\u0113t\u012bjumus, lai veidotu m\u0113r\u0137a grupu izp\u0113tes.\n"},"8":{"id":8,"name":"Satura efektivit\u0101tes nov\u0113rt\u0113\u0161ana","description":"Var tikt izv\u0113rt\u0113ta t\u0101da satura efektivit\u0101te un sasniegumi, kur\u0161 jums ticis att\u0113lots vai ar kuru esat mijiedarbojies.","descriptionLegal":"Lai nov\u0113rt\u0113tu satura efektivit\u0101ti, pieg\u0101d\u0101t\u0101ji var:\n* izv\u0113rt\u0113t un iesniegt p\u0101rskatus par to, k\u0101 ticis nodro\u0161in\u0101ts saturs un k\u0101 ar to mijiedarbojas lietot\u0101ji;\n* iesniegt p\u0101rskatus, izmantojot izm\u0113r\u0101mu vai zin\u0101mu inform\u0101ciju par lietot\u0101jiem, kuri ir mijiedarboju\u0161ies ar saturu.\nPieg\u0101d\u0101t\u0101ji nevar:\n* izv\u0113rt\u0113t, vai un k\u0101 lietot\u0101jam tika nodro\u0161in\u0101tas rekl\u0101mas (tostarp viet\u0113j\u0101s rekl\u0101mas), k\u0101 ar\u012b vai un k\u0101 lietot\u0101js mijiedarboj\u0101s ar t\u0101m;\n* rekl\u0101mas izp\u0113tes datiem piem\u0113rot no lietot\u0101ju grup\u0101m vai taml\u012bdz\u012bgos veidos ieg\u016btu anal\u012btisko inform\u0101ciju par m\u0113r\u0137a grup\u0101m bez atsevi\u0161\u0137a juridiska pamatojuma izmantot tirgus p\u0113t\u012bjumus, lai veidotu m\u0113r\u0137a grupu izp\u0113tes.\n"},"9":{"id":9,"name":"Tirgus p\u0113t\u012bjumu izmanto\u0161ana anal\u012btisk\u0101s inform\u0101cijas veido\u0161anai par m\u0113r\u0137a grup\u0101m","description":"Var tikt veikta tirgus izp\u0113te, lai uzzin\u0101tu vair\u0101k par lietot\u0101ju grup\u0101m, kuras apmekl\u0113 vietnes/lietotnes un apl\u016bko rekl\u0101mas.","descriptionLegal":"Lai izmantotu tirgus izp\u0113tes anal\u012btisk\u0101s inform\u0101cijas apkopo\u0161anai par m\u0113r\u0137a grup\u0101m, pieg\u0101d\u0101t\u0101ji var:\n* sniegt rekl\u0101mdev\u0113jiem vai to p\u0101rst\u0101vjiem apkopotus p\u0101rskatus par m\u0113r\u0137auditorij\u0101m, kuras vi\u0146u rekl\u0101mas sasniedz, izmantojot no lietot\u0101ju grup\u0101m vai taml\u012bdz\u012bgos veidos ieg\u016btu anal\u012btisko inform\u0101ciju;\n* sniegt public\u0113t\u0101jiem apkopotus p\u0101rskatus par m\u0113r\u0137auditorij\u0101m, kur\u0101m to \u012bpa\u0161um\u0101 tika nodro\u0161in\u0101ts saturs vai kuras mijiedarboj\u0101s ar saturu un/vai rekl\u0101m\u0101m, izmantojot no lietot\u0101ju grup\u0101m vai taml\u012bdz\u012bgos veidos ieg\u016btu anal\u012btisko inform\u0101ciju; \n* apvienot bezsaistes datus ar tie\u0161saistes lietot\u0101ju tirgus izp\u0113tes nol\u016bkos, lai veidotu anal\u012btisko inform\u0101ciju par m\u0113r\u0137auditorij\u0101m, ja pieg\u0101d\u0101t\u0101ji ir pazi\u0146oju\u0161i par bezsaistes datu avotu savieto\u0161anu un kombin\u0113\u0161anu (1. Funkcija).\nPieg\u0101d\u0101t\u0101ji nevar: \n* nov\u0113rt\u0113t rekl\u0101mu veiktsp\u0113ju un efektivit\u0101ti, ar kuru konkr\u0113ts lietot\u0101js tika apkalpots vai mijiedarboj\u0101s, bez atsevi\u0161\u0137a juridiska pamata, lai nov\u0113rt\u0113tu rekl\u0101mas veiktsp\u0113ju;\n* nov\u0113rt\u0113t, k\u0101ds saturs bija r\u0101d\u012bts konkr\u0113tam lietot\u0101jam un k\u0101 tie mijiedarboj\u0101s ar attiec\u012bgo saturu, bez atsevi\u0161\u0137a juridiska pamata satura veiktsp\u0113jas noteik\u0161anai.\n"},"10":{"id":10,"name":"Produktu izstr\u0101d\u0101\u0161ana un uzlabo\u0161ana","description":"J\u016bsu dati var tikt izmantoti eso\u0161o sist\u0113mu un programmat\u016bras uzlabo\u0161anai un jaunu produktu izstr\u0101dei.","descriptionLegal":"Lai izstr\u0101d\u0101tu jaunus produktus un uzlabotu eso\u0161os, pieg\u0101d\u0101t\u0101ji var:\n* izmantot inform\u0101ciju, lai papildin\u0101tu eso\u0161os produktus ar jaun\u0101m funkcij\u0101m un izstr\u0101d\u0101tu jaunus produktus;\n* rad\u012bt jaunus mode\u013cus un algoritmus, apm\u0101cot datoriz\u0113t\u0101s iek\u0101rtas.\nPieg\u0101d\u0101t\u0101ji nevar:\n* veikt nek\u0101da cita veida datu apstr\u0101des darb\u012bbas citiem nol\u016bkiem.\n"}},"specialPurposes":{"1":{"id":1,"name":"Dro\u0161\u012bbas nodro\u0161in\u0101\u0161ana, kr\u0101p\u0161anas nov\u0113r\u0161ana un atk\u013c\u016bdo\u0161ana","description":"J\u016bsu dati var tikt izmantoti kr\u0101pniecisku darb\u012bbu atkl\u0101\u0161anai un nov\u0113r\u0161anai, k\u0101 ar\u012b sist\u0113mu un procesu pien\u0101c\u012bgas un dro\u0161as darb\u012bbas nodro\u0161in\u0101\u0161anai.","descriptionLegal":"Lai nodro\u0161in\u0101tu dro\u0161\u012bbu, kr\u0101p\u0161anas nov\u0113r\u0161anu un atk\u013c\u016bdo\u0161anu, pieg\u0101d\u0101t\u0101ji var:\n* nodro\u0161in\u0101t datu dro\u0161u p\u0101rs\u016bt\u012b\u0161anu; \n* atkl\u0101t un nov\u0113rst \u013caunpr\u0101t\u012bgas, kr\u0101pnieciskas, neat\u013cautas vai nelikum\u012bgas darb\u012bbas;\n* nodro\u0161in\u0101t sist\u0113mu un procesu pareizu un efekt\u012bvu darb\u012bbu, tostarp uzraudz\u012bt un uzlabot sist\u0113mu un procesu darb\u012bbu at\u013cautajos nol\u016bkos.\nPieg\u0101d\u0101t\u0101ji nevar:\n* veikt nek\u0101da cita veida datu apstr\u0101des darb\u012bbas citiem at\u013cautajiem nol\u016bkiem.\nPiez\u012bme. Dati, kas apkopoti un izmantoti, lai nodro\u0161in\u0101tu dro\u0161\u012bbu, nov\u0113rstu kr\u0101p\u0161anu un atk\u013c\u016bdo\u0161anu, var ietvert autom\u0101tiski nos\u016bt\u012btus ier\u012bces parametrus identifik\u0101cijai, prec\u012bzus \u0123eogr\u0101fisk\u0101s atra\u0161an\u0101s vietas datus un datus, kas ieg\u016bti, akt\u012bvi sken\u0113jot ier\u012bces raksturlielumus identifik\u0101cijai bez atsevi\u0161\u0137as izpau\u0161anas un/vai piekri\u0161anu.\n"},"2":{"id":2,"name":"Rekl\u0101mu un satura tehnisk\u0101 nodro\u0161in\u0101\u0161ana","description":"J\u016bsu ier\u012bce var sa\u0146emt un nos\u016bt\u012bt inform\u0101ciju, kas \u013cauj jums apl\u016bkot un mijiedarboties ar rekl\u0101m\u0101m un saturu.","descriptionLegal":"Lai nodro\u0161in\u0101tu inform\u0101ciju un rea\u0123\u0113tu uz tehniska rakstura piepras\u012bjumiem, pieg\u0101d\u0101t\u0101ji var:\n* izmantot lietot\u0101ja IP adresi, lai pieg\u0101d\u0101tu rekl\u0101mu internet\u0101;\n* rea\u0123\u0113t uz lietot\u0101ja mijiedarb\u012bbu ar rekl\u0101mu, novirzot lietot\u0101ju uz rekl\u0101mas m\u0113r\u0137lapu;\n* izmantot lietot\u0101ja IP adresi, lai nodro\u0161in\u0101tu saturu internet\u0101;\n* rea\u0123\u0113t uz lietot\u0101ja mijiedarb\u012bbu ar saturu, novirzot lietot\u0101ju uz rekl\u0101mas m\u0113r\u0137lapu;\n* izmantot inform\u0101ciju par izmantot\u0101s ier\u012bces veidu un iesp\u0113j\u0101m, lai r\u0101d\u012btu rekl\u0101mu un saturu, piem\u0113ram, r\u0101d\u012btu rekl\u0101mas atbilsto\u0161\u0101 lielum\u0101 un video datnes \u2013 ier\u012bces atbalst\u012bt\u0101 form\u0101t\u0101.\nPieg\u0101d\u0101t\u0101ji nevar:\n* veikt nek\u0101da cita veida datu apstr\u0101des darb\u012bbas citiem nol\u016bkiem.\n"}},"features":{"1":{"id":1,"name":"Bezsaistes datu savieto\u0161ana un kombin\u0113\u0161ana","description":"No bezsaistes inform\u0101cijas avotiem ieg\u016btie dati var tikt kombin\u0113ti ar j\u016bsu tie\u0161saist\u0113 veiktaj\u0101m darb\u012bb\u0101m viena vai vair\u0101ku nol\u016bku izpildei.","descriptionLegal":"Pieg\u0101d\u0101t\u0101ji var: \n* kombin\u0113t bezsaist\u0113 ieg\u016btos datus ar tie\u0161saist\u0113 iev\u0101ktajiem datiem, lai atbalst\u012btu vienu vai vair\u0101kus Izmanto\u0161anas nol\u016bkus vai \u012apa\u0161os izmanto\u0161anas nol\u016bkus.\n"},"2":{"id":2,"name":"Vair\u0101ku ier\u012b\u010du sasaist\u012b\u0161ana","description":"Var tikt noteikta da\u017e\u0101du ier\u012b\u010du pieder\u012bba jums vai j\u016bsu saimniec\u012bbai viena vai vair\u0101ku nol\u016bku izpildei.","descriptionLegal":"Pieg\u0101d\u0101t\u0101ji var:\n* noteikt, ka divas vai vair\u0101kas ier\u012bces noteikti pieder tam pa\u0161ai lietot\u0101jam vai m\u0101jsaimniec\u012bbai;\n* noteikt, ka divas vai vair\u0101kas ier\u012bces iesp\u0113jami pieder tam pa\u0161ai lietot\u0101jam vai m\u0101jsaimniec\u012bbai;\n* akt\u012bvi sken\u0113t ier\u012bces identifik\u0101cijas parametrus, lai iesp\u0113jami noteiktu, vai lietot\u0101ji ir sniegu\u0161i at\u013cauju pieg\u0101d\u0101t\u0101jiem akt\u012bvi sken\u0113t savas ier\u012bces identifik\u0101cijas parametrus (2. \u012bpa\u0161\u0101 funkcija).\n"},"3":{"id":3,"name":"Sa\u0146emiet un izmantojiet autom\u0101tiski nos\u016bt\u012bt\u0101s ier\u012bces paz\u012bmes identifik\u0101cijai","description":"J\u016bsu ier\u012bci var at\u0161\u0137irt no cit\u0101m ier\u012bc\u0113m, pamatojoties uz inform\u0101ciju, ko t\u0101 autom\u0101tiski nos\u016bta, piem\u0113ram, IP adresi vai p\u0101rl\u016bka veidu.","descriptionLegal":"Pieg\u0101d\u0101t\u0101ji var:\n* izveidot identifikatoru, izmantojot datus, kas autom\u0101tiski apkopoti no ier\u012bces, \u012bpa\u0161iem raksturlielumiem, piem\u0113ram, IP adresei, lietot\u0101ja a\u0123enta virknei;\n* izmantot \u0161os identifikatorus ier\u012b\u010du atk\u0101rtotai identific\u0113\u0161anai.\nPieg\u0101d\u0101t\u0101ji nevar:\n* izveidot identifikatorus, izmantojot datus, kas apkopoti, akt\u012bvi sken\u0113jot ier\u012bces konkr\u0113tu parametru, piem\u0113ram, instal\u0113to burtrakstu vai ekr\u0101na iz\u0161\u0137irtsp\u0113jas, noteik\u0161anai;\n* izmantot \u0161os identifikatorus ier\u012b\u010du atk\u0101rtotai identific\u0113\u0161anai.\n"}},"specialFeatures":{"1":{"id":1,"name":"Prec\u012bzas atra\u0161an\u0101s vietas izmanto\u0161ana","description":"Var tikt izmantoti prec\u012bzi j\u016bsu atra\u0161an\u0101s vietas dati viena vai vair\u0101ku nol\u016bku izpildei. Tas noz\u012bm\u0113 to, ka j\u016bsu atra\u0161an\u0101s vietas precizit\u0101tes l\u012bmenis var b\u016bt p\u0101ris metru r\u0101dius\u0101.","descriptionLegal":"Pieg\u0101d\u0101t\u0101ji var:\n* v\u0101kt un apstr\u0101d\u0101t prec\u012bzas atra\u0161an\u0101s vietas datus viena vai vair\u0101ku nol\u016bku izpildei.\nIev\u0113rot labi, prec\u012bza atra\u0161an\u0101s vieta noz\u012bm\u0113 to, ka nepast\u0101v ierobe\u017eojumi attiec\u012bb\u0101 uz lietot\u0101ja atra\u0161an\u0101s vietas izmanto\u0161anu; precizit\u0101tes l\u012bmenis var b\u016bt da\u017eu metru r\u0101dius\u0101.\nPiez\u012bme. Da\u017eu \u0161o datu izmanto\u0161ana dro\u0161\u012bbai vai kr\u0101p\u0161anas nov\u0113r\u0161anai ir apskat\u012bta atsevi\u0161\u0137i, un nav nepiecie\u0161ama atsevi\u0161\u0137a lietot\u0101ja izv\u0113le prec\u012bzu \u0123eogr\u0101fisk\u0101s atra\u0161an\u0101s vietas datu izmanto\u0161anai. \n"},"2":{"id":2,"name":"Ier\u012bces parametru akt\u012bva sken\u0113\u0161ana identifik\u0101cijas nol\u016bk\u0101","description":"J\u016bsu ier\u012bce var tikt identific\u0113ta, pamatojoties uz j\u016bsu ier\u012bces unik\u0101lo parametru kombin\u0101cijas sken\u0113\u0161anu.","descriptionLegal":"Pieg\u0101d\u0101t\u0101ji var:\n* izveidot identifikatorus, izmantojot datus, kas ieg\u016bti, akt\u012bvi sken\u0113jot ier\u012bces konkr\u0113tu parametru, piem\u0113ram, instal\u0113to burtrakstu vai ekr\u0101na iz\u0161\u0137irtsp\u0113jas, noteik\u0161anai. \n* Izmantot \u0161os identifikatorus ier\u012b\u010du atk\u0101rtotai identific\u0113\u0161anai.\nPiez\u012bme. Da\u017eu \u0161o datu izmanto\u0161ana dro\u0161\u012bbai vai kr\u0101p\u0161anas nov\u0113r\u0161anai ir apl\u016bkota atsevi\u0161\u0137i, un tai nav nepiecie\u0161ama atsevi\u0161\u0137a lietot\u0101ja izv\u0113le akt\u012bvai ier\u012bces \u012bpa\u0161\u012bbu sken\u0113\u0161anai, lai identific\u0113tu."}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Prec\u012bzi atra\u0161an\u0101s vietas dati un identifik\u0101cija ar ier\u012bces sken\u0113\u0161anas starpniec\u012bbu","description":"Var tikt izmantota prec\u012bza atra\u0161an\u0101s vieta un inform\u0101cija par ier\u012bces parametriem"},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Pamata rekl\u0101mas un rekl\u0101mu nov\u0113rt\u0113\u0161ana","description":"Var tikt r\u0101d\u012btas pamata rekl\u0101mas. Var tikt nov\u0113rt\u0113ta rekl\u0101mu efektivit\u0101te."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Personaliz\u0113t\u0101s rekl\u0101mas","description":"Rekl\u0101mas ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai rekl\u0101mu personaliz\u0113\u0161anai var tikt pievienoti papildu dati."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Pamata rekl\u0101mas un rekl\u0101mu nov\u0113rt\u0113\u0161ana","description":"Var tikt r\u0101d\u012btas pamata rekl\u0101mas. Var tikt nov\u0113rt\u0113ta rekl\u0101mu efektivit\u0101te. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Pamata rekl\u0101mas, personaliz\u0113to rekl\u0101mu profili un rekl\u0101mu nov\u0113rt\u0113\u0161ana","description":"Var tikt r\u0101d\u012btas pamata rekl\u0101mas. Lab\u0101kai rekl\u0101mu personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Var tikt nov\u0113rt\u0113ta rekl\u0101mu efektivit\u0101te."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Personaliz\u0113to rekl\u0101mu r\u0101d\u012b\u0161ana un nov\u0113rt\u0113\u0161ana","description":"Rekl\u0101mas ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Var tikt nov\u0113rt\u0113ta rekl\u0101mu efektivit\u0101te."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Personaliz\u0113to rekl\u0101mu r\u0101d\u012b\u0161ana, rekl\u0101mu nov\u0113rt\u0113\u0161ana un anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m","description":"Rekl\u0101mas ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Var tikt nov\u0113rt\u0113ta rekl\u0101mu efektivit\u0101te. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Personaliz\u0113t\u0101s rekl\u0101mas un rekl\u0101mu nov\u0113rt\u0113\u0161ana","description":"Rekl\u0101mas ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai rekl\u0101mu personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Var tikt nov\u0113rt\u0113ta rekl\u0101mu efektivit\u0101te."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Personaliz\u0113t\u0101s rekl\u0101mas, rekl\u0101mu nov\u0113rt\u0113\u0161ana un anal\u012btiskie dati par lietot\u0101ju grup\u0101m","description":"Rekl\u0101mas ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai rekl\u0101mu personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Var tikt nov\u0113rt\u0113ta rekl\u0101mu efektivit\u0101te. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Personaliz\u0113to rekl\u0101mu profils un r\u0101d\u012b\u0161ana","description":"Rekl\u0101mas ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai rekl\u0101mu personaliz\u0113\u0161anai var tikt pievienoti papildu dati."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Personaliz\u0113tais saturs","description":"Saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai satura personaliz\u0113\u0161anai var tikt pievienoti papildu dati."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Personaliz\u0113t\u0101 satura r\u0101d\u012b\u0161ana un satura nov\u0113rt\u0113\u0161ana","description":"Saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Personaliz\u0113t\u0101 satura r\u0101d\u012b\u0161ana, satura nov\u0113rt\u0113\u0161ana un anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m","description":"Saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Personaliz\u0113tais saturs un satura nov\u0113rt\u0113\u0161ana","description":"Saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai satura personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Personaliz\u0113tais saturs, satura nov\u0113rt\u0113\u0161ana un anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m","description":"Saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai satura personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Personaliz\u0113tais saturs, satura nov\u0113rt\u0113\u0161ana, anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m un produktu izstr\u0101de","description":"Saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai satura personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu. Var tikti izmantoti dati, lai att\u012bst\u012btu vai uzlabotu lietot\u0101ju pieredzi, sist\u0113mas un programmat\u016bru"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Rekl\u0101mas un satura nov\u0113rt\u0113\u0161ana un anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m","description":"Rekl\u0101mas un satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Rekl\u0101mas un satura nov\u0113rt\u0113\u0161ana","description":"Rekl\u0101mas un satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Rekl\u0101mas nov\u0113rt\u0113\u0161ana un anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m","description":"Rekl\u0101mu ir iesp\u0113jams nov\u0113rt\u0113t. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Rekl\u0101mas un satura nov\u0113rt\u0113\u0161ana, anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m un produktu izstr\u0101de","description":"Rekl\u0101mas un satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu. Var tikti izmantoti dati, lai att\u012bst\u012btu vai uzlabotu lietot\u0101ju pieredzi, sist\u0113mas un programmat\u016bru. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Satura nov\u0113rt\u0113\u0161ana, anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m un produktu izstr\u0101de","description":"Satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu. Var tikti izmantoti dati, lai att\u012bst\u012btu vai uzlabotu lietot\u0101ju pieredzi, sist\u0113mas un programmat\u016bru."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Satura nov\u0113rt\u0113\u0161ana un produktu izstr\u0101de","description":"Satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t. Var tikti izmantoti dati, lai att\u012bst\u012btu vai uzlabotu lietot\u0101ju pieredzi, sist\u0113mas un programmat\u016bru."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Personaliz\u0113to rekl\u0101mu un satura r\u0101d\u012b\u0161ana, rekl\u0101mas un satura efektivit\u0101tes nov\u0113rt\u0113\u0161ana","description":"Rekl\u0101mas un saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Rekl\u0101mas un satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Personaliz\u0113to rekl\u0101mu un satura r\u0101d\u012b\u0161ana, rekl\u0101mu un satura efektivit\u0101tes nov\u0113rt\u0113\u0161ana un anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m","description":"Rekl\u0101mas un saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Rekl\u0101mas un satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu. Var tikti izmantoti dati, lai att\u012bst\u012btu vai uzlabotu lietot\u0101ju pieredzi, sist\u0113mas un programmat\u016bru"},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Personaliz\u0113t\u0101s rekl\u0101mas un saturs, rekl\u0101mu un satura efektivit\u0101tes nov\u0113rt\u0113\u0161ana","description":"Rekl\u0101mas un saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai rekl\u0101mu un satura personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Rekl\u0101mas un satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Personaliz\u0113t\u0101s rekl\u0101mas un saturs, rekl\u0101mu un satura efektivit\u0101tes nov\u0113rt\u0113\u0161ana un anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m","description":"Rekl\u0101mas un saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai rekl\u0101mu un satura personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Rekl\u0101mas un satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Personaliz\u0113t\u0101s rekl\u0101mas un satura profils","description":"Rekl\u0101mu un satura personaliz\u0113\u0161anai var tikt pievienoti papildu dati."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Personaliz\u0113to rekl\u0101mu un satura r\u0101d\u012b\u0161ana","description":"Rekl\u0101mas un saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Pamata rekl\u0101mas, rekl\u0101mas un satura efektivit\u0101tes nov\u0113rt\u0113\u0161ana un anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m","description":"Var tikt r\u0101d\u012btas pamata rekl\u0101mas. Rekl\u0101mas un satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Personaliz\u0113to rekl\u0101mu r\u0101d\u012b\u0161ana, personaliz\u0113tais saturs, rekl\u0101mu un satura efektivit\u0101tes nov\u0113rt\u0113\u0161ana un anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m","description":"Rekl\u0101mas un saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai satura personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Rekl\u0101mas un satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Personaliz\u0113to rekl\u0101mu r\u0101d\u012b\u0161ana, personaliz\u0113tais saturs, rekl\u0101mu un satura efektivit\u0101tes nov\u0113rt\u0113\u0161ana, anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m un produktu izstr\u0101de","description":"Rekl\u0101mas un saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai satura personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Rekl\u0101mas un satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu. Var tikti izmantoti dati, lai att\u012bst\u012btu vai uzlabotu lietot\u0101ju pieredzi, sist\u0113mas un programmat\u016bru."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Pamata rekl\u0101mas, personaliz\u0113tais saturs, rekl\u0101mu un satura efektivit\u0101tes nov\u0113rt\u0113\u0161ana un anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m","description":"Var tikt r\u0101d\u012btas pamata rekl\u0101mas. Saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai satura personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Rekl\u0101mas un satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Pamata rekl\u0101mas, personaliz\u0113tais saturs, rekl\u0101mu un satura efektivit\u0101tes nov\u0113rt\u0113\u0161ana, anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m un produktu izstr\u0101de","description":"Var tikt r\u0101d\u012btas pamata rekl\u0101mas. Saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai satura personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Rekl\u0101mas un satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu. Var tikti izmantoti dati, lai att\u012bst\u012btu vai uzlabotu lietot\u0101ju pieredzi, sist\u0113mas un programmat\u016bru."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Pamata rekl\u0101mas, personaliz\u0113tais saturs, satura efektivit\u0101tes nov\u0113rt\u0113\u0161ana un anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m","description":"Var tikt r\u0101d\u012btas pamata rekl\u0101mas. Saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai satura personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Rekl\u0101mas un satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Pamata rekl\u0101mas, personaliz\u0113tais saturs, satura efektivit\u0101tes nov\u0113rt\u0113\u0161ana, anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m un produktu izstr\u0101de","description":"Var tikt r\u0101d\u012btas pamata rekl\u0101mas. Saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai satura personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu. Var tikti izmantoti dati, lai att\u012bst\u012btu vai uzlabotu lietot\u0101ju pieredzi, sist\u0113mas un programmat\u016bru."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Pamata rekl\u0101mas, personaliz\u0113tais saturs un rekl\u0101mu efektivit\u0101tes nov\u0113rt\u0113\u0161ana","description":"Var tikt r\u0101d\u012btas pamata rekl\u0101mas. Saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai satura personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Var tikt nov\u0113rt\u0113ta rekl\u0101mu efektivit\u0101te."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Pamata rekl\u0101mas, personaliz\u0113tais saturs, rekl\u0101mu efektivit\u0101tes nov\u0113rt\u0113\u0161ana un produktu izstr\u0101de","description":"Var tikt r\u0101d\u012btas pamata rekl\u0101mas. Saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai satura personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Var tikt nov\u0113rt\u0113ta rekl\u0101mu efektivit\u0101te. Var tikti izmantoti dati, lai att\u012bst\u012btu vai uzlabotu lietot\u0101ju pieredzi, sist\u0113mas un programmat\u016bru."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Personaliz\u0113tas rekl\u0101mas, rekl\u0101mu efektivit\u0101tes nov\u0113rt\u0113\u0161ana un produktu izstr\u0101de","description":"rekl\u0101mas ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai rekl\u0101mu personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Var tikt nov\u0113rt\u0113ta rekl\u0101mu efektivit\u0101te. Var tikti izmantoti dati, lai att\u012bst\u012btu vai uzlabotu lietot\u0101ju pieredzi, sist\u0113mas un programmat\u016bru."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Personaliz\u0113tas rekl\u0101mas, anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m un produktu izstr\u0101de","description":"rekl\u0101mas ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai rekl\u0101mu personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Var tikt nov\u0113rt\u0113ta rekl\u0101mu efektivit\u0101te. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu. Var tikti izmantoti dati, lai att\u012bst\u012btu vai uzlabotu lietot\u0101ju pieredzi, sist\u0113mas un programmat\u016bru."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Personaliz\u0113tas rekl\u0101mas, rekl\u0101mu un satura efektivit\u0101tes nov\u0113rt\u0113\u0161ana, anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m un produktu izstr\u0101de","description":"rekl\u0101mas ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai rekl\u0101mu personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Rekl\u0101mas un satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu. Var tikti izmantoti dati, lai att\u012bst\u012btu vai uzlabotu lietot\u0101ju pieredzi, sist\u0113mas un programmat\u016bru."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Personaliz\u0113tas rekl\u0101mas, personaliz\u0113ta satura r\u0101d\u012b\u0161ana, rekl\u0101mu un satura efektivit\u0101tes nov\u0113rt\u0113\u0161ana, anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m un produktu izstr\u0101de","description":"rekl\u0101mas un saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai rekl\u0101mu personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Rekl\u0101mas un satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu. Var tikti izmantoti dati, lai att\u012bst\u012btu vai uzlabotu lietot\u0101ju pieredzi, sist\u0113mas un programmat\u016bru."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Personaliz\u0113tas rekl\u0101mas un saturs, rekl\u0101mu un satura efektivit\u0101tes nov\u0113rt\u0113\u0161ana, anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m un produktu izstr\u0101de","description":"rekl\u0101mas un saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai rekl\u0101mu un satura personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Rekl\u0101mas un satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu. Var tikti izmantoti dati, lai att\u012bst\u012btu vai uzlabotu lietot\u0101ju pieredzi, sist\u0113mas un programmat\u016bru."}}} \ No newline at end of file +{"vendorListVersion":94,"lastUpdated":"2021-06-10T16:44:01Z","purposes":{"1":{"id":1,"name":"Inform\u0101cijas ievieto\u0161ana ier\u012bc\u0113 un/vai piek\u013cuve tai","description":"M\u0113s varam ievietot j\u016bsu ier\u012bc\u0113 s\u012bkdatnes, ier\u012b\u010du identifikatorus un citu inform\u0101ciju un piek\u013c\u016bt tai jums izkl\u0101st\u012btajos nol\u016bkos.","descriptionLegal":"Pieg\u0101d\u0101t\u0101ji var:\n\u2022\tIevietot ier\u012bc\u0113 un piek\u013c\u016bt t\u0101dai inform\u0101cijai, k\u0101 s\u012bkdatn\u0113m un lietot\u0101jiem pie\u0161\u0137irtajiem ier\u012b\u010du identifikatoriem.\n"},"2":{"id":2,"name":"Pamata rekl\u0101mu atlase","description":"Rekl\u0101mas var tikt r\u0101d\u012btas, pamatojoties uz j\u016bsu apl\u016bkoto saturu lietotnes izmanto\u0161anas laik\u0101, j\u016bsu aptuveno atra\u0161an\u0101s vietu vai j\u016bsu ier\u012bces veidu.","descriptionLegal":"Lai atlas\u012btu pamata rekl\u0101mas, pieg\u0101d\u0101t\u0101ji var:\n* izmantot re\u0101llaika inform\u0101ciju par kontekstu, kur\u0101 tiks r\u0101d\u012bta rekl\u0101ma, lai r\u0101d\u012btu rekl\u0101mu, tostarp inform\u0101ciju par saturu un ier\u012bci, piem\u0113ram, ier\u012bces veidu un iesp\u0113j\u0101m, lietot\u0101ja a\u0123entu, t\u012bmek\u013ca adresi (URL) un IP adresi; \n* izmantot nekonkr\u0113tus lietot\u0101ja atra\u0161an\u0101s vietas datus;\n* kontrol\u0113t lietot\u0101jam r\u0101d\u012bto rekl\u0101mu bie\u017eumu;\n* noteikt sec\u012bbu, k\u0101d\u0101 rekl\u0101mas tiek r\u0101d\u012btas lietot\u0101jam;\n* nov\u0113rst rekl\u0101mu r\u0101d\u012b\u0161anu nepiem\u0113rot\u0101 redakcion\u0101l\u0101 (z\u012bmolam nedro\u0161\u0101) kontekst\u0101.\nPieg\u0101d\u0101t\u0101ji nevar:\n* izveidojiet personaliz\u0113tu rekl\u0101mu profilu, izmantojot \u0161o inform\u0101ciju n\u0101kotnes rekl\u0101mu izv\u0113lei bez atsevi\u0161\u0137a juridisk\u0101 pamata, lai izveidotu personaliz\u0113tu rekl\u0101mu profilu.\nIev\u0113rot labi, nekonkr\u0113ta atra\u0161an\u0101s vieta noz\u012bm\u0113, ka ir at\u013cauts att\u0113lot tikai aptuvenu atra\u0161an\u0101s vietu vismaz 500 metru r\u0101dius\u0101.\n"},"3":{"id":3,"name":"Personaliz\u0113ta rekl\u0101mu profila izveide","description":"Par jums un j\u016bsu interes\u0113m var tikt izveidots profils, lai r\u0101d\u012btu jums atbilsto\u0161as personaliz\u0113tas rekl\u0101mas.","descriptionLegal":"Lai izveidotu personaliz\u0113tu rekl\u0101mu profilu, pieg\u0101d\u0101t\u0101ji var:\n* Apkopot inform\u0101ciju par lietot\u0101ju, tostarp t\u0101 aktivit\u0101ti, interes\u0113m, demogr\u0101fisko inform\u0101ciju un atra\u0161an\u0101s vietu, lai izveidotu vai redi\u0123\u0113tu lietot\u0101ja profilu personaliz\u0113tu rekl\u0101mu r\u0101d\u012b\u0161anas nol\u016bk\u0101.\n* Apvienojiet \u0161o inform\u0101ciju ar citu iepriek\u0161 sav\u0101kto inform\u0101ciju, tostarp no vis\u0101m vietn\u0113m un lietotn\u0113m, lai izveidotu vai redi\u0123\u0113tu lietot\u0101ja profilu lieto\u0161anai personaliz\u0113t\u0101 rekl\u0101m\u0101.\n"},"4":{"id":4,"name":"Personaliz\u0113tu rekl\u0101mu atlase","description":"Jums var tikt r\u0101d\u012btas personaliz\u0113tas rekl\u0101mas, pamatojoties uz profilu, kas izveidots par jums.","descriptionLegal":"Lai atlas\u012btu personaliz\u0113tas rekl\u0101mas, pieg\u0101d\u0101t\u0101ji var:\n* atlas\u012bt personaliz\u0113tas rekl\u0101mas, pamatojoties uz lietot\u0101ja profilu vai citiem v\u0113sturiskajiem lietot\u0101ja datiem, tostarp lietot\u0101ja iepriek\u0161\u0113jo aktivit\u0101ti, interes\u0113m, viet\u0146u un lietot\u0146u apmekl\u0113jumiem, atra\u0161an\u0101s vietu un demogr\u0101fisko inform\u0101ciju.\n"},"5":{"id":5,"name":"Personaliz\u0113ta satura profila izveide","description":"Par jums un j\u016bsu interes\u0113m var tikt veidots profils, lai r\u0101d\u012btu jums atbilsto\u0161u personaliz\u0113tu saturu.","descriptionLegal":"Lai izveidotu personaliz\u0113ta satura profilu, pieg\u0101d\u0101t\u0101ji var:\n* iev\u0101kt inform\u0101ciju par lietot\u0101ju, tostarp t\u0101 aktivit\u0101ti, interes\u0113m, viet\u0146u un lietot\u0146u apmekl\u0113jumiem, demogr\u0101fisko inform\u0101ciju un atra\u0161an\u0101s vietu, lai izveidotu vai redi\u0123\u0113tu lietot\u0101ja profilu satura personaliz\u0113\u0161anas nol\u016bk\u0101.\n* Apvienojiet \u0161o inform\u0101ciju ar citu iepriek\u0161 sav\u0101kto inform\u0101ciju, tostarp no vis\u0101m vietn\u0113m un lietotn\u0113m, lai izveidotu vai redi\u0123\u0113tu lietot\u0101ja profilu izmanto\u0161anai satura personaliz\u0113\u0161anai."},"6":{"id":6,"name":"Personaliz\u0113ta satura atlase","description":"Jums var tikt r\u0101d\u012bts personaliz\u0113ts saturs, pamatojoties uz profilu, kas izveidots par jums.","descriptionLegal":"Lai atlas\u012btu personaliz\u0113tu saturu, pieg\u0101d\u0101t\u0101ji var:\n\u2022\tatlas\u012bt personaliz\u0113tu saturu, pamatojoties uz lietot\u0101ja profilu vai citiem v\u0113sturiskajiem lietot\u0101ja datiem, tostarp t\u0101 iepriek\u0161\u0113jo aktivit\u0101ti, interes\u0113m, viet\u0146u un lietot\u0146u apmekl\u0113jumiem, atra\u0161an\u0101s vietu un demogr\u0101fisko inform\u0101ciju.\n"},"7":{"id":7,"name":"Rekl\u0101mas efektivit\u0101tes nov\u0113rt\u0113\u0161ana","description":"Var tikt izv\u0113rt\u0113ta to rekl\u0101mu efektivit\u0101te un pan\u0101kumi, kuras jums tika att\u0113lotas vai ar kur\u0101m esat mijiedarbojies(-usies).","descriptionLegal":"Lai nov\u0113rt\u0113tu rekl\u0101mu efektivit\u0101ti, pieg\u0101d\u0101t\u0101ji var:\n* izv\u0113rt\u0113t, vai un k\u0101 lietot\u0101jam tika r\u0101d\u012btas rekl\u0101mas, k\u0101 ar\u012b vai un k\u0101 lietot\u0101js mijiedarboj\u0101s ar t\u0101m;\n* nodro\u0161in\u0101t p\u0101rskatus par rekl\u0101m\u0101m, tostarp to efektivit\u0101ti un pan\u0101kumiem;\n* sniegt p\u0101rskatus par lietot\u0101jiem, kuri mijiedarboj\u0101s ar rekl\u0101m\u0101m, izmantojot datus, kas ieg\u016bti, lietot\u0101jam mijiedarbojoties ar attiec\u012bgo rekl\u0101mu;\n* sniegt p\u0101rskatus public\u0113t\u0101jiem par sav\u0101 \u012bpa\u0161um\u0101 r\u0101d\u012btaj\u0101m rekl\u0101m\u0101m;\n* izv\u0113rt\u0113t, vai rekl\u0101ma tiek r\u0101d\u012bta piem\u0113rot\u0101 redakcion\u0101l\u0101 (z\u012bmolam dro\u0161\u0101) kontekst\u0101;\n* noteikt to rekl\u0101mas procentu\u0101lo da\u013cu, kuru bija iesp\u0113jams apskat\u012bt, k\u0101 ar\u012b \u0161\u012bs apskat\u012b\u0161anas iesp\u0113jas ilgumu. \nPieg\u0101d\u0101t\u0101ji nevar:\n* rekl\u0101mas izp\u0113tes datiem piem\u0113rot no lietot\u0101ju grup\u0101m vai taml\u012bdz\u012bgos veidos ieg\u016btu anal\u012btisko inform\u0101ciju par m\u0113r\u0137a grup\u0101m bez atsevi\u0161\u0137a juridiska pamatojuma izmantot tirgus p\u0113t\u012bjumus, lai veidotu m\u0113r\u0137a grupu izp\u0113tes.\n"},"8":{"id":8,"name":"Satura efektivit\u0101tes nov\u0113rt\u0113\u0161ana","description":"Var tikt izv\u0113rt\u0113ta t\u0101da satura efektivit\u0101te un sasniegumi, kur\u0161 jums ticis att\u0113lots vai ar kuru esat mijiedarbojies.","descriptionLegal":"Lai nov\u0113rt\u0113tu satura efektivit\u0101ti, pieg\u0101d\u0101t\u0101ji var:\n* izv\u0113rt\u0113t un iesniegt p\u0101rskatus par to, k\u0101 ticis nodro\u0161in\u0101ts saturs un k\u0101 ar to mijiedarbojas lietot\u0101ji;\n* iesniegt p\u0101rskatus, izmantojot izm\u0113r\u0101mu vai zin\u0101mu inform\u0101ciju par lietot\u0101jiem, kuri ir mijiedarboju\u0161ies ar saturu.\nPieg\u0101d\u0101t\u0101ji nevar:\n* izv\u0113rt\u0113t, vai un k\u0101 lietot\u0101jam tika nodro\u0161in\u0101tas rekl\u0101mas (tostarp viet\u0113j\u0101s rekl\u0101mas), k\u0101 ar\u012b vai un k\u0101 lietot\u0101js mijiedarboj\u0101s ar t\u0101m;\n* rekl\u0101mas izp\u0113tes datiem piem\u0113rot no lietot\u0101ju grup\u0101m vai taml\u012bdz\u012bgos veidos ieg\u016btu anal\u012btisko inform\u0101ciju par m\u0113r\u0137a grup\u0101m bez atsevi\u0161\u0137a juridiska pamatojuma izmantot tirgus p\u0113t\u012bjumus, lai veidotu m\u0113r\u0137a grupu izp\u0113tes.\n"},"9":{"id":9,"name":"Tirgus p\u0113t\u012bjumu izmanto\u0161ana anal\u012btisk\u0101s inform\u0101cijas veido\u0161anai par m\u0113r\u0137a grup\u0101m","description":"Var tikt veikta tirgus izp\u0113te, lai uzzin\u0101tu vair\u0101k par lietot\u0101ju grup\u0101m, kuras apmekl\u0113 vietnes/lietotnes un apl\u016bko rekl\u0101mas.","descriptionLegal":"Lai izmantotu tirgus izp\u0113tes anal\u012btisk\u0101s inform\u0101cijas apkopo\u0161anai par m\u0113r\u0137a grup\u0101m, pieg\u0101d\u0101t\u0101ji var:\n* sniegt rekl\u0101mdev\u0113jiem vai to p\u0101rst\u0101vjiem apkopotus p\u0101rskatus par m\u0113r\u0137auditorij\u0101m, kuras vi\u0146u rekl\u0101mas sasniedz, izmantojot no lietot\u0101ju grup\u0101m vai taml\u012bdz\u012bgos veidos ieg\u016btu anal\u012btisko inform\u0101ciju;\n* sniegt public\u0113t\u0101jiem apkopotus p\u0101rskatus par m\u0113r\u0137auditorij\u0101m, kur\u0101m to \u012bpa\u0161um\u0101 tika nodro\u0161in\u0101ts saturs vai kuras mijiedarboj\u0101s ar saturu un/vai rekl\u0101m\u0101m, izmantojot no lietot\u0101ju grup\u0101m vai taml\u012bdz\u012bgos veidos ieg\u016btu anal\u012btisko inform\u0101ciju; \n* apvienot bezsaistes datus ar tie\u0161saistes lietot\u0101ju tirgus izp\u0113tes nol\u016bkos, lai veidotu anal\u012btisko inform\u0101ciju par m\u0113r\u0137auditorij\u0101m, ja pieg\u0101d\u0101t\u0101ji ir pazi\u0146oju\u0161i par bezsaistes datu avotu savieto\u0161anu un kombin\u0113\u0161anu (1. Funkcija).\nPieg\u0101d\u0101t\u0101ji nevar: \n* nov\u0113rt\u0113t rekl\u0101mu veiktsp\u0113ju un efektivit\u0101ti, ar kuru konkr\u0113ts lietot\u0101js tika apkalpots vai mijiedarboj\u0101s, bez atsevi\u0161\u0137a juridiska pamata, lai nov\u0113rt\u0113tu rekl\u0101mas veiktsp\u0113ju;\n* nov\u0113rt\u0113t, k\u0101ds saturs bija r\u0101d\u012bts konkr\u0113tam lietot\u0101jam un k\u0101 tie mijiedarboj\u0101s ar attiec\u012bgo saturu, bez atsevi\u0161\u0137a juridiska pamata satura veiktsp\u0113jas noteik\u0161anai.\n"},"10":{"id":10,"name":"Produktu izstr\u0101d\u0101\u0161ana un uzlabo\u0161ana","description":"J\u016bsu dati var tikt izmantoti eso\u0161o sist\u0113mu un programmat\u016bras uzlabo\u0161anai un jaunu produktu izstr\u0101dei.","descriptionLegal":"Lai izstr\u0101d\u0101tu jaunus produktus un uzlabotu eso\u0161os, pieg\u0101d\u0101t\u0101ji var:\n* izmantot inform\u0101ciju, lai papildin\u0101tu eso\u0161os produktus ar jaun\u0101m funkcij\u0101m un izstr\u0101d\u0101tu jaunus produktus;\n* rad\u012bt jaunus mode\u013cus un algoritmus, apm\u0101cot datoriz\u0113t\u0101s iek\u0101rtas.\nPieg\u0101d\u0101t\u0101ji nevar:\n* veikt nek\u0101da cita veida datu apstr\u0101des darb\u012bbas citiem nol\u016bkiem.\n"}},"specialPurposes":{"1":{"id":1,"name":"Dro\u0161\u012bbas nodro\u0161in\u0101\u0161ana, kr\u0101p\u0161anas nov\u0113r\u0161ana un atk\u013c\u016bdo\u0161ana","description":"J\u016bsu dati var tikt izmantoti kr\u0101pniecisku darb\u012bbu atkl\u0101\u0161anai un nov\u0113r\u0161anai, k\u0101 ar\u012b sist\u0113mu un procesu pien\u0101c\u012bgas un dro\u0161as darb\u012bbas nodro\u0161in\u0101\u0161anai.","descriptionLegal":"Lai nodro\u0161in\u0101tu dro\u0161\u012bbu, kr\u0101p\u0161anas nov\u0113r\u0161anu un atk\u013c\u016bdo\u0161anu, pieg\u0101d\u0101t\u0101ji var:\n* nodro\u0161in\u0101t datu dro\u0161u p\u0101rs\u016bt\u012b\u0161anu; \n* atkl\u0101t un nov\u0113rst \u013caunpr\u0101t\u012bgas, kr\u0101pnieciskas, neat\u013cautas vai nelikum\u012bgas darb\u012bbas;\n* nodro\u0161in\u0101t sist\u0113mu un procesu pareizu un efekt\u012bvu darb\u012bbu, tostarp uzraudz\u012bt un uzlabot sist\u0113mu un procesu darb\u012bbu at\u013cautajos nol\u016bkos.\nPieg\u0101d\u0101t\u0101ji nevar:\n* veikt nek\u0101da cita veida datu apstr\u0101des darb\u012bbas citiem at\u013cautajiem nol\u016bkiem.\nPiez\u012bme. Dati, kas apkopoti un izmantoti, lai nodro\u0161in\u0101tu dro\u0161\u012bbu, nov\u0113rstu kr\u0101p\u0161anu un atk\u013c\u016bdo\u0161anu, var ietvert autom\u0101tiski nos\u016bt\u012btus ier\u012bces parametrus identifik\u0101cijai, prec\u012bzus \u0123eogr\u0101fisk\u0101s atra\u0161an\u0101s vietas datus un datus, kas ieg\u016bti, akt\u012bvi sken\u0113jot ier\u012bces raksturlielumus identifik\u0101cijai bez atsevi\u0161\u0137as izpau\u0161anas un/vai piekri\u0161anu.\n"},"2":{"id":2,"name":"Rekl\u0101mu un satura tehnisk\u0101 nodro\u0161in\u0101\u0161ana","description":"J\u016bsu ier\u012bce var sa\u0146emt un nos\u016bt\u012bt inform\u0101ciju, kas \u013cauj jums apl\u016bkot un mijiedarboties ar rekl\u0101m\u0101m un saturu.","descriptionLegal":"Lai nodro\u0161in\u0101tu inform\u0101ciju un rea\u0123\u0113tu uz tehniska rakstura piepras\u012bjumiem, pieg\u0101d\u0101t\u0101ji var:\n* izmantot lietot\u0101ja IP adresi, lai pieg\u0101d\u0101tu rekl\u0101mu internet\u0101;\n* rea\u0123\u0113t uz lietot\u0101ja mijiedarb\u012bbu ar rekl\u0101mu, novirzot lietot\u0101ju uz rekl\u0101mas m\u0113r\u0137lapu;\n* izmantot lietot\u0101ja IP adresi, lai nodro\u0161in\u0101tu saturu internet\u0101;\n* rea\u0123\u0113t uz lietot\u0101ja mijiedarb\u012bbu ar saturu, novirzot lietot\u0101ju uz rekl\u0101mas m\u0113r\u0137lapu;\n* izmantot inform\u0101ciju par izmantot\u0101s ier\u012bces veidu un iesp\u0113j\u0101m, lai r\u0101d\u012btu rekl\u0101mu un saturu, piem\u0113ram, r\u0101d\u012btu rekl\u0101mas atbilsto\u0161\u0101 lielum\u0101 un video datnes \u2013 ier\u012bces atbalst\u012bt\u0101 form\u0101t\u0101.\nPieg\u0101d\u0101t\u0101ji nevar:\n* veikt nek\u0101da cita veida datu apstr\u0101des darb\u012bbas citiem nol\u016bkiem.\n"}},"features":{"1":{"id":1,"name":"Bezsaistes datu savieto\u0161ana un kombin\u0113\u0161ana","description":"No bezsaistes inform\u0101cijas avotiem ieg\u016btie dati var tikt kombin\u0113ti ar j\u016bsu tie\u0161saist\u0113 veiktaj\u0101m darb\u012bb\u0101m viena vai vair\u0101ku nol\u016bku izpildei.","descriptionLegal":"Pieg\u0101d\u0101t\u0101ji var: \n* kombin\u0113t bezsaist\u0113 ieg\u016btos datus ar tie\u0161saist\u0113 iev\u0101ktajiem datiem, lai atbalst\u012btu vienu vai vair\u0101kus Izmanto\u0161anas nol\u016bkus vai \u012apa\u0161os izmanto\u0161anas nol\u016bkus.\n"},"2":{"id":2,"name":"Vair\u0101ku ier\u012b\u010du sasaist\u012b\u0161ana","description":"Var tikt noteikta da\u017e\u0101du ier\u012b\u010du pieder\u012bba jums vai j\u016bsu saimniec\u012bbai viena vai vair\u0101ku nol\u016bku izpildei.","descriptionLegal":"Pieg\u0101d\u0101t\u0101ji var:\n* noteikt, ka divas vai vair\u0101kas ier\u012bces noteikti pieder tam pa\u0161ai lietot\u0101jam vai m\u0101jsaimniec\u012bbai;\n* noteikt, ka divas vai vair\u0101kas ier\u012bces iesp\u0113jami pieder tam pa\u0161ai lietot\u0101jam vai m\u0101jsaimniec\u012bbai;\n* akt\u012bvi sken\u0113t ier\u012bces identifik\u0101cijas parametrus, lai iesp\u0113jami noteiktu, vai lietot\u0101ji ir sniegu\u0161i at\u013cauju pieg\u0101d\u0101t\u0101jiem akt\u012bvi sken\u0113t savas ier\u012bces identifik\u0101cijas parametrus (2. \u012bpa\u0161\u0101 funkcija).\n"},"3":{"id":3,"name":"Sa\u0146emiet un izmantojiet autom\u0101tiski nos\u016bt\u012bt\u0101s ier\u012bces paz\u012bmes identifik\u0101cijai","description":"J\u016bsu ier\u012bci var at\u0161\u0137irt no cit\u0101m ier\u012bc\u0113m, pamatojoties uz inform\u0101ciju, ko t\u0101 autom\u0101tiski nos\u016bta, piem\u0113ram, IP adresi vai p\u0101rl\u016bka veidu.","descriptionLegal":"Pieg\u0101d\u0101t\u0101ji var:\n* izveidot identifikatoru, izmantojot datus, kas autom\u0101tiski apkopoti no ier\u012bces, \u012bpa\u0161iem raksturlielumiem, piem\u0113ram, IP adresei, lietot\u0101ja a\u0123enta virknei;\n* izmantot \u0161os identifikatorus ier\u012b\u010du atk\u0101rtotai identific\u0113\u0161anai.\nPieg\u0101d\u0101t\u0101ji nevar:\n* izveidot identifikatorus, izmantojot datus, kas apkopoti, akt\u012bvi sken\u0113jot ier\u012bces konkr\u0113tu parametru, piem\u0113ram, instal\u0113to burtrakstu vai ekr\u0101na iz\u0161\u0137irtsp\u0113jas, noteik\u0161anai;\n* izmantot \u0161os identifikatorus ier\u012b\u010du atk\u0101rtotai identific\u0113\u0161anai.\n"}},"specialFeatures":{"1":{"id":1,"name":"Prec\u012bzas atra\u0161an\u0101s vietas izmanto\u0161ana","description":"Var tikt izmantoti prec\u012bzi j\u016bsu atra\u0161an\u0101s vietas dati viena vai vair\u0101ku nol\u016bku izpildei. Tas noz\u012bm\u0113 to, ka j\u016bsu atra\u0161an\u0101s vietas precizit\u0101tes l\u012bmenis var b\u016bt p\u0101ris metru r\u0101dius\u0101.","descriptionLegal":"Pieg\u0101d\u0101t\u0101ji var:\n* v\u0101kt un apstr\u0101d\u0101t prec\u012bzas atra\u0161an\u0101s vietas datus viena vai vair\u0101ku nol\u016bku izpildei.\nIev\u0113rot labi, prec\u012bza atra\u0161an\u0101s vieta noz\u012bm\u0113 to, ka nepast\u0101v ierobe\u017eojumi attiec\u012bb\u0101 uz lietot\u0101ja atra\u0161an\u0101s vietas izmanto\u0161anu; precizit\u0101tes l\u012bmenis var b\u016bt da\u017eu metru r\u0101dius\u0101.\nPiez\u012bme. Da\u017eu \u0161o datu izmanto\u0161ana dro\u0161\u012bbai vai kr\u0101p\u0161anas nov\u0113r\u0161anai ir apskat\u012bta atsevi\u0161\u0137i, un nav nepiecie\u0161ama atsevi\u0161\u0137a lietot\u0101ja izv\u0113le prec\u012bzu \u0123eogr\u0101fisk\u0101s atra\u0161an\u0101s vietas datu izmanto\u0161anai. \n"},"2":{"id":2,"name":"Ier\u012bces parametru akt\u012bva sken\u0113\u0161ana identifik\u0101cijas nol\u016bk\u0101","description":"J\u016bsu ier\u012bce var tikt identific\u0113ta, pamatojoties uz j\u016bsu ier\u012bces unik\u0101lo parametru kombin\u0101cijas sken\u0113\u0161anu.","descriptionLegal":"Pieg\u0101d\u0101t\u0101ji var:\n* izveidot identifikatorus, izmantojot datus, kas ieg\u016bti, akt\u012bvi sken\u0113jot ier\u012bces konkr\u0113tu parametru, piem\u0113ram, instal\u0113to burtrakstu vai ekr\u0101na iz\u0161\u0137irtsp\u0113jas, noteik\u0161anai. \n* Izmantot \u0161os identifikatorus ier\u012b\u010du atk\u0101rtotai identific\u0113\u0161anai.\nPiez\u012bme. Da\u017eu \u0161o datu izmanto\u0161ana dro\u0161\u012bbai vai kr\u0101p\u0161anas nov\u0113r\u0161anai ir apl\u016bkota atsevi\u0161\u0137i, un tai nav nepiecie\u0161ama atsevi\u0161\u0137a lietot\u0101ja izv\u0113le akt\u012bvai ier\u012bces \u012bpa\u0161\u012bbu sken\u0113\u0161anai, lai identific\u0113tu."}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Prec\u012bzi atra\u0161an\u0101s vietas dati un identifik\u0101cija ar ier\u012bces sken\u0113\u0161anas starpniec\u012bbu","description":"Var tikt izmantota prec\u012bza atra\u0161an\u0101s vieta un inform\u0101cija par ier\u012bces parametriem"},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Pamata rekl\u0101mas un rekl\u0101mu nov\u0113rt\u0113\u0161ana","description":"Var tikt r\u0101d\u012btas pamata rekl\u0101mas. Var tikt nov\u0113rt\u0113ta rekl\u0101mu efektivit\u0101te."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Personaliz\u0113t\u0101s rekl\u0101mas","description":"Rekl\u0101mas ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai rekl\u0101mu personaliz\u0113\u0161anai var tikt pievienoti papildu dati."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Pamata rekl\u0101mas un rekl\u0101mu nov\u0113rt\u0113\u0161ana","description":"Var tikt r\u0101d\u012btas pamata rekl\u0101mas. Var tikt nov\u0113rt\u0113ta rekl\u0101mu efektivit\u0101te. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Pamata rekl\u0101mas, personaliz\u0113to rekl\u0101mu profili un rekl\u0101mu nov\u0113rt\u0113\u0161ana","description":"Var tikt r\u0101d\u012btas pamata rekl\u0101mas. Lab\u0101kai rekl\u0101mu personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Var tikt nov\u0113rt\u0113ta rekl\u0101mu efektivit\u0101te."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Personaliz\u0113to rekl\u0101mu r\u0101d\u012b\u0161ana un nov\u0113rt\u0113\u0161ana","description":"Rekl\u0101mas ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Var tikt nov\u0113rt\u0113ta rekl\u0101mu efektivit\u0101te."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Personaliz\u0113to rekl\u0101mu r\u0101d\u012b\u0161ana, rekl\u0101mu nov\u0113rt\u0113\u0161ana un anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m","description":"Rekl\u0101mas ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Var tikt nov\u0113rt\u0113ta rekl\u0101mu efektivit\u0101te. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Personaliz\u0113t\u0101s rekl\u0101mas un rekl\u0101mu nov\u0113rt\u0113\u0161ana","description":"Rekl\u0101mas ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai rekl\u0101mu personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Var tikt nov\u0113rt\u0113ta rekl\u0101mu efektivit\u0101te."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Personaliz\u0113t\u0101s rekl\u0101mas, rekl\u0101mu nov\u0113rt\u0113\u0161ana un anal\u012btiskie dati par lietot\u0101ju grup\u0101m","description":"Rekl\u0101mas ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai rekl\u0101mu personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Var tikt nov\u0113rt\u0113ta rekl\u0101mu efektivit\u0101te. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Personaliz\u0113to rekl\u0101mu profils un r\u0101d\u012b\u0161ana","description":"Rekl\u0101mas ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai rekl\u0101mu personaliz\u0113\u0161anai var tikt pievienoti papildu dati."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Personaliz\u0113tais saturs","description":"Saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai satura personaliz\u0113\u0161anai var tikt pievienoti papildu dati."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Personaliz\u0113t\u0101 satura r\u0101d\u012b\u0161ana un satura nov\u0113rt\u0113\u0161ana","description":"Saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Personaliz\u0113t\u0101 satura r\u0101d\u012b\u0161ana, satura nov\u0113rt\u0113\u0161ana un anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m","description":"Saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Personaliz\u0113tais saturs un satura nov\u0113rt\u0113\u0161ana","description":"Saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai satura personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Personaliz\u0113tais saturs, satura nov\u0113rt\u0113\u0161ana un anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m","description":"Saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai satura personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Personaliz\u0113tais saturs, satura nov\u0113rt\u0113\u0161ana, anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m un produktu izstr\u0101de","description":"Saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai satura personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu. Var tikti izmantoti dati, lai att\u012bst\u012btu vai uzlabotu lietot\u0101ju pieredzi, sist\u0113mas un programmat\u016bru"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Rekl\u0101mas un satura nov\u0113rt\u0113\u0161ana un anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m","description":"Rekl\u0101mas un satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Rekl\u0101mas un satura nov\u0113rt\u0113\u0161ana","description":"Rekl\u0101mas un satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Rekl\u0101mas nov\u0113rt\u0113\u0161ana un anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m","description":"Rekl\u0101mu ir iesp\u0113jams nov\u0113rt\u0113t. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Rekl\u0101mas un satura nov\u0113rt\u0113\u0161ana, anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m un produktu izstr\u0101de","description":"Rekl\u0101mas un satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu. Var tikti izmantoti dati, lai att\u012bst\u012btu vai uzlabotu lietot\u0101ju pieredzi, sist\u0113mas un programmat\u016bru. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Satura nov\u0113rt\u0113\u0161ana, anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m un produktu izstr\u0101de","description":"Satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu. Var tikti izmantoti dati, lai att\u012bst\u012btu vai uzlabotu lietot\u0101ju pieredzi, sist\u0113mas un programmat\u016bru."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Satura nov\u0113rt\u0113\u0161ana un produktu izstr\u0101de","description":"Satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t. Var tikti izmantoti dati, lai att\u012bst\u012btu vai uzlabotu lietot\u0101ju pieredzi, sist\u0113mas un programmat\u016bru."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Personaliz\u0113to rekl\u0101mu un satura r\u0101d\u012b\u0161ana, rekl\u0101mas un satura efektivit\u0101tes nov\u0113rt\u0113\u0161ana","description":"Rekl\u0101mas un saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Rekl\u0101mas un satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Personaliz\u0113to rekl\u0101mu un satura r\u0101d\u012b\u0161ana, rekl\u0101mu un satura efektivit\u0101tes nov\u0113rt\u0113\u0161ana un anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m","description":"Rekl\u0101mas un saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Rekl\u0101mas un satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu. Var tikti izmantoti dati, lai att\u012bst\u012btu vai uzlabotu lietot\u0101ju pieredzi, sist\u0113mas un programmat\u016bru"},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Personaliz\u0113t\u0101s rekl\u0101mas un saturs, rekl\u0101mu un satura efektivit\u0101tes nov\u0113rt\u0113\u0161ana","description":"Rekl\u0101mas un saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai rekl\u0101mu un satura personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Rekl\u0101mas un satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Personaliz\u0113t\u0101s rekl\u0101mas un saturs, rekl\u0101mu un satura efektivit\u0101tes nov\u0113rt\u0113\u0161ana un anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m","description":"Rekl\u0101mas un saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai rekl\u0101mu un satura personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Rekl\u0101mas un satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Personaliz\u0113t\u0101s rekl\u0101mas un satura profils","description":"Rekl\u0101mu un satura personaliz\u0113\u0161anai var tikt pievienoti papildu dati."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Personaliz\u0113to rekl\u0101mu un satura r\u0101d\u012b\u0161ana","description":"Rekl\u0101mas un saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Pamata rekl\u0101mas, rekl\u0101mas un satura efektivit\u0101tes nov\u0113rt\u0113\u0161ana un anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m","description":"Var tikt r\u0101d\u012btas pamata rekl\u0101mas. Rekl\u0101mas un satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Personaliz\u0113to rekl\u0101mu r\u0101d\u012b\u0161ana, personaliz\u0113tais saturs, rekl\u0101mu un satura efektivit\u0101tes nov\u0113rt\u0113\u0161ana un anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m","description":"Rekl\u0101mas un saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai satura personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Rekl\u0101mas un satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Personaliz\u0113to rekl\u0101mu r\u0101d\u012b\u0161ana, personaliz\u0113tais saturs, rekl\u0101mu un satura efektivit\u0101tes nov\u0113rt\u0113\u0161ana, anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m un produktu izstr\u0101de","description":"Rekl\u0101mas un saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai satura personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Rekl\u0101mas un satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu. Var tikti izmantoti dati, lai att\u012bst\u012btu vai uzlabotu lietot\u0101ju pieredzi, sist\u0113mas un programmat\u016bru."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Pamata rekl\u0101mas, personaliz\u0113tais saturs, rekl\u0101mu un satura efektivit\u0101tes nov\u0113rt\u0113\u0161ana un anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m","description":"Var tikt r\u0101d\u012btas pamata rekl\u0101mas. Saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai satura personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Rekl\u0101mas un satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Pamata rekl\u0101mas, personaliz\u0113tais saturs, rekl\u0101mu un satura efektivit\u0101tes nov\u0113rt\u0113\u0161ana, anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m un produktu izstr\u0101de","description":"Var tikt r\u0101d\u012btas pamata rekl\u0101mas. Saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai satura personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Rekl\u0101mas un satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu. Var tikti izmantoti dati, lai att\u012bst\u012btu vai uzlabotu lietot\u0101ju pieredzi, sist\u0113mas un programmat\u016bru."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Pamata rekl\u0101mas, personaliz\u0113tais saturs, satura efektivit\u0101tes nov\u0113rt\u0113\u0161ana un anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m","description":"Var tikt r\u0101d\u012btas pamata rekl\u0101mas. Saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai satura personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Rekl\u0101mas un satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Pamata rekl\u0101mas, personaliz\u0113tais saturs, satura efektivit\u0101tes nov\u0113rt\u0113\u0161ana, anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m un produktu izstr\u0101de","description":"Var tikt r\u0101d\u012btas pamata rekl\u0101mas. Saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai satura personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu. Var tikti izmantoti dati, lai att\u012bst\u012btu vai uzlabotu lietot\u0101ju pieredzi, sist\u0113mas un programmat\u016bru."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Pamata rekl\u0101mas, personaliz\u0113tais saturs un rekl\u0101mu efektivit\u0101tes nov\u0113rt\u0113\u0161ana","description":"Var tikt r\u0101d\u012btas pamata rekl\u0101mas. Saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai satura personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Var tikt nov\u0113rt\u0113ta rekl\u0101mu efektivit\u0101te."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Pamata rekl\u0101mas, personaliz\u0113tais saturs, rekl\u0101mu efektivit\u0101tes nov\u0113rt\u0113\u0161ana un produktu izstr\u0101de","description":"Var tikt r\u0101d\u012btas pamata rekl\u0101mas. Saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai satura personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Var tikt nov\u0113rt\u0113ta rekl\u0101mu efektivit\u0101te. Var tikti izmantoti dati, lai att\u012bst\u012btu vai uzlabotu lietot\u0101ju pieredzi, sist\u0113mas un programmat\u016bru."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Personaliz\u0113tas rekl\u0101mas, rekl\u0101mu efektivit\u0101tes nov\u0113rt\u0113\u0161ana un produktu izstr\u0101de","description":"rekl\u0101mas ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai rekl\u0101mu personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Var tikt nov\u0113rt\u0113ta rekl\u0101mu efektivit\u0101te. Var tikti izmantoti dati, lai att\u012bst\u012btu vai uzlabotu lietot\u0101ju pieredzi, sist\u0113mas un programmat\u016bru."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Personaliz\u0113tas rekl\u0101mas, anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m un produktu izstr\u0101de","description":"rekl\u0101mas ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai rekl\u0101mu personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Var tikt nov\u0113rt\u0113ta rekl\u0101mu efektivit\u0101te. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu. Var tikti izmantoti dati, lai att\u012bst\u012btu vai uzlabotu lietot\u0101ju pieredzi, sist\u0113mas un programmat\u016bru."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Personaliz\u0113tas rekl\u0101mas, rekl\u0101mu un satura efektivit\u0101tes nov\u0113rt\u0113\u0161ana, anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m un produktu izstr\u0101de","description":"rekl\u0101mas ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai rekl\u0101mu personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Rekl\u0101mas un satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu. Var tikti izmantoti dati, lai att\u012bst\u012btu vai uzlabotu lietot\u0101ju pieredzi, sist\u0113mas un programmat\u016bru."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Personaliz\u0113tas rekl\u0101mas, personaliz\u0113ta satura r\u0101d\u012b\u0161ana, rekl\u0101mu un satura efektivit\u0101tes nov\u0113rt\u0113\u0161ana, anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m un produktu izstr\u0101de","description":"rekl\u0101mas un saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai rekl\u0101mu personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Rekl\u0101mas un satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu. Var tikti izmantoti dati, lai att\u012bst\u012btu vai uzlabotu lietot\u0101ju pieredzi, sist\u0113mas un programmat\u016bru."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Personaliz\u0113tas rekl\u0101mas un saturs, rekl\u0101mu un satura efektivit\u0101tes nov\u0113rt\u0113\u0161ana, anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m un produktu izstr\u0101de","description":"rekl\u0101mas un saturu ir iesp\u0113jams personaliz\u0113t, pamatojoties uz profilu. Lab\u0101kai rekl\u0101mu un satura personaliz\u0113\u0161anai var tikt pievienoti papildu dati. Rekl\u0101mas un satura efektivit\u0101ti ir iesp\u0113jams nov\u0113rt\u0113t. Var tikt atvasin\u0101ta anal\u012btisk\u0101 inform\u0101cija par lietot\u0101ju grup\u0101m, kuras ir apskat\u012bju\u0161as rekl\u0101mas un saturu. Var tikti izmantoti dati, lai att\u012bst\u012btu vai uzlabotu lietot\u0101ju pieredzi, sist\u0113mas un programmat\u016bru."}}} \ No newline at end of file diff --git a/src/s1/config/2.0/purposes/purposes-mt.json b/src/s1/config/2.0/purposes/purposes-mt.json index 6ef08c67..e6b557e1 100644 --- a/src/s1/config/2.0/purposes/purposes-mt.json +++ b/src/s1/config/2.0/purposes/purposes-mt.json @@ -1 +1 @@ -{"vendorListVersion":79,"lastUpdated":"2021-02-25T16:36:21Z","purposes":{"1":{"id":1,"name":"A\u0127\u017cen u/jew a\u010b\u010bessa informazzjoni fuq tag\u0127mir","description":"Cookies, identifikaturi tat-tag\u0127mir, jew informazjoni o\u0127ra jisg\u0127u jin\u0127a\u017cnu jew ji\u0121u a\u010b\u010bessati fuq it-tag\u0127mir tieg\u0127ek g\u0127all-g\u0127anijiet ippre\u017centati lilek.","descriptionLegal":"Il-bejjieg\u0127a jistg\u0127u:\n* Ja\u0127\u017cnu u ja\u010b\u010bessaw informazzjoni fuq it-tag\u0127mir b\u0127al cookies u identifikaturi tat-tag\u0127mir ippre\u017centati lil utent\n"},"2":{"id":2,"name":"Ag\u0127\u017cel reklami ba\u017ci\u010bi","description":"Ir-reklami jistg\u0127u jintwerewlek abba\u017ci tal-kontenut li qed tara, l-app li qed tu\u017ca, il-lokalit\u00e0 approssimattiva tieg\u0127ek, jew it-tip ta\u2019 tag\u0127mir tieg\u0127ek.","descriptionLegal":"G\u0127al selezzjoni ta\u2019 reklami ba\u017ci\u010bi il-bejieg\u0127a jistg\u0127u:\n* Ju\u017caw l-informazzjoni f\u2019\u0127in reali dwar il-kuntest li fih se jintwera r-reklam, biex juru r-reklam, inklu\u017ca informazzjoni dwar il-kuntest u t-tag\u0127mir, b\u0127al: tip u kapa\u010bitajiet tat-tag\u0127mir, a\u0121ent tal-utent, URL, indirzz tal-IP \n* Ju\u017caw id-dejta tal-\u0121eolokazzjoni mhux pre\u010bi\u017ca tal-utent\n* Jikkontrollaw il-frekwenza tar-reklami li jintwerew lil utent.\n* Jag\u0127mlu sekwenza tal-ordni li fiha r-reklami jintwerew lil utent.\n* Jipprevjenu reklam milli jidher f\u2019kuntest editorjali mhux xieraq (jag\u0127mel \u0127sara lir-reputazzjoni tad-ditta) kuntest\nIl-bejjieg\u0127a ma jistg\u0127ux:\n* Jo\u0127olqu profil ta\u2019 reklami personalizzati billi ju\u017caw din l-informazzjoni g\u0127as-selezzjoni ta\u2019 reklami futuri ming\u0127ajr ba\u017ci legali separata biex jo\u0127olqu profil ta\u2019 reklami personalizzati.\nN.B. Mhux pre\u010bi\u017c/a tfisser biss lokalit\u00e0 approssimattiva li hija permessa li tinvolvi mill-anqas ra\u0121\u0121 ta\u2019 500 metru.\n"},"3":{"id":3,"name":"O\u0127loq profil ta\u2019 reklami personalizzati","description":"Jista\u2019 jinbena profil dwarek u dwar l-interessi tieg\u0127ek biex tara reklami personalizzati li huma rilevanti g\u0127alik","descriptionLegal":"Biex to\u0127loq profil ta\u2019 reklami personalizzati l-bejjieg\u0127a jistg\u0127u:\n* Ji\u0121bru informazzjoni dwar utent, inklu\u017ci l-attivit\u00e0 tal-utent, l-interessi, \u017cjarat f\u2019siti jew apps, l-informazzjoni demografika, jew il-lokalit\u00e0, biex jo\u0127olqu jew jeditjaw profil tal-utent g\u0127all-u\u017cu f\u2019reklamar personalizzat.\n* G\u0127aqqad din l-informazzjoni ma 'informazzjoni o\u0127ra mi\u0121bura qabel, inklu\u017c minn madwar websajts u apps, biex to\u0127loq jew teditja profil ta' utent g\u0127all-u\u017cu f'reklamar personalizzat.\n"},"4":{"id":4,"name":"Ag\u0127\u017cel reklami personalizzati","description":"Ir-reklami personalizzati jistg\u0127u jintwerewlek abba\u017ci ta\u2019 profil dwarek.","descriptionLegal":"Biex jag\u0127\u017clu reklami personalizzati l-bejjieg\u0127a jistg\u0127u:\n* Jag\u0127\u017clu reklami personalizzati abba\u017ci tal-profil tal-utent jew dejta storika o\u0127ra tal-utent, inklu\u017ci l-attivit\u00e0, l-interessi, \u017cjarat f\u2019siti jew apps, il-lokalit\u00e0, jew l-informazzjoni demografika pre\u010bedenti tal-utent.\n"},"5":{"id":5,"name":"O\u0127loq profil ta\u2019 kontenut personalizzat","description":"Profil jista\u2019 jinbena dwarek u dwar l-interessi tieg\u0127ek biex juruk kontenut personalizzat li hu relevanti g\u0127alik.","descriptionLegal":"Biex to\u0127loq profil ta\u2019 kontenut personalizzat il-bejjieg\u0127a jistg\u0127u:\n* I\u0121bru informazzjoni dwar utent, inklu\u017ci l-attivit\u00e0, l-interessi, s-siti li jkun \u017car jew l-apps, l-informazzjoni demografika, jew il-post, biex jo\u0127olqu jew jedittjaw profil tal-utent g\u0127al kontenut personalizzat.\n* G\u0127aqqad din l-informazzjoni ma 'informazzjoni o\u0127ra mi\u0121bura qabel, inklu\u017c minn madwar websajts u apps, biex to\u0127loq jew teditja profil ta' utent g\u0127all-u\u017cu fil-personalizzazzjoni tal-kontenut."},"6":{"id":6,"name":"Ag\u0127\u017cel kontenut personalizzat","description":"Il-kontenut personalizzat jista\u2019 jintwera lilek abba\u017ci ta\u2019 profil dwarek.","descriptionLegal":"Biex tag\u0127\u017cel kontenut personalizzat il-bejjieg\u0127a jistg\u0127u:\n* Ag\u0127\u017cel kontenut personalizzat abba\u017ci tal-profil ta\u2019 utent jew dejta storika o\u0127ra tal-utent, inklu\u017ci l-attivit\u00e0, l-interessi, is-siti li jkun \u017car jew l-apps, il-post, jew l-informazzjoni demogrfika pre\u010bedenti tal-utent.\n"},"7":{"id":7,"name":"Kejjel il-prestazzjoni tar-reklam","description":"Il-prestazzjoni u l-effettivit\u00e0 tar-reklami li inti tara jew tintera\u0121ixxi mag\u0127hom jistg\u0127u\u2019 jitkejlu.","descriptionLegal":"Biex ikejlu l-prestazzjoni tar-reklam il-bejjieg\u0127a jistg\u0127u:\n* Ikejlu jekk u kif twasslu r-reklami g\u0127and l-utent u kif dan intera\u0121ixxa mag\u0127hom\n* Jipprovdu rappurtar dwar ir-reklami inklu\u017ci l-effettivit\u00e0 u l-prestazzjoni tag\u0127hom\n* Jipprovdu rappurtar dwar l-utenti li intera\u0121ixxew mar-reklami billi u\u017caw dejta li \u0121iet osservata waqt li l-utent kien qed jintera\u0121ixxi ma\u2019 dak ir-reklam\n* Jipprovdu rappurtar lil pubblikaturi dwar ir-reklami li jidhru fuq il-proprjet\u00e0 tag\u0127hom\n* Ikejlu jekk reklam huwiex qed jidher fil-kuntest ta\u2019 ambjent editorjali xieraq (sikurezza tar-reputazzjoni tad-ditta - brand safe)\n* Jiddeterminaw il-persenta\u0121\u0121 tar-reklam li kellu l-opportunit\u00e0 li jintwera u kemm damet dik l-opportunit\u00e0 \nIl-bejjieg\u0127a ma jistg\u0127ux:\n* Japplikaw dejta tal-intuwizzjonijiet ta\u2019 panel jew ta\u2019 udjenza derivata bl-istess mod g\u0127al kejl ta\u2019 dejta tar-reklam ming\u0127ajr ba\u017ci legali biex japplikaw ri\u010berka tas-suq biex ji\u0121\u0121eneraw l-intuwizzjonijiet tal-udjenza.\n"},"8":{"id":8,"name":"Kejjel il-prestazzjoni tal-kontenut","description":"Il-prestazzjoni u l-effettivit\u00e0 tal-kontenut li inti tara jew tintera\u0121ixxi mag\u0127hom jistg\u0127u jitkejlu.","descriptionLegal":"Biex ikejlu il-prestazzjoni tal-kontenut il-bejjieg\u0127a jistg\u0127u:\n\u2022\tIkejlu u jirrappurtaw dwar kif il-kontenut twassal g\u0127and l-utenti u intera\u0121ixxew mieg\u0127u.\n\u2022\tJipprovdu rappurtar, bl-u\u017cu ta\u2019 informazzjoni mkejla direttament jew mag\u0127rufa, dwar l-utenti li intera\u0121ixxew mal-kontenut\nIl-bejjieg\u0127a ma jistg\u0127ux:\n\u2022\tIkejlu jekk u kif ir-reklami (inklu\u017ci r-reklami nattivi) twasslu g\u0127and l-utent u kif intera\u0121ixxa mag\u0127hom.\n\u2022\tJapplikaw dejta tal-intuwizzjonijiet ta\u2019 panel jew ta\u2019 udjenza derivata bl-istess mod g\u0127al kejl ta\u2019 dejta tar-reklam ming\u0127ajr ba\u017ci legali biex japplikaw ri\u010berka tas-suq biex ji\u0121\u0121eneraw l-intuwizzjonijiet tal-udjenza.\n"},"9":{"id":9,"name":"Applika r-ri\u010berka tas-suq biex ti\u0121\u0121enera intuwizzjonijiet tal-udjenza","description":"Ir-ri\u010berka dwar is-suq tista\u2019 tintu\u017ca biex wie\u0127ed isir jaf aktar dwar l-udjenzi li j\u017curu siti/apps u jaraw reklami.","descriptionLegal":"Biex tapplika r-ri\u010berka tas-suq u ji\u0121\u0121eneraw intuwizzjonijiet tal-udjenza l-bejjieg\u0127a jistg\u0127u:\n* Jipprovdu rappurtar aggregat g\u0127al dawk li jirreklamaw jew ir-rappre\u017centanti tag\u0127hom dwar l-udjenzi mil\u0127uqa mir-reklami tag\u0127hom, permezz ta\u2019 intuwizzjonijiet ibba\u017cati fuq panel u dawk li huma derivati b\u2019mod simili.\n* Jipprovdu rappurtar aggregat lil pubblikaturi dwar l-udjenzi li \u0121ew servuti bil-kontenut jew intera\u0121ixxew mieg\u0127u u/jew ma\u2019 reklami fuq il-proprjet\u00e0 tag\u0127hom billi applikaw intuwizzjonijiet ibba\u017cati fuq panel u dawk li huma derivati b\u2019mod simili. \n* Jasso\u010bjaw dejta offlajn ma\u2019 utent onlajn g\u0127all-g\u0127anijiet ta\u2019 ri\u010berka dwar is-suq biex ji\u0121\u0121eneraw intuwizzjonijiet dwar l-udjenza jekk il-bejjieg\u0127a jkunu ddikjaraw li jqabblu u jg\u0127aqqdu flimkien sorsi ta\u2019 dejta offlajn (Karatteristika 1)\nIl-bejjieg\u0127a ma jistg\u0127ux: \n* Ikejlu l-prestazzjoni u l-effettivit\u00e0 tar-reklami li twasslu lil utent spe\u010bifiku jew li intera\u0121ixxa mag\u0127hom, ming\u0127ajr ba\u017ci legali biex titkejjel il-prestazzjoni tar-reklam.\n* Ikejlu dak il-kontenut li twassal lil utent spe\u010bifiku u kif intera\u0121ixxa mieg\u0127u, ming\u0127ajr ba\u017ci legali biex ikejlu l-prestazzjoni tal-kontenut.\n"},"10":{"id":10,"name":"\u017bviluppa u tejjeb il-prodotti","description":"Id-dejta tieg\u0127ek tista\u2019 tintu\u017ca biex ittejjeb sistemi u softwer e\u017cistenti, u biex ji\u0121u \u017cviluppati prodotti \u0121odda.","descriptionLegal":"Biex ji\u017cviluppaw prodotti \u0121odda u jtejbu l-prodotti l-bejjieg\u0127a jistg\u0127u:\n* Ju\u017caw informazzjoni biex itejbu l-prodotti e\u017cistenti tag\u0127hom b\u2019karatteristi\u010bi \u0121odda u biex ji\u017cviluppaw prodotti \u0121odda\n* Jo\u0127olqu mudelli \u0121odda u algoritmi permezz ta\u2019 tag\u0127lim bil-magni\nIl-bejjieg\u0127a ma jistg\u0127ux:\n* Jag\u0127mlu operazzjonijiet o\u0127ra ta\u2019 ppro\u010bessar ta\u2019 dejta ta\u0127t dan l-g\u0127an i\u017cda li huma permessi ta\u0127t g\u0127an differenti\n"}},"specialPurposes":{"1":{"id":1,"name":"Kun \u010bert mis-sigurt\u00e0, ipprevjeni l-frodi, u ne\u0127\u0127i d-difetti","description":"Id-dejta tieg\u0127ek tista\u2019 tintu\u017ca biex isir monitora\u0121\u0121 u tipprevjeni attivit\u00e0 qarrieqa, u biex ti\u017cgura li s-sistemi u l-pro\u010bessi ja\u0127dmu b\u2019mod xieraq u sikur.","descriptionLegal":"Biex ji\u017cguraw is-sigurt\u00e0, jipprevjenu l-frodi u jne\u0127\u0127u d-difetti l-bejjieg\u0127a jistg\u0127u:\n* Ji\u017cguraw li d-dejta ti\u0121i tra\u017cmessa b\u2019mod sikur \n* Jidentifikaw u jipprevjenu attivit\u00e0 malizzju\u017ca, qarrieqa, invalida, jew illegali.\n* Ji\u017cguraw l-operazzjoni korretta u effi\u010bjenti ta\u2019 sistemi u pro\u010bessi, inklu\u017ci l-monitora\u0121\u0121 u t-titjib tal-prestazzjoni ta\u2019 sistemi u pro\u010bessi involuti f\u2019g\u0127anijiet permessi\nIl-bejjieg\u0127a ma jistg\u0127ux:\n* Jag\u0127mlu operazzjoni ta\u2019 ppro\u010bessar ta\u2019 kwalunkwe dejta o\u0127ra ta\u0127t dan il-g\u0127an i\u017cda li hi permessa ta\u0127t g\u0127an differenti\nNota: Id-dejta mi\u0121bura u u\u017cata biex ti\u0121i \u017cgurata s-sigurt\u00e0, il-prevenzjoni tal-frodi, u d-dibaggjar tista\u2019 tinkludi karatteristiki tat-tag\u0127mir mibg\u0127uta awtomatikament g\u0127all-identifikazzjoni, dejta ta\u2019 \u0121eolokazzjoni pre\u010bi\u017ca, u dejta miksuba billi attivament ji\u0121u skenjati karatteristiki tat-tag\u0127mir g\u0127all-identifikazzjoni ming\u0127ajr \u017cvelar separat u/jew inklu\u017cjoni. \n"},"2":{"id":2,"name":"Wassal b\u2019mod tekniku reklami jew kontenut","description":"It-tag\u0127mir tieg\u0127ek jista\u2019 jir\u010bievi u jibg\u0127at informazzjoni li t\u0127allik tara u tintera\u0121ixxi ma\u2019 reklami u kontenut.","descriptionLegal":"Biex iwasslu informazzjoni u jwie\u0121bu g\u0127al talbiet tekni\u010bi l-bejjieg\u0127a jistg\u0127u:\n* Ju\u017caw l-indirizz IP ta\u2019 utent biex iwasslu reklam fuq l-internet\n* Iwie\u0121bu g\u0127all-interazzjoni ta\u2019 utent ma\u2019 reklam billi jibag\u0127tu lill-utent f\u2019pa\u0121na landing\n* Ju\u017caw l-indirizz IP ta\u2019 utent biex iwasslu kontenut fuq l-internet\n* Iwie\u0121bu g\u0127all-interazzjoni ta\u2019 utent mal-kontenut billi jibag\u0127tu l-utent f\u2019pa\u0121na ewlenija\n* Ju\u017caw informazzjoni dwar it-tip u l-kapa\u010bitajiet tat-tag\u0127mir biex iwasslu reklami jew kontenut, pere\u017cempju, biex iwasslu reklam kreattiv ta\u2019 daqs tajjeb jew fajl ta\u2019 vidjow f\u2019format li t-tag\u0127mir jissapportja\nIl-bejjieg\u0127a ma jistg\u0127ux:\n* Jag\u0127mlu operazzjonijiet o\u0127ra ta\u2019 ppro\u010bessar ta\u2019 dejta ta\u0127t dan l-g\u0127an i\u017cda li huma permessi ta\u0127t g\u0127an differenti\n"}},"features":{"1":{"id":1,"name":"Qabbel u kkombina ofline sorsi ta\u2019 dejta","description":"Id-dejta minn sorsi offlajn tista\u2019 ting\u0127aqad mal-attivit\u00e0 tieg\u0127ek onlajn biex tissapportja wie\u0127ed mill-g\u0127anijiet jew aktar.","descriptionLegal":"Il-bejjieg\u0127a jistg\u0127u: \n* Jikkombinaw dejta miksuba offlajn ma\u2019 dejta mi\u0121bura onlajn b\u2019sapport g\u0127al wie\u0127ed jew aktar mill-G\u0127anijiet jew mill-G\u0127anijiet Spe\u010bjali.\n"},"2":{"id":2,"name":"Illinkja tag\u0127miriet differenti","description":"Tag\u0127miriet differenti jistg\u0127u ji\u0121u determinati li jappartjenu lilek jew l-unit\u00e0 domestika tieg\u0127ek b\u2019sapport g\u0127al g\u0127an wie\u0127ed jew aktar.","descriptionLegal":"Il-bejjieg\u0127a jistg\u0127u:\n\u2022\tB\u2019mod determinat jidde\u010biedu li \u017cew\u0121 tag\u0127miriet jew aktar jappartjenu g\u0127all-istess utent jew unit\u00e0 domestika\n\u2022\tB\u2019mod probabbilistiku jiddeterminaw li \u017cew\u0121 tag\u0127miriet jew aktar jappartjenu g\u0127all-istess utent jew unit\u00e0 domestika\n\u2022\tJiskenjaw b\u2019mod attiv il-karatteristiki tat-tag\u0127mir g\u0127all-identifikazzjoni probabbilistika jekk l-utenti \u0127allewx il-bejjiieg\u0127a jiskenjaw b\u2019mod attiv il-karatteristiki tat-tag\u0127mir g\u0127all-identifikazzjoni (Karatteristika Spe\u010bjali 2)\n"},"3":{"id":3,"name":"Ir\u010bievi u u\u017ca karatteristiki tat-tag\u0127mir mibg\u0127uta awtomatikament g\u0127all-identifikazzjoni","description":"It-tag\u0127mir tieg\u0127ek irid ikun distint minn tag\u0127miriet o\u0127ra abba\u017ci tal-informazzjoni li jibg\u0127at awtomatikament, b\u0127al indirizz tal-IP jew tip ta\u2019 braw\u017cer.","descriptionLegal":"Il-bejjieg\u0127a jistg\u0127u:\n* O\u0127loq identifikatur billi tu\u017ca dejta mi\u0121bura awtomatikament minn tag\u0127mir g\u0127al karatteristiki spe\u010bifi\u010bi, e\u017c. indirizz tal-IP, string ta\u2019 utent-a\u0121ent.\n* Ju\u017caw dak l-identifikatur biex jidentifikaw tag\u0127mir mill-\u0121did.\nIl-bejjieg\u0127a ma jistg\u0127ux:\n* Jo\u0127olqu identifikatur bl-u\u017cu tad-dejta mi\u0121bura permezz ta\u2019 skenjar b\u2019mod attiv g\u0127al karatteristiki spe\u010bjali, e\u017c. font installata jew ir-ri\u017coluzzjoni tal-iskrin ming\u0127ajr l-inklu\u017cjoni separata tal-utenti biex jiskenjaw attivament il-karatteristiki tat-tag\u0127mir g\u0127all-identifikazjoni.\n* Ju\u017caw dak l-identifikatur biex jidentifikaw it-tag\u0127mir mill-\u0121did.\n"}},"specialFeatures":{"1":{"id":1,"name":"U\u017ca dejta \u0121eolokalizzata pre\u010bi\u017ca","description":"Id-dejta \u0121eolokalizzata pre\u010bi\u017ca tieg\u0127ek tista\u2019 tintu\u017ca b\u2019sapport g\u0127al g\u0127an wie\u0127ed jew aktar. Dan ifisser li l-lokalit\u00e0 tieg\u0127ek tista\u2019 tkun pre\u010bi\u017ca f\u2019medda ta\u2019 diversi metri.","descriptionLegal":"Il-bejjieg\u0127a jistg\u0127u:\n* Ji\u0121bru u jippro\u010bessaw dejta ta\u2019 \u0121eolokazzjoni pre\u010bi\u017ca b\u2019sapport g\u0127al g\u0127an wie\u0127ed jew aktar.\nN.B. \u0120eolokazzjoni pre\u010bi\u017ca tfisser li m\u2019hemm l-ebda restrizzjoni fuq il-pre\u010bi\u017cjoni tal-lokalit\u00e0 ta\u2019 utent, din tista\u2019 tkun pre\u010bi\u017ca f\u2019medda ta\u2019 diversi metri.\nNota: \u010aertu u\u017cu ta\u2019 din id-dejta g\u0127as-sigurt\u00e0 u l-prevenzjoni tal-frodi huwa kopert separatament u ma je\u0127tie\u0121x l-inklu\u017cjoni tal-utent separata g\u0127all-u\u017cu tad-dejta ta\u2019 \u0121eolokazzjoni pre\u010bi\u017ca.\n"},"2":{"id":2,"name":"Iskenja l-karatteristiki tat-tag\u0127mir b\u2019mod attiv g\u0127all-identifikazzjoni","description":"It-tag\u0127mir tieg\u0127ek jista\u2019 ji\u0121i identifikat abba\u017ci ta\u2019 skenn tat-ta\u0127lita unika tal-karatteristiki tat-tag\u0127mir tieg\u0127ek.","descriptionLegal":"Il-bejjieg\u0127a jistg\u0127u:\n* Jo\u0127olqu identifikatur bl-u\u017cu tad-dejta mi\u0121bura permezz ta\u2019 skenjar b\u2019mod attiv g\u0127all-karatteristiki spe\u010bjali, e\u017c. il-fonts installati jew ir-ri\u017coluzzjoni tal-iskrin. \n* Ju\u017caw dak l-identifikatur biex jidentifikaw mill-\u0121did it-tag\u0127mir.\nNota: \u010aertu u\u017cu ta\u2019 din id-dejta g\u0127as-sigurt\u00e0 jew il-prevenzjoni tal-frodi huwa kopert separatament u ma je\u0127tie\u0121x l-inklu\u017cjoni separata tal-utent fl-iskenjar attiv tal-karatteristiki tat-tag\u0127mir g\u0127all-identifikazzjoni.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Dejta \u0121eolokalizzata pre\u010bi\u017ca, u identifikazzjoni permezz tal-iskenjar tat-tag\u0127mir","description":"Tista\u2019 tintu\u017ca \u0121eolokalizzazzjoni pre\u010bi\u017ca u informazzjoni dwar il-kartteristi\u010bi tat-tag\u0127mir."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Reklami ba\u017ci\u010bi, u kejl tar-reklam","description":"Ir-reklami ba\u017ci\u010bi jistg\u0127u ji\u0121u servuti. Il-prestazzjoni tar-reklam tista\u2019 titkejjel."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Reklami personalizzati","description":"Ir-reklami jistg\u0127u ji\u0121u ppersonalizzati abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cied aktar dejta biex ir-reklami ji\u0121u ppersonalizzati a\u0127jar."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Reklami ba\u017ci\u010bi, u kejl tar-reklam","description":"Ir-reklami ba\u017ci\u010bi jistg\u0127u ji\u0121u servuti. Il-prestazzjoni tar-reklam tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Reklami ba\u017ci\u010bi, profil ta\u2019 reklami personalizzati u kejl tar-reklam","description":"Ir-reklami ba\u017ci\u010bi jistg\u0127u ji\u0121u servuti. Tista\u2019 ti\u017cied aktar dejta biex ir-reklami ji\u0121u ppersonalizzati a\u0127jar. Il-prestazzjoni tar-reklam tista\u2019 titkejjel."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Il-pre\u017centazzjoni u l-kejl tar-rekalmi personalizzati","description":"Ir-reklami jistg\u0127u ji\u0121u ppersonalizzati abba\u017ci ta\u2019 profil. Il-prestazzjoni tar-reklam tista\u2019 titkejjel."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Il-pre\u017centazzjoni tar-reklami personalizzati, u l-kejl tar-reklam, u l-intuwizzjonijiet tal-udjenza","description":"Ir-reklami jistg\u0127u ji\u0121u ppersonalizzati abba\u017ci ta\u2019 profil. Il-prestazzjoni tar-reklam tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Reklami personalizzati, u kejl tar-reklam","description":"Ir-reklami jistg\u0127u ji\u0121u ppersonalizzati abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cied aktar dejta biex ir-reklami ji\u0121u ppersonalizzati a\u0127jar. Il-prestazzjoni tar-reklam tista\u2019 titkejjel."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Reklami personalizzati, kejl tar-reklam, u intuwizzjonijiet tal-udjenza","description":"Ir-reklami jistg\u0127u ji\u0121u ppersonalizzati abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cied aktar dejta biex ir-reklami ji\u0121u ppersonalizzati a\u0127jar. Il-prestazzjoni tar-reklam tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Pre\u017centazzjoni u profil tar-reklami personalizzati","description":"Ir-reklami jistg\u0127u ji\u0121u ppersonalizzati abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cied aktar dejta biex ir-reklami ji\u0121u ppersonalizzati a\u0127jar."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Kontenut personalizzat","description":"Il-kontenut jista\u2019 ji\u0121i ppersonalizzat abba\u017ci tal-profil. Tista\u2019 ti\u017cdied aktar dejta biex ji\u0121i ppersonalizzat a\u0127jar il-kontenut."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Pre\u017centazzjoni tal-kontenut personalizzat, u kejl tal-kontenut","description":"Il-kontenut jista\u2019 ji\u0121i ppersonalizzat abba\u017ci ta\u2019 profil. Il-prestazzjoni tal-kontenut tista\u2019 titkejjel."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Pre\u017centazzjoni tal-kontenut personalizzat, kejl tal-kontenut u intuwizzjonijiet tal-udjenza","description":"Il-kontenut jista\u2019 ji\u0121i ppersonalizzat abba\u017ci ta\u2019 profil. Il-prestazzjoni tal-kontenut tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Kontenut personalizzat, u kejl tal-kontenut","description":"Il-kontenut jista\u2019 ji\u0121i ppersonalizzat abba\u017ci tal-profil. Tista\u2019 ti\u017cdied aktar dejta biex ji\u0121i ppersonalizzat a\u0127jar il-kontenut. Il-prestazzjoni tal-kontenut tista\u2019 titkejjel."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Kontenut personalizzat, kejl tal-kontenut u intuwizzjonijiet tal-udjenza","description":"Il-kontenut jista\u2019 ji\u0121i ppersonalizzat abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cdied aktar dejta biex ji\u0121i ppersonalizzat a\u0127jar il-kontenut. Il-prestazzjoni tal-kontenut tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Kontenut personalizzat, kejl tal-kontenut, intuwizzjonijiet tal-udjenza, u \u017cvilupp tal-prodott.","description":"Il-kontenut jista\u2019 ji\u0121i ppersonalizzat abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cdied aktar dejta biex ji\u0121i ppersonalizzat a\u0127jar il-kontenut. Il-prestazzjoni tal-kontenut tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati. Id-dejta tista\u2019 tintu\u017ca biex jinbnew jew jitjiebu l-esperjenza tal-utent, is-sistemi, u s-softwer"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Kejl tar-reklam u tal-kontenut, u intuwizzjonijiet tal-udjenza","description":"Il-prestazzjoni tar-reklam u tal-kontenut tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Kejl tar-reklam u tal-kontenut","description":"Il-prestazzjoni tar-reklam u tal-kontenut tista\u2019 titkejjel."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Kejl tar-reklam, u intuwizzjonijiet tal-udjenza","description":"Ir-reklam jista\u2019 jitkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Kejl tar-reklam u tal-kontenut, intuwizzjonijiet tal-udjenza, u \u017cvilupp tal-prodott","description":"Il-prestazzjoni tar-reklam u tal-kontenut tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati. Id-dejta tista\u2019 tintu\u017ca biex jinbnew jew jitjiebu l-esperjenza tal-utent, is-sistemi, u s-softwer. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Kejl tal-kontenut, intuwizzjonijiet tal-udjenza, u \u017cvilupp tal-prodott","description":"Il-prestazzjoni tal-kontenut tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati. Id-dejta tista\u2019 tintu\u017ca biex jinbnew jew jitjiebu l-esperjenza tal-utent, is-sistemi, u s-softwer."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Kejl tal-kontenut, u \u017cvilupp tal-prodott","description":"Il-prestazzjoni tal-kontenut tista\u2019 titkejjel. Id-dejta tista\u2019 tintu\u017ca biex jinbnew jew jitjiebu l-esperjenza tal-utent, is-sistemi, u s-softwer."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Pre\u017centazzjoni tar-reklami u tal-kontenut personalizzati, kejl tar-reklam u tal-kontenut","description":"Ir-reklami u l-kontenut jistg\u0127u ji\u0121u ppersonalizzati abba\u017ci ta\u2019 profil. Il-prestazzjoni tar-reklam u tal-kontenut tista\u2019 titkejjel."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Pre\u017centazzjoni tar-reklami u tal-kontenut personalizzati, kejl tar-reklam u tal-kontenut u intuwizzjonijiet tal-udjenza","description":"Ir-reklami u l-kontenut jistg\u0127u ji\u0121u ppersonalizzati abba\u017ci ta\u2019 profil. Il-prestazzjoni tar-reklam u tal-kontenut tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati. Id-dejta tista\u2019 tintu\u017ca biex jinbnew jew jitjiebu l-esperjenza tal-utent, is-sistemi, u s-softwer."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Reklami u kontenut personalizzati, kejl tar-reklam u tal-kontenut","description":"Ir-reklami u l-kontenut jistg\u0127u ji\u0121u ppersonalizzati abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cdied aktar dejta biex ji\u0121u ppersonalizzati a\u0127jar ir-reklami u l-kontenut. Il-prestazzjoni tar-reklam u tal-kontenut tista\u2019 titkejjel."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Reklami u kontenut personalizzati, kejl tar-reklam u tal-kontenut, u intuwizzjonijiet tal-udjenza","description":"Ir-reklami u l-kontenut jistg\u0127u ji\u0121u ppersonalizzati abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cdied aktar dejta biex ji\u0121u ppersonalizzati a\u0127jar ir-reklami u l-kontenut. Il-prestazzjoni tar-reklam u tal-kontenut tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Profil tal-kontenut u tar-reklami personalizzati","description":"Tista\u2019 ti\u017cdied aktar dejta biex ji\u0121u ppersonalizzati r-reklami u l-kontenut."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Pre\u017centazzjoni tal-kontenut u tar-reklami personalizzati","description":"Ir-reklami u l-kontenut jistg\u0127u ji\u0121u ppersonalizzati abba\u017ci ta\u2019 profil."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Reklami ba\u017ci\u010bi, kejl tar-reklam u tal-kontenut, u intuwizzjonijiet tal-udjenza","description":"Ir-reklami ba\u017ci\u010bi jistg\u0127u ji\u0121u servuti. Il-prestazzjoni tar-reklam u tal-kontenut tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Pre\u017centazzjoni ta\u2019 reklami personalizzati, kontenut personalizzat, kejl tar-reklam u tal-kontenut, u intuwizzjonijiet tal-udjenza","description":"Ir-reklami u l-kontenut jistg\u0127u ji\u0121u ppersonalizzati abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cdied aktar dejta biex ji\u0121i ppersonalizzat a\u0127jar il-kontenut. Il-prestazzjoni tar-reklam u tal-kontenut tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Pre\u017centazzjoni ta\u2019 reklami personalizzati, kontenut personalizzat, kejl tar-reklam u tal-kontenut, intuwizzjonijiet tal-udjenza, u \u017cvilupp tal-prodott","description":"Ir-reklami u l-kontenut jistg\u0127u ji\u0121u ppersonalizzati abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cdied aktar dejta biex ji\u0121i ppersonalizzat a\u0127jar il-kontenut. Il-prestazzjoni tar-reklam u tal-kontenut tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati. Id-dejta tista\u2019 tintu\u017ca biex jinbnew jew jitjiebu l-esperjenza tal-utent, is-sistemi, u s-softwer."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Reklami ba\u017ci\u010bi, kontenut personalizzat, kejl tar-reklam u tal-kontenut, u intuwizzjonijiet tal-udjenza","description":"Ir-reklami ba\u017ci\u010bi jistg\u0127u ji\u0121u servuti. Il-kontenut jista\u2019 ji\u0121i ppersonalizzat abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cdied aktar dejta biex ji\u0121i ppersonalizzat a\u0127jar il-kontenut. Il-prestazzjoni tar-reklam u tal-kontenut tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Reklami ba\u017ci\u010bi, kontenut personalizzat, kejl tar-reklam u l-kontenut, intuwizzjonijiet tal-udjenza, u \u017cvilupp tal-prodott","description":"Ir-reklami ba\u017ci\u010bi jistg\u0127u ji\u0121u servuti. Il-kontenut jista\u2019 ji\u0121i ppersonalizzat abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cdied aktar dejta biex ji\u0121i ppersonalizzat a\u0127jar il-kontenut. Il-prestazzjoni tar-reklam u tal-kontenut tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati. Id-dejta tista\u2019 tintu\u017ca biex jinbnew jew jitjiebu l-esperjenza tal-utent, is-sistemi, u s-softwer."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Reklami ba\u017ci\u010bi, kontenut personalizzat, kejl tal-kontenut, u intuwizzjonijiet tal-udjenza","description":"Ir-reklami ba\u017ci\u010bi jistg\u0127u ji\u0121u servuti. Il-kontenut jista\u2019 ji\u0121i ppersonalizzat abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cdied aktar dejta biex ji\u0121i ppersonalizzat a\u0127jar il-kontenut. Il-prestazzjoni tar-reklam u tal-kontenut tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Reklami ba\u017ci\u010bi, kontenut personalizzat, kejl tal-kontenut, intuwizzjonijiet tal-udjenza u \u017cvilupp tal-prodott","description":"Ir-reklami ba\u017ci\u010bi jistg\u0127u ji\u0121u servuti. Il-kontenut jista\u2019 ji\u0121i ppersonalizzat abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cdied aktar dejta biex ji\u0121i ppersonalizzat a\u0127jar il-kontenut. Il-prestazzjoni tal-kontenut tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati. Id-dejta tista\u2019 tintu\u017ca biex jinbnew jew jitjiebu l-esperjenza tal-utent, is-sistemi, u s-softwer."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Reklami ba\u017ci\u010bi, kontenut personalizzat, u kejl tar-reklam","description":"Ir-reklami ba\u017ci\u010bi jistg\u0127u ji\u0121u servuti. Il-kontenut jista\u2019 ji\u0121i ppersonalizzat abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cdied aktar dejta biex ji\u0121i ppersonalizzat a\u0127jar il-kontenut. Il-prestazzjoni tar-reklam tista\u2019 titkejjel."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Reklami ba\u017ci\u010bi, kontenut personalizzat, kejl tar-reklam, u \u017cvilupp tal-prodott","description":"Ir-reklami ba\u017ci\u010bi jistg\u0127u ji\u0121u servuti. Il-kontenut jista\u2019 ji\u0121i ppersonalizzat abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cdied aktar dejta biex ji\u0121i ppersonalizzat a\u0127jar il-kontenut. Il-prestazzjoni tar-reklam tista\u2019 titkejjel. Id-dejta tista\u2019 tintu\u017ca biex jinbnew jew jitjiebu l-esperjenza tal-utent, is-sistemi, u s-softwer."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Reklami personalizzati, kejl tar-reklam, u \u017cvilupp tal-prodott","description":"Ir-reklami jistg\u0127u ji\u0121u ppersonalizzati abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cied aktar dejta biex ir-reklami ji\u0121u ppersonalizzati a\u0127jar. Il-prestazzjoni tar-reklam tista\u2019 titkejjel. Id-dejta tista\u2019 tintu\u017ca biex jinbnew jew jitjiebu l-esperjenza tal-utent, is-sistemi, u s-softwer."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Reklami personalizzati, kejl tar-reklam, intuwizzjonijiet tal-udjenza, u \u017cvilupp tal-prodott","description":"Ir-reklami jistg\u0127u ji\u0121u ppersonalizzati abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cied aktar dejta biex ir-reklami ji\u0121u ppersonalizzati a\u0127jar. Il-prestazzjoni tar-reklam tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati. Id-dejta tista\u2019 tintu\u017ca biex jinbnew jew jitjiebu l-esperjenza tal-utent, is-sistemi, u s-softwer."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Reklami personalizzati, kejl tar-reklam u tal-kontenut, intuwizzjonijiet tal-udjenza, u \u017cvilupp tal-prodott","description":"Ir-reklami jistg\u0127u ji\u0121u ppersonalizzati abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cied aktar dejta biex ir-reklami ji\u0121u ppersonalizzati a\u0127jar. Il-prestazzjoni tar-reklam u tal-kontenut tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati. Id-dejta tista\u2019 tintu\u017ca biex jinbnew jew jitjiebu l-esperjenza tal-utent, is-sistemi, u s-softwer."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Reklami personalizzati, wiri ta\u2019 kontenut personalizzat, kejl tar-reklam u tal-kontenut, intuwizzjonijiet tal-udjenza, u \u017cvilupp tal-prodott","description":"Ir-reklami u l-kontenut jistg\u0127u ji\u0121u ppersonalizzati abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cied aktar dejta biex ir-reklami ji\u0121u ppersonalizzati a\u0127jar. Il-prestazzjoni tar-reklam u tal-kontenut tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati. Id-dejta tista\u2019 tintu\u017ca biex jinbnew jew jitjiebu l-esperjenza tal-utent, is-sistemi, u s-softwer."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Reklami u kontenut personalizzati, kejl tar-reklam u tal-kontenut, intuwizzjonijiet tal-udjenza, u \u017cvilupp tal-prodott","description":"Ir-reklami u l-kontenut jistg\u0127u ji\u0121u ppersonalizzati abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cdied aktar dejta biex ji\u0121u ppersonalizzati a\u0127jar ir-reklami u l-kontenut. Il-prestazzjoni tar-reklam u tal-kontenut tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati. Id-dejta tista\u2019 tintu\u017ca biex jinbnew jew jitjiebu l-esperjenza tal-utent, is-sistemi, u s-softwer."}}} \ No newline at end of file +{"vendorListVersion":94,"lastUpdated":"2021-06-10T16:44:01Z","purposes":{"1":{"id":1,"name":"A\u0127\u017cen u/jew a\u010b\u010bessa informazzjoni fuq tag\u0127mir","description":"Cookies, identifikaturi tat-tag\u0127mir, jew informazjoni o\u0127ra jisg\u0127u jin\u0127a\u017cnu jew ji\u0121u a\u010b\u010bessati fuq it-tag\u0127mir tieg\u0127ek g\u0127all-g\u0127anijiet ippre\u017centati lilek.","descriptionLegal":"Il-bejjieg\u0127a jistg\u0127u:\n* Ja\u0127\u017cnu u ja\u010b\u010bessaw informazzjoni fuq it-tag\u0127mir b\u0127al cookies u identifikaturi tat-tag\u0127mir ippre\u017centati lil utent\n"},"2":{"id":2,"name":"Ag\u0127\u017cel reklami ba\u017ci\u010bi","description":"Ir-reklami jistg\u0127u jintwerewlek abba\u017ci tal-kontenut li qed tara, l-app li qed tu\u017ca, il-lokalit\u00e0 approssimattiva tieg\u0127ek, jew it-tip ta\u2019 tag\u0127mir tieg\u0127ek.","descriptionLegal":"G\u0127al selezzjoni ta\u2019 reklami ba\u017ci\u010bi il-bejieg\u0127a jistg\u0127u:\n* Ju\u017caw l-informazzjoni f\u2019\u0127in reali dwar il-kuntest li fih se jintwera r-reklam, biex juru r-reklam, inklu\u017ca informazzjoni dwar il-kuntest u t-tag\u0127mir, b\u0127al: tip u kapa\u010bitajiet tat-tag\u0127mir, a\u0121ent tal-utent, URL, indirzz tal-IP \n* Ju\u017caw id-dejta tal-\u0121eolokazzjoni mhux pre\u010bi\u017ca tal-utent\n* Jikkontrollaw il-frekwenza tar-reklami li jintwerew lil utent.\n* Jag\u0127mlu sekwenza tal-ordni li fiha r-reklami jintwerew lil utent.\n* Jipprevjenu reklam milli jidher f\u2019kuntest editorjali mhux xieraq (jag\u0127mel \u0127sara lir-reputazzjoni tad-ditta) kuntest\nIl-bejjieg\u0127a ma jistg\u0127ux:\n* Jo\u0127olqu profil ta\u2019 reklami personalizzati billi ju\u017caw din l-informazzjoni g\u0127as-selezzjoni ta\u2019 reklami futuri ming\u0127ajr ba\u017ci legali separata biex jo\u0127olqu profil ta\u2019 reklami personalizzati.\nN.B. Mhux pre\u010bi\u017c/a tfisser biss lokalit\u00e0 approssimattiva li hija permessa li tinvolvi mill-anqas ra\u0121\u0121 ta\u2019 500 metru.\n"},"3":{"id":3,"name":"O\u0127loq profil ta\u2019 reklami personalizzati","description":"Jista\u2019 jinbena profil dwarek u dwar l-interessi tieg\u0127ek biex tara reklami personalizzati li huma rilevanti g\u0127alik","descriptionLegal":"Biex to\u0127loq profil ta\u2019 reklami personalizzati l-bejjieg\u0127a jistg\u0127u:\n* Ji\u0121bru informazzjoni dwar utent, inklu\u017ci l-attivit\u00e0 tal-utent, l-interessi, \u017cjarat f\u2019siti jew apps, l-informazzjoni demografika, jew il-lokalit\u00e0, biex jo\u0127olqu jew jeditjaw profil tal-utent g\u0127all-u\u017cu f\u2019reklamar personalizzat.\n* G\u0127aqqad din l-informazzjoni ma 'informazzjoni o\u0127ra mi\u0121bura qabel, inklu\u017c minn madwar websajts u apps, biex to\u0127loq jew teditja profil ta' utent g\u0127all-u\u017cu f'reklamar personalizzat.\n"},"4":{"id":4,"name":"Ag\u0127\u017cel reklami personalizzati","description":"Ir-reklami personalizzati jistg\u0127u jintwerewlek abba\u017ci ta\u2019 profil dwarek.","descriptionLegal":"Biex jag\u0127\u017clu reklami personalizzati l-bejjieg\u0127a jistg\u0127u:\n* Jag\u0127\u017clu reklami personalizzati abba\u017ci tal-profil tal-utent jew dejta storika o\u0127ra tal-utent, inklu\u017ci l-attivit\u00e0, l-interessi, \u017cjarat f\u2019siti jew apps, il-lokalit\u00e0, jew l-informazzjoni demografika pre\u010bedenti tal-utent.\n"},"5":{"id":5,"name":"O\u0127loq profil ta\u2019 kontenut personalizzat","description":"Profil jista\u2019 jinbena dwarek u dwar l-interessi tieg\u0127ek biex juruk kontenut personalizzat li hu relevanti g\u0127alik.","descriptionLegal":"Biex to\u0127loq profil ta\u2019 kontenut personalizzat il-bejjieg\u0127a jistg\u0127u:\n* I\u0121bru informazzjoni dwar utent, inklu\u017ci l-attivit\u00e0, l-interessi, s-siti li jkun \u017car jew l-apps, l-informazzjoni demografika, jew il-post, biex jo\u0127olqu jew jedittjaw profil tal-utent g\u0127al kontenut personalizzat.\n* G\u0127aqqad din l-informazzjoni ma 'informazzjoni o\u0127ra mi\u0121bura qabel, inklu\u017c minn madwar websajts u apps, biex to\u0127loq jew teditja profil ta' utent g\u0127all-u\u017cu fil-personalizzazzjoni tal-kontenut."},"6":{"id":6,"name":"Ag\u0127\u017cel kontenut personalizzat","description":"Il-kontenut personalizzat jista\u2019 jintwera lilek abba\u017ci ta\u2019 profil dwarek.","descriptionLegal":"Biex tag\u0127\u017cel kontenut personalizzat il-bejjieg\u0127a jistg\u0127u:\n* Ag\u0127\u017cel kontenut personalizzat abba\u017ci tal-profil ta\u2019 utent jew dejta storika o\u0127ra tal-utent, inklu\u017ci l-attivit\u00e0, l-interessi, is-siti li jkun \u017car jew l-apps, il-post, jew l-informazzjoni demogrfika pre\u010bedenti tal-utent.\n"},"7":{"id":7,"name":"Kejjel il-prestazzjoni tar-reklam","description":"Il-prestazzjoni u l-effettivit\u00e0 tar-reklami li inti tara jew tintera\u0121ixxi mag\u0127hom jistg\u0127u\u2019 jitkejlu.","descriptionLegal":"Biex ikejlu l-prestazzjoni tar-reklam il-bejjieg\u0127a jistg\u0127u:\n* Ikejlu jekk u kif twasslu r-reklami g\u0127and l-utent u kif dan intera\u0121ixxa mag\u0127hom\n* Jipprovdu rappurtar dwar ir-reklami inklu\u017ci l-effettivit\u00e0 u l-prestazzjoni tag\u0127hom\n* Jipprovdu rappurtar dwar l-utenti li intera\u0121ixxew mar-reklami billi u\u017caw dejta li \u0121iet osservata waqt li l-utent kien qed jintera\u0121ixxi ma\u2019 dak ir-reklam\n* Jipprovdu rappurtar lil pubblikaturi dwar ir-reklami li jidhru fuq il-proprjet\u00e0 tag\u0127hom\n* Ikejlu jekk reklam huwiex qed jidher fil-kuntest ta\u2019 ambjent editorjali xieraq (sikurezza tar-reputazzjoni tad-ditta - brand safe)\n* Jiddeterminaw il-persenta\u0121\u0121 tar-reklam li kellu l-opportunit\u00e0 li jintwera u kemm damet dik l-opportunit\u00e0 \nIl-bejjieg\u0127a ma jistg\u0127ux:\n* Japplikaw dejta tal-intuwizzjonijiet ta\u2019 panel jew ta\u2019 udjenza derivata bl-istess mod g\u0127al kejl ta\u2019 dejta tar-reklam ming\u0127ajr ba\u017ci legali biex japplikaw ri\u010berka tas-suq biex ji\u0121\u0121eneraw l-intuwizzjonijiet tal-udjenza.\n"},"8":{"id":8,"name":"Kejjel il-prestazzjoni tal-kontenut","description":"Il-prestazzjoni u l-effettivit\u00e0 tal-kontenut li inti tara jew tintera\u0121ixxi mag\u0127hom jistg\u0127u jitkejlu.","descriptionLegal":"Biex ikejlu il-prestazzjoni tal-kontenut il-bejjieg\u0127a jistg\u0127u:\n\u2022\tIkejlu u jirrappurtaw dwar kif il-kontenut twassal g\u0127and l-utenti u intera\u0121ixxew mieg\u0127u.\n\u2022\tJipprovdu rappurtar, bl-u\u017cu ta\u2019 informazzjoni mkejla direttament jew mag\u0127rufa, dwar l-utenti li intera\u0121ixxew mal-kontenut\nIl-bejjieg\u0127a ma jistg\u0127ux:\n\u2022\tIkejlu jekk u kif ir-reklami (inklu\u017ci r-reklami nattivi) twasslu g\u0127and l-utent u kif intera\u0121ixxa mag\u0127hom.\n\u2022\tJapplikaw dejta tal-intuwizzjonijiet ta\u2019 panel jew ta\u2019 udjenza derivata bl-istess mod g\u0127al kejl ta\u2019 dejta tar-reklam ming\u0127ajr ba\u017ci legali biex japplikaw ri\u010berka tas-suq biex ji\u0121\u0121eneraw l-intuwizzjonijiet tal-udjenza.\n"},"9":{"id":9,"name":"Applika r-ri\u010berka tas-suq biex ti\u0121\u0121enera intuwizzjonijiet tal-udjenza","description":"Ir-ri\u010berka dwar is-suq tista\u2019 tintu\u017ca biex wie\u0127ed isir jaf aktar dwar l-udjenzi li j\u017curu siti/apps u jaraw reklami.","descriptionLegal":"Biex tapplika r-ri\u010berka tas-suq u ji\u0121\u0121eneraw intuwizzjonijiet tal-udjenza l-bejjieg\u0127a jistg\u0127u:\n* Jipprovdu rappurtar aggregat g\u0127al dawk li jirreklamaw jew ir-rappre\u017centanti tag\u0127hom dwar l-udjenzi mil\u0127uqa mir-reklami tag\u0127hom, permezz ta\u2019 intuwizzjonijiet ibba\u017cati fuq panel u dawk li huma derivati b\u2019mod simili.\n* Jipprovdu rappurtar aggregat lil pubblikaturi dwar l-udjenzi li \u0121ew servuti bil-kontenut jew intera\u0121ixxew mieg\u0127u u/jew ma\u2019 reklami fuq il-proprjet\u00e0 tag\u0127hom billi applikaw intuwizzjonijiet ibba\u017cati fuq panel u dawk li huma derivati b\u2019mod simili. \n* Jasso\u010bjaw dejta offlajn ma\u2019 utent onlajn g\u0127all-g\u0127anijiet ta\u2019 ri\u010berka dwar is-suq biex ji\u0121\u0121eneraw intuwizzjonijiet dwar l-udjenza jekk il-bejjieg\u0127a jkunu ddikjaraw li jqabblu u jg\u0127aqqdu flimkien sorsi ta\u2019 dejta offlajn (Karatteristika 1)\nIl-bejjieg\u0127a ma jistg\u0127ux: \n* Ikejlu l-prestazzjoni u l-effettivit\u00e0 tar-reklami li twasslu lil utent spe\u010bifiku jew li intera\u0121ixxa mag\u0127hom, ming\u0127ajr ba\u017ci legali biex titkejjel il-prestazzjoni tar-reklam.\n* Ikejlu dak il-kontenut li twassal lil utent spe\u010bifiku u kif intera\u0121ixxa mieg\u0127u, ming\u0127ajr ba\u017ci legali biex ikejlu l-prestazzjoni tal-kontenut.\n"},"10":{"id":10,"name":"\u017bviluppa u tejjeb il-prodotti","description":"Id-dejta tieg\u0127ek tista\u2019 tintu\u017ca biex ittejjeb sistemi u softwer e\u017cistenti, u biex ji\u0121u \u017cviluppati prodotti \u0121odda.","descriptionLegal":"Biex ji\u017cviluppaw prodotti \u0121odda u jtejbu l-prodotti l-bejjieg\u0127a jistg\u0127u:\n* Ju\u017caw informazzjoni biex itejbu l-prodotti e\u017cistenti tag\u0127hom b\u2019karatteristi\u010bi \u0121odda u biex ji\u017cviluppaw prodotti \u0121odda\n* Jo\u0127olqu mudelli \u0121odda u algoritmi permezz ta\u2019 tag\u0127lim bil-magni\nIl-bejjieg\u0127a ma jistg\u0127ux:\n* Jag\u0127mlu operazzjonijiet o\u0127ra ta\u2019 ppro\u010bessar ta\u2019 dejta ta\u0127t dan l-g\u0127an i\u017cda li huma permessi ta\u0127t g\u0127an differenti\n"}},"specialPurposes":{"1":{"id":1,"name":"Kun \u010bert mis-sigurt\u00e0, ipprevjeni l-frodi, u ne\u0127\u0127i d-difetti","description":"Id-dejta tieg\u0127ek tista\u2019 tintu\u017ca biex isir monitora\u0121\u0121 u tipprevjeni attivit\u00e0 qarrieqa, u biex ti\u017cgura li s-sistemi u l-pro\u010bessi ja\u0127dmu b\u2019mod xieraq u sikur.","descriptionLegal":"Biex ji\u017cguraw is-sigurt\u00e0, jipprevjenu l-frodi u jne\u0127\u0127u d-difetti l-bejjieg\u0127a jistg\u0127u:\n* Ji\u017cguraw li d-dejta ti\u0121i tra\u017cmessa b\u2019mod sikur \n* Jidentifikaw u jipprevjenu attivit\u00e0 malizzju\u017ca, qarrieqa, invalida, jew illegali.\n* Ji\u017cguraw l-operazzjoni korretta u effi\u010bjenti ta\u2019 sistemi u pro\u010bessi, inklu\u017ci l-monitora\u0121\u0121 u t-titjib tal-prestazzjoni ta\u2019 sistemi u pro\u010bessi involuti f\u2019g\u0127anijiet permessi\nIl-bejjieg\u0127a ma jistg\u0127ux:\n* Jag\u0127mlu operazzjoni ta\u2019 ppro\u010bessar ta\u2019 kwalunkwe dejta o\u0127ra ta\u0127t dan il-g\u0127an i\u017cda li hi permessa ta\u0127t g\u0127an differenti\nNota: Id-dejta mi\u0121bura u u\u017cata biex ti\u0121i \u017cgurata s-sigurt\u00e0, il-prevenzjoni tal-frodi, u d-dibaggjar tista\u2019 tinkludi karatteristiki tat-tag\u0127mir mibg\u0127uta awtomatikament g\u0127all-identifikazzjoni, dejta ta\u2019 \u0121eolokazzjoni pre\u010bi\u017ca, u dejta miksuba billi attivament ji\u0121u skenjati karatteristiki tat-tag\u0127mir g\u0127all-identifikazzjoni ming\u0127ajr \u017cvelar separat u/jew inklu\u017cjoni. \n"},"2":{"id":2,"name":"Wassal b\u2019mod tekniku reklami jew kontenut","description":"It-tag\u0127mir tieg\u0127ek jista\u2019 jir\u010bievi u jibg\u0127at informazzjoni li t\u0127allik tara u tintera\u0121ixxi ma\u2019 reklami u kontenut.","descriptionLegal":"Biex iwasslu informazzjoni u jwie\u0121bu g\u0127al talbiet tekni\u010bi l-bejjieg\u0127a jistg\u0127u:\n* Ju\u017caw l-indirizz IP ta\u2019 utent biex iwasslu reklam fuq l-internet\n* Iwie\u0121bu g\u0127all-interazzjoni ta\u2019 utent ma\u2019 reklam billi jibag\u0127tu lill-utent f\u2019pa\u0121na landing\n* Ju\u017caw l-indirizz IP ta\u2019 utent biex iwasslu kontenut fuq l-internet\n* Iwie\u0121bu g\u0127all-interazzjoni ta\u2019 utent mal-kontenut billi jibag\u0127tu l-utent f\u2019pa\u0121na ewlenija\n* Ju\u017caw informazzjoni dwar it-tip u l-kapa\u010bitajiet tat-tag\u0127mir biex iwasslu reklami jew kontenut, pere\u017cempju, biex iwasslu reklam kreattiv ta\u2019 daqs tajjeb jew fajl ta\u2019 vidjow f\u2019format li t-tag\u0127mir jissapportja\nIl-bejjieg\u0127a ma jistg\u0127ux:\n* Jag\u0127mlu operazzjonijiet o\u0127ra ta\u2019 ppro\u010bessar ta\u2019 dejta ta\u0127t dan l-g\u0127an i\u017cda li huma permessi ta\u0127t g\u0127an differenti\n"}},"features":{"1":{"id":1,"name":"Qabbel u kkombina ofline sorsi ta\u2019 dejta","description":"Id-dejta minn sorsi offlajn tista\u2019 ting\u0127aqad mal-attivit\u00e0 tieg\u0127ek onlajn biex tissapportja wie\u0127ed mill-g\u0127anijiet jew aktar.","descriptionLegal":"Il-bejjieg\u0127a jistg\u0127u: \n* Jikkombinaw dejta miksuba offlajn ma\u2019 dejta mi\u0121bura onlajn b\u2019sapport g\u0127al wie\u0127ed jew aktar mill-G\u0127anijiet jew mill-G\u0127anijiet Spe\u010bjali.\n"},"2":{"id":2,"name":"Illinkja tag\u0127miriet differenti","description":"Tag\u0127miriet differenti jistg\u0127u ji\u0121u determinati li jappartjenu lilek jew l-unit\u00e0 domestika tieg\u0127ek b\u2019sapport g\u0127al g\u0127an wie\u0127ed jew aktar.","descriptionLegal":"Il-bejjieg\u0127a jistg\u0127u:\n\u2022\tB\u2019mod determinat jidde\u010biedu li \u017cew\u0121 tag\u0127miriet jew aktar jappartjenu g\u0127all-istess utent jew unit\u00e0 domestika\n\u2022\tB\u2019mod probabbilistiku jiddeterminaw li \u017cew\u0121 tag\u0127miriet jew aktar jappartjenu g\u0127all-istess utent jew unit\u00e0 domestika\n\u2022\tJiskenjaw b\u2019mod attiv il-karatteristiki tat-tag\u0127mir g\u0127all-identifikazzjoni probabbilistika jekk l-utenti \u0127allewx il-bejjiieg\u0127a jiskenjaw b\u2019mod attiv il-karatteristiki tat-tag\u0127mir g\u0127all-identifikazzjoni (Karatteristika Spe\u010bjali 2)\n"},"3":{"id":3,"name":"Ir\u010bievi u u\u017ca karatteristiki tat-tag\u0127mir mibg\u0127uta awtomatikament g\u0127all-identifikazzjoni","description":"It-tag\u0127mir tieg\u0127ek irid ikun distint minn tag\u0127miriet o\u0127ra abba\u017ci tal-informazzjoni li jibg\u0127at awtomatikament, b\u0127al indirizz tal-IP jew tip ta\u2019 braw\u017cer.","descriptionLegal":"Il-bejjieg\u0127a jistg\u0127u:\n* O\u0127loq identifikatur billi tu\u017ca dejta mi\u0121bura awtomatikament minn tag\u0127mir g\u0127al karatteristiki spe\u010bifi\u010bi, e\u017c. indirizz tal-IP, string ta\u2019 utent-a\u0121ent.\n* Ju\u017caw dak l-identifikatur biex jidentifikaw tag\u0127mir mill-\u0121did.\nIl-bejjieg\u0127a ma jistg\u0127ux:\n* Jo\u0127olqu identifikatur bl-u\u017cu tad-dejta mi\u0121bura permezz ta\u2019 skenjar b\u2019mod attiv g\u0127al karatteristiki spe\u010bjali, e\u017c. font installata jew ir-ri\u017coluzzjoni tal-iskrin ming\u0127ajr l-inklu\u017cjoni separata tal-utenti biex jiskenjaw attivament il-karatteristiki tat-tag\u0127mir g\u0127all-identifikazjoni.\n* Ju\u017caw dak l-identifikatur biex jidentifikaw it-tag\u0127mir mill-\u0121did.\n"}},"specialFeatures":{"1":{"id":1,"name":"U\u017ca dejta \u0121eolokalizzata pre\u010bi\u017ca","description":"Id-dejta \u0121eolokalizzata pre\u010bi\u017ca tieg\u0127ek tista\u2019 tintu\u017ca b\u2019sapport g\u0127al g\u0127an wie\u0127ed jew aktar. Dan ifisser li l-lokalit\u00e0 tieg\u0127ek tista\u2019 tkun pre\u010bi\u017ca f\u2019medda ta\u2019 diversi metri.","descriptionLegal":"Il-bejjieg\u0127a jistg\u0127u:\n* Ji\u0121bru u jippro\u010bessaw dejta ta\u2019 \u0121eolokazzjoni pre\u010bi\u017ca b\u2019sapport g\u0127al g\u0127an wie\u0127ed jew aktar.\nN.B. \u0120eolokazzjoni pre\u010bi\u017ca tfisser li m\u2019hemm l-ebda restrizzjoni fuq il-pre\u010bi\u017cjoni tal-lokalit\u00e0 ta\u2019 utent, din tista\u2019 tkun pre\u010bi\u017ca f\u2019medda ta\u2019 diversi metri.\nNota: \u010aertu u\u017cu ta\u2019 din id-dejta g\u0127as-sigurt\u00e0 u l-prevenzjoni tal-frodi huwa kopert separatament u ma je\u0127tie\u0121x l-inklu\u017cjoni tal-utent separata g\u0127all-u\u017cu tad-dejta ta\u2019 \u0121eolokazzjoni pre\u010bi\u017ca.\n"},"2":{"id":2,"name":"Iskenja l-karatteristiki tat-tag\u0127mir b\u2019mod attiv g\u0127all-identifikazzjoni","description":"It-tag\u0127mir tieg\u0127ek jista\u2019 ji\u0121i identifikat abba\u017ci ta\u2019 skenn tat-ta\u0127lita unika tal-karatteristiki tat-tag\u0127mir tieg\u0127ek.","descriptionLegal":"Il-bejjieg\u0127a jistg\u0127u:\n* Jo\u0127olqu identifikatur bl-u\u017cu tad-dejta mi\u0121bura permezz ta\u2019 skenjar b\u2019mod attiv g\u0127all-karatteristiki spe\u010bjali, e\u017c. il-fonts installati jew ir-ri\u017coluzzjoni tal-iskrin. \n* Ju\u017caw dak l-identifikatur biex jidentifikaw mill-\u0121did it-tag\u0127mir.\nNota: \u010aertu u\u017cu ta\u2019 din id-dejta g\u0127as-sigurt\u00e0 jew il-prevenzjoni tal-frodi huwa kopert separatament u ma je\u0127tie\u0121x l-inklu\u017cjoni separata tal-utent fl-iskenjar attiv tal-karatteristiki tat-tag\u0127mir g\u0127all-identifikazzjoni.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Dejta \u0121eolokalizzata pre\u010bi\u017ca, u identifikazzjoni permezz tal-iskenjar tat-tag\u0127mir","description":"Tista\u2019 tintu\u017ca \u0121eolokalizzazzjoni pre\u010bi\u017ca u informazzjoni dwar il-kartteristi\u010bi tat-tag\u0127mir."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Reklami ba\u017ci\u010bi, u kejl tar-reklam","description":"Ir-reklami ba\u017ci\u010bi jistg\u0127u ji\u0121u servuti. Il-prestazzjoni tar-reklam tista\u2019 titkejjel."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Reklami personalizzati","description":"Ir-reklami jistg\u0127u ji\u0121u ppersonalizzati abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cied aktar dejta biex ir-reklami ji\u0121u ppersonalizzati a\u0127jar."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Reklami ba\u017ci\u010bi, u kejl tar-reklam","description":"Ir-reklami ba\u017ci\u010bi jistg\u0127u ji\u0121u servuti. Il-prestazzjoni tar-reklam tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Reklami ba\u017ci\u010bi, profil ta\u2019 reklami personalizzati u kejl tar-reklam","description":"Ir-reklami ba\u017ci\u010bi jistg\u0127u ji\u0121u servuti. Tista\u2019 ti\u017cied aktar dejta biex ir-reklami ji\u0121u ppersonalizzati a\u0127jar. Il-prestazzjoni tar-reklam tista\u2019 titkejjel."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Il-pre\u017centazzjoni u l-kejl tar-rekalmi personalizzati","description":"Ir-reklami jistg\u0127u ji\u0121u ppersonalizzati abba\u017ci ta\u2019 profil. Il-prestazzjoni tar-reklam tista\u2019 titkejjel."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Il-pre\u017centazzjoni tar-reklami personalizzati, u l-kejl tar-reklam, u l-intuwizzjonijiet tal-udjenza","description":"Ir-reklami jistg\u0127u ji\u0121u ppersonalizzati abba\u017ci ta\u2019 profil. Il-prestazzjoni tar-reklam tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Reklami personalizzati, u kejl tar-reklam","description":"Ir-reklami jistg\u0127u ji\u0121u ppersonalizzati abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cied aktar dejta biex ir-reklami ji\u0121u ppersonalizzati a\u0127jar. Il-prestazzjoni tar-reklam tista\u2019 titkejjel."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Reklami personalizzati, kejl tar-reklam, u intuwizzjonijiet tal-udjenza","description":"Ir-reklami jistg\u0127u ji\u0121u ppersonalizzati abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cied aktar dejta biex ir-reklami ji\u0121u ppersonalizzati a\u0127jar. Il-prestazzjoni tar-reklam tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Pre\u017centazzjoni u profil tar-reklami personalizzati","description":"Ir-reklami jistg\u0127u ji\u0121u ppersonalizzati abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cied aktar dejta biex ir-reklami ji\u0121u ppersonalizzati a\u0127jar."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Kontenut personalizzat","description":"Il-kontenut jista\u2019 ji\u0121i ppersonalizzat abba\u017ci tal-profil. Tista\u2019 ti\u017cdied aktar dejta biex ji\u0121i ppersonalizzat a\u0127jar il-kontenut."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Pre\u017centazzjoni tal-kontenut personalizzat, u kejl tal-kontenut","description":"Il-kontenut jista\u2019 ji\u0121i ppersonalizzat abba\u017ci ta\u2019 profil. Il-prestazzjoni tal-kontenut tista\u2019 titkejjel."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Pre\u017centazzjoni tal-kontenut personalizzat, kejl tal-kontenut u intuwizzjonijiet tal-udjenza","description":"Il-kontenut jista\u2019 ji\u0121i ppersonalizzat abba\u017ci ta\u2019 profil. Il-prestazzjoni tal-kontenut tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Kontenut personalizzat, u kejl tal-kontenut","description":"Il-kontenut jista\u2019 ji\u0121i ppersonalizzat abba\u017ci tal-profil. Tista\u2019 ti\u017cdied aktar dejta biex ji\u0121i ppersonalizzat a\u0127jar il-kontenut. Il-prestazzjoni tal-kontenut tista\u2019 titkejjel."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Kontenut personalizzat, kejl tal-kontenut u intuwizzjonijiet tal-udjenza","description":"Il-kontenut jista\u2019 ji\u0121i ppersonalizzat abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cdied aktar dejta biex ji\u0121i ppersonalizzat a\u0127jar il-kontenut. Il-prestazzjoni tal-kontenut tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Kontenut personalizzat, kejl tal-kontenut, intuwizzjonijiet tal-udjenza, u \u017cvilupp tal-prodott.","description":"Il-kontenut jista\u2019 ji\u0121i ppersonalizzat abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cdied aktar dejta biex ji\u0121i ppersonalizzat a\u0127jar il-kontenut. Il-prestazzjoni tal-kontenut tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati. Id-dejta tista\u2019 tintu\u017ca biex jinbnew jew jitjiebu l-esperjenza tal-utent, is-sistemi, u s-softwer"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Kejl tar-reklam u tal-kontenut, u intuwizzjonijiet tal-udjenza","description":"Il-prestazzjoni tar-reklam u tal-kontenut tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Kejl tar-reklam u tal-kontenut","description":"Il-prestazzjoni tar-reklam u tal-kontenut tista\u2019 titkejjel."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Kejl tar-reklam, u intuwizzjonijiet tal-udjenza","description":"Ir-reklam jista\u2019 jitkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Kejl tar-reklam u tal-kontenut, intuwizzjonijiet tal-udjenza, u \u017cvilupp tal-prodott","description":"Il-prestazzjoni tar-reklam u tal-kontenut tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati. Id-dejta tista\u2019 tintu\u017ca biex jinbnew jew jitjiebu l-esperjenza tal-utent, is-sistemi, u s-softwer. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Kejl tal-kontenut, intuwizzjonijiet tal-udjenza, u \u017cvilupp tal-prodott","description":"Il-prestazzjoni tal-kontenut tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati. Id-dejta tista\u2019 tintu\u017ca biex jinbnew jew jitjiebu l-esperjenza tal-utent, is-sistemi, u s-softwer."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Kejl tal-kontenut, u \u017cvilupp tal-prodott","description":"Il-prestazzjoni tal-kontenut tista\u2019 titkejjel. Id-dejta tista\u2019 tintu\u017ca biex jinbnew jew jitjiebu l-esperjenza tal-utent, is-sistemi, u s-softwer."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Pre\u017centazzjoni tar-reklami u tal-kontenut personalizzati, kejl tar-reklam u tal-kontenut","description":"Ir-reklami u l-kontenut jistg\u0127u ji\u0121u ppersonalizzati abba\u017ci ta\u2019 profil. Il-prestazzjoni tar-reklam u tal-kontenut tista\u2019 titkejjel."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Pre\u017centazzjoni tar-reklami u tal-kontenut personalizzati, kejl tar-reklam u tal-kontenut u intuwizzjonijiet tal-udjenza","description":"Ir-reklami u l-kontenut jistg\u0127u ji\u0121u ppersonalizzati abba\u017ci ta\u2019 profil. Il-prestazzjoni tar-reklam u tal-kontenut tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati. Id-dejta tista\u2019 tintu\u017ca biex jinbnew jew jitjiebu l-esperjenza tal-utent, is-sistemi, u s-softwer."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Reklami u kontenut personalizzati, kejl tar-reklam u tal-kontenut","description":"Ir-reklami u l-kontenut jistg\u0127u ji\u0121u ppersonalizzati abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cdied aktar dejta biex ji\u0121u ppersonalizzati a\u0127jar ir-reklami u l-kontenut. Il-prestazzjoni tar-reklam u tal-kontenut tista\u2019 titkejjel."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Reklami u kontenut personalizzati, kejl tar-reklam u tal-kontenut, u intuwizzjonijiet tal-udjenza","description":"Ir-reklami u l-kontenut jistg\u0127u ji\u0121u ppersonalizzati abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cdied aktar dejta biex ji\u0121u ppersonalizzati a\u0127jar ir-reklami u l-kontenut. Il-prestazzjoni tar-reklam u tal-kontenut tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Profil tal-kontenut u tar-reklami personalizzati","description":"Tista\u2019 ti\u017cdied aktar dejta biex ji\u0121u ppersonalizzati r-reklami u l-kontenut."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Pre\u017centazzjoni tal-kontenut u tar-reklami personalizzati","description":"Ir-reklami u l-kontenut jistg\u0127u ji\u0121u ppersonalizzati abba\u017ci ta\u2019 profil."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Reklami ba\u017ci\u010bi, kejl tar-reklam u tal-kontenut, u intuwizzjonijiet tal-udjenza","description":"Ir-reklami ba\u017ci\u010bi jistg\u0127u ji\u0121u servuti. Il-prestazzjoni tar-reklam u tal-kontenut tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Pre\u017centazzjoni ta\u2019 reklami personalizzati, kontenut personalizzat, kejl tar-reklam u tal-kontenut, u intuwizzjonijiet tal-udjenza","description":"Ir-reklami u l-kontenut jistg\u0127u ji\u0121u ppersonalizzati abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cdied aktar dejta biex ji\u0121i ppersonalizzat a\u0127jar il-kontenut. Il-prestazzjoni tar-reklam u tal-kontenut tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Pre\u017centazzjoni ta\u2019 reklami personalizzati, kontenut personalizzat, kejl tar-reklam u tal-kontenut, intuwizzjonijiet tal-udjenza, u \u017cvilupp tal-prodott","description":"Ir-reklami u l-kontenut jistg\u0127u ji\u0121u ppersonalizzati abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cdied aktar dejta biex ji\u0121i ppersonalizzat a\u0127jar il-kontenut. Il-prestazzjoni tar-reklam u tal-kontenut tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati. Id-dejta tista\u2019 tintu\u017ca biex jinbnew jew jitjiebu l-esperjenza tal-utent, is-sistemi, u s-softwer."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Reklami ba\u017ci\u010bi, kontenut personalizzat, kejl tar-reklam u tal-kontenut, u intuwizzjonijiet tal-udjenza","description":"Ir-reklami ba\u017ci\u010bi jistg\u0127u ji\u0121u servuti. Il-kontenut jista\u2019 ji\u0121i ppersonalizzat abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cdied aktar dejta biex ji\u0121i ppersonalizzat a\u0127jar il-kontenut. Il-prestazzjoni tar-reklam u tal-kontenut tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Reklami ba\u017ci\u010bi, kontenut personalizzat, kejl tar-reklam u l-kontenut, intuwizzjonijiet tal-udjenza, u \u017cvilupp tal-prodott","description":"Ir-reklami ba\u017ci\u010bi jistg\u0127u ji\u0121u servuti. Il-kontenut jista\u2019 ji\u0121i ppersonalizzat abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cdied aktar dejta biex ji\u0121i ppersonalizzat a\u0127jar il-kontenut. Il-prestazzjoni tar-reklam u tal-kontenut tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati. Id-dejta tista\u2019 tintu\u017ca biex jinbnew jew jitjiebu l-esperjenza tal-utent, is-sistemi, u s-softwer."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Reklami ba\u017ci\u010bi, kontenut personalizzat, kejl tal-kontenut, u intuwizzjonijiet tal-udjenza","description":"Ir-reklami ba\u017ci\u010bi jistg\u0127u ji\u0121u servuti. Il-kontenut jista\u2019 ji\u0121i ppersonalizzat abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cdied aktar dejta biex ji\u0121i ppersonalizzat a\u0127jar il-kontenut. Il-prestazzjoni tar-reklam u tal-kontenut tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Reklami ba\u017ci\u010bi, kontenut personalizzat, kejl tal-kontenut, intuwizzjonijiet tal-udjenza u \u017cvilupp tal-prodott","description":"Ir-reklami ba\u017ci\u010bi jistg\u0127u ji\u0121u servuti. Il-kontenut jista\u2019 ji\u0121i ppersonalizzat abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cdied aktar dejta biex ji\u0121i ppersonalizzat a\u0127jar il-kontenut. Il-prestazzjoni tal-kontenut tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati. Id-dejta tista\u2019 tintu\u017ca biex jinbnew jew jitjiebu l-esperjenza tal-utent, is-sistemi, u s-softwer."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Reklami ba\u017ci\u010bi, kontenut personalizzat, u kejl tar-reklam","description":"Ir-reklami ba\u017ci\u010bi jistg\u0127u ji\u0121u servuti. Il-kontenut jista\u2019 ji\u0121i ppersonalizzat abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cdied aktar dejta biex ji\u0121i ppersonalizzat a\u0127jar il-kontenut. Il-prestazzjoni tar-reklam tista\u2019 titkejjel."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Reklami ba\u017ci\u010bi, kontenut personalizzat, kejl tar-reklam, u \u017cvilupp tal-prodott","description":"Ir-reklami ba\u017ci\u010bi jistg\u0127u ji\u0121u servuti. Il-kontenut jista\u2019 ji\u0121i ppersonalizzat abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cdied aktar dejta biex ji\u0121i ppersonalizzat a\u0127jar il-kontenut. Il-prestazzjoni tar-reklam tista\u2019 titkejjel. Id-dejta tista\u2019 tintu\u017ca biex jinbnew jew jitjiebu l-esperjenza tal-utent, is-sistemi, u s-softwer."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Reklami personalizzati, kejl tar-reklam, u \u017cvilupp tal-prodott","description":"Ir-reklami jistg\u0127u ji\u0121u ppersonalizzati abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cied aktar dejta biex ir-reklami ji\u0121u ppersonalizzati a\u0127jar. Il-prestazzjoni tar-reklam tista\u2019 titkejjel. Id-dejta tista\u2019 tintu\u017ca biex jinbnew jew jitjiebu l-esperjenza tal-utent, is-sistemi, u s-softwer."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Reklami personalizzati, kejl tar-reklam, intuwizzjonijiet tal-udjenza, u \u017cvilupp tal-prodott","description":"Ir-reklami jistg\u0127u ji\u0121u ppersonalizzati abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cied aktar dejta biex ir-reklami ji\u0121u ppersonalizzati a\u0127jar. Il-prestazzjoni tar-reklam tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati. Id-dejta tista\u2019 tintu\u017ca biex jinbnew jew jitjiebu l-esperjenza tal-utent, is-sistemi, u s-softwer."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Reklami personalizzati, kejl tar-reklam u tal-kontenut, intuwizzjonijiet tal-udjenza, u \u017cvilupp tal-prodott","description":"Ir-reklami jistg\u0127u ji\u0121u ppersonalizzati abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cied aktar dejta biex ir-reklami ji\u0121u ppersonalizzati a\u0127jar. Il-prestazzjoni tar-reklam u tal-kontenut tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati. Id-dejta tista\u2019 tintu\u017ca biex jinbnew jew jitjiebu l-esperjenza tal-utent, is-sistemi, u s-softwer."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Reklami personalizzati, wiri ta\u2019 kontenut personalizzat, kejl tar-reklam u tal-kontenut, intuwizzjonijiet tal-udjenza, u \u017cvilupp tal-prodott","description":"Ir-reklami u l-kontenut jistg\u0127u ji\u0121u ppersonalizzati abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cied aktar dejta biex ir-reklami ji\u0121u ppersonalizzati a\u0127jar. Il-prestazzjoni tar-reklam u tal-kontenut tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati. Id-dejta tista\u2019 tintu\u017ca biex jinbnew jew jitjiebu l-esperjenza tal-utent, is-sistemi, u s-softwer."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Reklami u kontenut personalizzati, kejl tar-reklam u tal-kontenut, intuwizzjonijiet tal-udjenza, u \u017cvilupp tal-prodott","description":"Ir-reklami u l-kontenut jistg\u0127u ji\u0121u ppersonalizzati abba\u017ci ta\u2019 profil. Tista\u2019 ti\u017cdied aktar dejta biex ji\u0121u ppersonalizzati a\u0127jar ir-reklami u l-kontenut. Il-prestazzjoni tar-reklam u tal-kontenut tista\u2019 titkejjel. L-intuwizzjonijiet dwar l-udjenzi li raw ir-reklami u l-kontenut jistg\u0127u ji\u0121u derivati. Id-dejta tista\u2019 tintu\u017ca biex jinbnew jew jitjiebu l-esperjenza tal-utent, is-sistemi, u s-softwer."}}} \ No newline at end of file diff --git a/src/s1/config/2.0/purposes/purposes-nl.json b/src/s1/config/2.0/purposes/purposes-nl.json index 1b581112..a645cd63 100644 --- a/src/s1/config/2.0/purposes/purposes-nl.json +++ b/src/s1/config/2.0/purposes/purposes-nl.json @@ -1 +1 @@ -{"vendorListVersion":79,"lastUpdated":"2021-02-25T16:36:21Z","purposes":{"1":{"id":1,"name":"Informatie op een apparaat opslaan en/of openen","description":"Cookies, apparaatidentificatoren of andere informatie kunnen op uw apparaat worden opgeslagen of geopend voor de doeleinden die aan u worden gepresenteerd.","descriptionLegal":"Leveranciers kunnen:\n* Informatie op een apparaat opslaan en openen, zoals cookies en apparaatidentificatoren die aan een gebruiker worden gepresenteerd.\n"},"2":{"id":2,"name":"Basisadvertenties selecteren","description":"Advertenties kunnen aan u worden getoond op basis van de content die u bekijkt, de app die u gebruikt, uw locatie bij benadering of uw apparaattype.","descriptionLegal":"Voor het selecteren van basisadvertenties kunnen leveranciers:\n*Realtime informatie gebruiken over de context waarin de advertentie wordt weergegeven, om de advertentie te tonen, inclusief informatie over de content en het apparaat, zoals: apparaattype en -mogelijkheden, platforminformatie (\u2018user agent\u2019), URL, IP-adres.\n* De niet-precieze geolocatie gegevens van een gebruiker gebruiken.\n* De frequentie bepalen van de advertenties die aan een gebruiker worden getoond.\n* De volgorde bepalen waarin advertenties aan een gebruiker worden getoond.\n* Voorkomen dat een advertentie in een ongeschikte redactionele (merk-onveilige) context getoond wordt.\nLeveranciers kunnen niet:\n* Een gepersonaliseerd advertentieprofiel aanmaken met behulp van deze informatie voor de selectie van toekomstige advertenties zonder een afzonderlijke rechtsgrond voor de aanmaak van een gepersonaliseerd advertentieprofiel.\nN.B. Niet-precies betekent slechts een locatie bij benadering waarbij ten minste een radius van 500 meter is toegestaan.\n"},"3":{"id":3,"name":"Een gepersonaliseerd advertentieprofiel aanmaken","description":"Er kan een profiel over u en uw interesses worden gebouwd om u gepersonaliseerde advertenties te tonen die relevant zijn voor u.","descriptionLegal":"Om een gepersonaliseerd advertentieprofiel aan te maken, kunnen leveranciers:\n* Informatie over een gebruiker verzamelen, waaronder de activiteiten, interesses, demografische informatie of de locatie van een gebruiker, om een gebruikersprofiel aan te maken of te bewerken voor gebruik in gepersonaliseerde advertenties.\n* Combineer deze informatie met andere informatie die eerder is verzameld, ook van websites en apps, om een \u200b\u200bgebruikersprofiel te maken of te bewerken voor gebruik in gepersonaliseerde advertenties.\n"},"4":{"id":4,"name":"Gepersonaliseerde advertenties selecteren","description":"Gepersonaliseerde advertenties kunnen aan u worden getoond op basis van een profiel over u.","descriptionLegal":"Om gepersonaliseerde advertenties te selecteren, kunnen leveranciers:\n* Gepersonaliseerde advertenties selecteren op basis van een gebruikersprofiel of andere historische gebruikersgegevens, waaronder de eerdere activiteiten, interesses, bezoeken aan sites of apps, locatie of demografische informatie van een gebruiker.\n"},"5":{"id":5,"name":"Een gepersonaliseerd content profiel aanmaken","description":"Er kan een profiel over u en uw interesses worden gebouwd om u gepersonaliseerde content te tonen die relevant is voor u.","descriptionLegal":"Om een gepersonaliseerd content profiel aan te maken, kunnen leveranciers:\n* Informatie over een gebruiker verzamelen, inclusief de activiteiten, interesses, bezoeken aan sites of apps, demografische informatie of locatie van een gebruiker, om een gebruikersprofiel aan te maken of te bewerken voor het personaliseren van content.\n* Combineer deze informatie met andere informatie die eerder is verzameld, ook van websites en apps, om een \u200b\u200bgebruikersprofiel te maken of te bewerken voor gebruik bij het personaliseren van inhoud."},"6":{"id":6,"name":"Gepersonaliseerde content selecteren","description":"Gepersonaliseerde content kan aan u worden getoond op basis van een profiel over u.","descriptionLegal":"Om gepersonaliseerde content te selecteren, kunnen leveranciers:\n* Gepersonaliseerde content selecteren op basis van een gebruikersprofiel of andere historische gebruikersgegevens, waaronder de eerdere activiteiten, interesses, bezoeken aan sites of apps, locatie of demografische informatie van een gebruiker.\n"},"7":{"id":7,"name":"Prestaties van advertenties meten","description":"De prestaties en doeltreffendheid van advertenties die u ziet of waarmee u interactie aangaat, kunnen worden gemeten.","descriptionLegal":"Om prestaties van advertenties te meten, kunnen leveranciers:\n* Meten of en hoe advertenties werden geleverd aan en interactie aangingen met een gebruiker.\n* Rapportage verschaffen over advertenties, inclusief hun doeltreffendheid en prestaties.\n* Rapportage verschaffen over gebruikers die interactie aangingen met advertenties hebben gehad met behulp van gegevens waargenomen tijdens de interactie van de gebruiker met die advertentie.\n* Rapportage verschaffen aan adverteerders over de advertenties die op hun eigendom worden weergegeven.\n* Meten of een advertentie in een geschikte redactionele omgeving (merk veilig) context getoond wordt.\n* Het percentage vaststellen van de advertentie die de kans had gezien te worden en de duur van die kans bepalen.\nLeveranciers kunnen niet:\n* Zonder afzonderlijke rechtsgrond op panels gebaseerde of soortgelijke afgeleide gegevens over het publiek toepassen op de gegevens van advertentiemetingen om marktonderzoek toe te passen om inzichten in het publiek te verkrijgen..\n"},"8":{"id":8,"name":"Content prestaties meten","description":"De prestaties en doeltreffendheid van content die u ziet of waar u interactie mee aangaat, kunnen worden gemeten.","descriptionLegal":"Om de content prestaties te meten, kunnen leveranciers:\n* Meten hoe content werd geleverd aan gebruikers en hoe deze er interactie mee aangingen en hierover rapporteren.\n* Rapportage verschaffen, met gebruik van direct meetbare of bekende informatie, over gebruikers die interactie aangingen met de content.\nLeveranciers kunnen niet:\n* Meten of en hoe advertenties (inclusief native advertenties) werden geleverd aan een gebruiker en hoe deze er interactie mee aanging.\n* Zonder afzonderlijke rechtsgrond op panels gebaseerde of soortgelijke afgeleide gegevens over het publiek toepassen op de gegevens van advertentiemetingen om marktonderzoek toe te passen om inzichten in het publiek te verkrijgen.\n"},"9":{"id":9,"name":"Marktonderzoek toepassen om inzichten in het publiek te genereren","description":"Marktonderzoek kan worden gebruikt om meer te weten te komen over het publiek dat sites/apps bezoekt en advertenties bekijkt.","descriptionLegal":"Om marktonderzoek toe te passen om inzichten in het publiek te genereren, kunnen leveranciers:\n* Geaggregeerde rapportage verschaffen aan adverteerders of hun vertegenwoordigers over het publiek dat door hun advertenties wordt bereikt, via op panels gebaseerde en op soortgelijke wijze afgeleide inzichten.\n* Geaggregeerde rapportage verschaffen aan adverteerders over het publiek dat werd bereikt of dat interactie aanging met content en/of advertenties op hun eigendom door op panels gebaseerde en op soortgelijke wijze afgeleide inzichten toe te passen. \n* Offlinegegevens associ\u00ebren met een onlinegebruiker ten bate van marktonderzoek om inzichten in het publiek te genereren als leveranciers hebben verklaard gegevensbronnen te matchen en combineren (functie 1).\nLeveranciers kunnen niet: \n* Zonder afzonderlijke rechtsgrond de prestaties en doeltreffendheid meten van advertenties die aan een specifieke gebruiker getoond werden of waar deze interactie mee aanging, om de prestaties van advertenties te meten.\n* Zonder afzonderlijke rechtsgrond meten welke content een specifieke gebruiker is verschaft en hoe deze er interactie mee aanging, om de content prestaties te meten..\n"},"10":{"id":10,"name":"Producten ontwikkelen en verbeteren","description":"Uw gegevens kunnen worden gebruikt om bestaande systemen en software te verbeteren en nieuwe producten te ontwikkelen.","descriptionLegal":"Om nieuwe producten te ontwikkelen en producten te verbeteren, kunnen leveranciers:\n* Informatie gebruiken om hun bestaande producten te verbeteren met nieuwe functies en om nieuwe producten te ontwikkelen.\n* Nieuwe modellen en algoritmes aanmaken door middel van machinaal leren.\nLeveranciers kunnen niet:\n* Gegevensverwerkende handelingen die toegestaan zijn onder dit doeleinde, verrichten onder een ander doeleinde.\n"}},"specialPurposes":{"1":{"id":1,"name":"Beveiliging verzekeren, fraude voorkomen en fouten opsporen","description":"Uw gegevens kunnen worden gebruikt om frauduleuze activiteiten te monitoren en te voorkomen en ervoor te zorgen dat systemen en processen goed en veilig werken.","descriptionLegal":"Om de beveiliging te verzekeren, fraude te voorkomen en fouten op te sporen, kunnen leveranciers:\n* Ervoor zorgen dat gegevens veilig worden verzonden.\n* Kwaadaardige, frauduleuze, ongeldige of illegale activiteiten opsporen en voorkomen.\n* Zorgen voor een correcte en effici\u00ebnte werking van systemen en processen, waaronder het monitoren en verbeteren van de prestaties van systemen en processen die zijn betrokken bij toegestane doeleinden.\nLeveranciers kunnen niet:\n* Gegevensverwerkende handelingen die toegestaan zijn onder dit doeleinde, verrichten onder een ander doeleinde.\nOpmerking: Gegevens die worden verzameld en gebruikt om zorg te dragen voor goede beveiliging, fraude te voorkomen en fouten op te sporen kunnen automatisch verzonden apparaat kenmerken bevatten ten bate van identificatie, nauwkeurige geolocatie gegevens en gegevens verkregen door het actief scannen van apparaat kenmerken voor identificatie zonder afzonderlijke openbaarmaking en/of opt-in.\n"},"2":{"id":2,"name":"Technisch leveren van advertenties of content","description":"Uw apparaat kan informatie ontvangen en verzenden waarmee u advertenties en content kunt zien en er interactie mee aangaan.","descriptionLegal":"Om informatie te verstrekken en te reageren op technische aanvragen kunnen leveranciers:\n* Het IP-adres van een gebruiker gebruiken om een advertentie via het internet af te leveren.\n* Reageren op de interactie van een gebruiker met een advertentie, door de gebruiker naar een landingspagina te sturen.\n* Het IP-adres van een gebruiker gebruiken om content via het internet af te leveren.\n* Reageren op de interactie van een gebruiker met de content, door de gebruiker naar een landingspagina te sturen.\n* Informatie gebruiken over het apparaattype en de mogelijkheden voor het leveren van advertenties of content, bijvoorbeeld om de juiste grootte van het advertentie-, creatief of videobestand aan te bieden in een formaat dat door het apparaat wordt ondersteund.\nLeveranciers kunnen niet:\n* Gegevensverwerkende handelingen die toegestaan zijn onder dit doeleinde, verrichten onder een ander doeleinde.\n"}},"features":{"1":{"id":1,"name":"Offline gegevens met elkaar matchen en combineren","description":"Gegevens uit offline gegevensbronnen kunnen worden gecombineerd met uw online activiteiten ter ondersteuning van een of meer doeleinden.","descriptionLegal":"Leveranciers kunnen: \n* Offline verkregen gegevens combineren met online verzamelde gegevens ter ondersteuning van een of meer doeleinden of speciale doeleinden.\n"},"2":{"id":2,"name":"Verschillende apparaten linken","description":"Verschillende apparaten kunnen worden gekenmerkt als behorend tot u of uw huishouden ter ondersteuning van een of meer doeleinden.","descriptionLegal":"Leveranciers kunnen:\n* Deterministisch bepalen dat twee of meer apparaten tot dezelfde gebruiker of hetzelfde huishouden behoren.\n* Probabilistisch bepalen dat twee of meer apparaten tot dezelfde gebruiker of hetzelfde huishouden behoren.\n* Actief apparaat kenmerken scannen voor identificatie voor probabilistische identificatie als gebruikers leveranciers in staat hebben gesteld om actief apparaat kenmerken te scannen voor identificatie (speciale functie 2).\n"},"3":{"id":3,"name":"Automatisch verzonden apparaat kenmerken ter identificatie ontvangen en gebruiken.","description":"Uw apparaat kan onderscheiden worden van andere apparaten op basis van informatie die het automatisch verzendt, zoals IP-adres of browsertype.","descriptionLegal":"Leveranciers kunnen:\n* Een identificator aanmaken met gegevens die automatisch uit een apparaat worden verzameld voor specifieke kenmerken, bijv. IP-adres, platforminformatiestring.\n* Een dergelijke identificator gebruiken om een apparaat opnieuw te trachten te identificeren.\nLeveranciers kunnen niet:\n* Een identificator aanmaken met behulp van gegevens die zijn verzameld via het actief scannen van een apparaat op specifieke kenmerken, zoals ge\u00efnstalleerde lettertypen of schermresolutie zonder de afzonderlijke opt-in van gebruikers met betrekking tot het actief scannen van apparaat kenmerken ter identificatie.\n* Een dergelijke identificator gebruiken om een apparaat opnieuw te identificeren.\n"}},"specialFeatures":{"1":{"id":1,"name":"Precieze geolocatie gegevens gebruiken","description":"Uw precieze geolocatie gegevens kunnen worden gebruikt ter ondersteuning van een of meer doeleinden. Dit betekent dat uw locatie tot op enkele meters nauwkeurig kan zijn.\n","descriptionLegal":"Leveranciers kunnen:\n* Precieze geolocatie gegevens verzamelen en verwerken ter ondersteuning van een of meer doeleinden.\nNB Precieze geolocatie betekent dat er geen beperkingen zijn op de precisie van de locatie van een gebruiker; dit kan binnen verschillende meters nauwkeurig zijn.\nOpmerking: Bepaalde vormen van gebruik van deze gegevens voor beveiliging of fraudepreventie zijn afzonderlijk gedekt en vereisen geen afzonderlijke gebruikersopt-in voor het gebruik van nauwkeurige geolocatie gegevens. \n"},"2":{"id":2,"name":"De apparaat kenmerken actief scannen voor identificatie","description":"Uw apparaat kan worden ge\u00efdentificeerd op basis van een scan van de unieke combinatie van kenmerken van uw apparaat.","descriptionLegal":"Leveranciers kunnen:\n* Een identificator aanmaken met behulp van gegevens die zijn verzameld via het actief scannen van een apparaat op specifieke kenmerken, zoals ge\u00efnstalleerde lettertypen of schermresolutie. \n* Een dergelijke identificator gebruiken om een apparaat opnieuw te identificeren.\nOpmerking: Bepaalde vormen van gebruik van deze gegevens in het kader van beveiliging of fraudepreventie zijn afzonderlijk gedekt en vereisen geen afzonderlijke opt-in van de gebruiker voor het actief scannen van apparaat kenmerken voor identificatie.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Precieze geolocatie gegevens en identificatie via het scannen van apparaten","description":"Precieze geolocatie en informatie over apparaat kenmerken kunnen worden gebruikt."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Basisadvertenties en advertentiemeting","description":"Basisadvertenties kunnen worden verschaft. Prestaties van advertenties kunnen worden gemeten."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Gepersonaliseerde advertenties","description":"Advertenties kunnen worden gepersonaliseerd op basis van een profiel. Meer gegevens kunnen worden toegevoegd om advertenties beter te personaliseren."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Basisadvertenties en advertentiemeting","description":"Basisadvertenties kunnen worden verschaft. Prestaties van advertenties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Basisadvertenties, gepersonaliseerd advertentieprofiel en advertentiemeting","description":"Basisadvertenties kunnen worden verschaft. Meer gegevens kunnen worden toegevoegd om advertenties beter te personaliseren. Prestaties van advertenties kunnen worden gemeten."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Gepersonaliseerde advertentieweergave en meting","description":"Advertenties kunnen worden gepersonaliseerd op basis van een profiel. Prestaties van advertenties kunnen worden gemeten."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Gepersonaliseerde advertentieweergave, advertentiemeting en inzichten in het publiek","description":"Advertenties kunnen worden gepersonaliseerd op basis van een profiel. Prestaties van advertenties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Gepersonaliseerde advertenties en advertentiemeting","description":"Advertenties kunnen worden gepersonaliseerd op basis van een profiel. Meer gegevens kunnen worden toegevoegd om advertenties beter te personaliseren. Prestaties van advertenties kunnen worden gemeten."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Gepersonaliseerde advertenties, advertentiemeting en inzichten in het publiek","description":"Advertenties kunnen worden gepersonaliseerd op basis van een profiel. Meer gegevens kunnen worden toegevoegd om advertenties beter te personaliseren. Prestaties van advertenties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Gepersonaliseerd advertentieprofiel en -weergave","description":"Advertenties kunnen worden gepersonaliseerd op basis van een profiel. Meer gegevens kunnen worden toegevoegd om advertenties beter te personaliseren."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Gepersonaliseerde content","description":"Content kan gepersonaliseerd worden op basis van een profiel. Meer gegevens kunnen worden toegevoegd om content beter te personaliseren."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Gepersonaliseerde contentweergave en contentmeting","description":"Content kan gepersonaliseerd worden op basis van een profiel. Content prestaties kunnen worden gemeten."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Gepersonaliseerde contentweergave, contentmeting en inzichten in het publiek","description":"Content kan gepersonaliseerd worden op basis van een profiel. Content prestaties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Gepersonaliseerde content en contentmeting","description":"Content kan gepersonaliseerd worden op basis van een profiel. Meer gegevens kunnen worden toegevoegd om content beter te personaliseren. Content prestaties kunnen worden gemeten."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Gepersonaliseerde content, contentmeting en inzichten in het publiek","description":"Content kan gepersonaliseerd worden op basis van een profiel. Meer gegevens kunnen worden toegevoegd om content beter te personaliseren. Content prestaties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Gepersonaliseerde content, contentmeting, inzichten in het publiek en productontwikkeling","description":"Content kan gepersonaliseerd worden op basis van een profiel. Meer gegevens kunnen worden toegevoegd om content beter te personaliseren. Content prestaties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien. Gegevens kunnen worden gebruikt om gebruikerservaring, systemen en software te bouwen of te verbeteren"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Advertentie- en contentmeting, en inzichten in het publiek","description":"Advertentie- en content prestaties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Advertentie- en contentmeting","description":"Advertentie- en content prestaties kunnen worden gemeten."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Advertentiemeting en inzichten in het publiek","description":"Advertentie kan worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Advertentie- en contentmeting, inzichten in het publiek en productontwikkeling","description":"Advertentie- en content prestaties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien. Gegevens kunnen worden gebruikt om gebruikerservaring, systemen en software te bouwen of te verbeteren. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Contentmeting, inzichten in het publiek en productontwikkeling.","description":"Content prestaties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien. Gegevens kunnen worden gebruikt om gebruikerservaring, systemen en software te bouwen of te verbeteren."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Contentmeting en productontwikkeling","description":"Content prestaties kunnen worden gemeten. Gegevens kunnen worden gebruikt om gebruikerservaring, systemen en software te bouwen of te verbeteren."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Gepersonaliseerde advertenties en contentweergave, advertentie- en contentmeting","description":"Advertenties en content kunnen worden gepersonaliseerd op basis van een profiel. Advertentie- en content prestaties kunnen worden gemeten."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Gepersonaliseerde advertenties en contentweergave, advertentie- en contentmeting en inzichten in het publiek","description":"Advertenties en content kunnen worden gepersonaliseerd op basis van een profiel. Advertentie- en content prestaties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien. Gegevens kunnen worden gebruikt om gebruikerservaring, systemen en software te bouwen of te verbeteren."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Gepersonaliseerde advertenties en content, advertentie- en contentmeting","description":"Advertenties en content kunnen worden gepersonaliseerd op basis van een profiel. Meer gegevens kunnen worden toegevoegd om advertenties en content beter te personaliseren. Advertentie- en content prestaties kunnen worden gemeten."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Gepersonaliseerde advertenties en content, advertentie- en contentmeting en inzichten in het publiek","description":"Advertenties en content kunnen worden gepersonaliseerd op basis van een profiel. Meer gegevens kunnen worden toegevoegd om advertenties en content beter te personaliseren. Advertentie- en content prestaties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Gepersonaliseerde advertenties en content profiel","description":"Meer gegevens kunnen worden toegevoegd om advertenties en content te personaliseren."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Gepersonaliseerde advertenties en contentweergave","description":"Advertenties en content kunnen worden gepersonaliseerd op basis van een profiel."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Basisadvertenties, advertentie- en contentmeting en inzichten in het publiek","description":"Basisadvertenties kunnen worden verschaft. Advertentie- en content prestaties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Gepersonaliseerde advertentieweergave, gepersonaliseerde content, advertentie- en contentmeting en inzichten in het publiek","description":"Advertenties en content kunnen worden gepersonaliseerd op basis van een profiel. Meer gegevens kunnen worden toegevoegd om content beter te personaliseren. Advertentie- en content prestaties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Gepersonaliseerde advertentieweergave, gepersonaliseerde content, advertentie- en contentmeting, inzichten in het publiek en productontwikkeling","description":"Advertenties en content kunnen worden gepersonaliseerd op basis van een profiel. Meer gegevens kunnen worden toegevoegd om content beter te personaliseren. Advertentie- en content prestaties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien. Gegevens kunnen worden gebruikt om gebruikerservaring, systemen en software te bouwen of te verbeteren."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Basisadvertenties, gepersonaliseerde content, advertentie- en contentmeting en inzichten in het publiek","description":"Basisadvertenties kunnen worden verschaft. Content kan gepersonaliseerd worden op basis van een profiel. Meer gegevens kunnen worden toegevoegd om content beter te personaliseren. Advertentie- en content prestaties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Basisadvertenties, gepersonaliseerde content, advertentie- en contentmeting, inzichten in het publiek en productontwikkeling","description":"Basisadvertenties kunnen worden verschaft. Content kan gepersonaliseerd worden op basis van een profiel. Meer gegevens kunnen worden toegevoegd om content beter te personaliseren. Advertentie- en content prestaties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien. Gegevens kunnen worden gebruikt om gebruikerservaring, systemen en software te bouwen of te verbeteren."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Basisadvertenties, gepersonaliseerde content, contentmeting en inzichten in het publiek","description":"Basisadvertenties kunnen worden verschaft. Content kan gepersonaliseerd worden op basis van een profiel. Meer gegevens kunnen worden toegevoegd om content beter te personaliseren. Advertentie- en content prestaties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Basisadvertenties, gepersonaliseerde content, contentmeting, inzichten in het publiek en productontwikkeling","description":"Basisadvertenties kunnen worden verschaft. Content kan gepersonaliseerd worden op basis van een profiel. Meer gegevens kunnen worden toegevoegd om content beter te personaliseren. Content prestaties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien. Gegevens kunnen worden gebruikt om gebruikerservaring, systemen en software te bouwen of te verbeteren."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Basisadvertenties, gepersonaliseerde content en advertentiemeting","description":"Basisadvertenties kunnen worden verschaft. Content kan gepersonaliseerd worden op basis van een profiel. Meer gegevens kunnen worden toegevoegd om content beter te personaliseren. Prestaties van advertenties kunnen worden gemeten."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Basisadvertenties, gepersonaliseerde content, advertentiemeting en productontwikkeling","description":"Basisadvertenties kunnen worden verschaft. Content kan gepersonaliseerd worden op basis van een profiel. Meer gegevens kunnen worden toegevoegd om content beter te personaliseren. Prestaties van advertenties kunnen worden gemeten. Gegevens kunnen worden gebruikt om gebruikerservaring, systemen en software te bouwen of te verbeteren."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Gepersonaliseerde advertenties, advertentiemeting en productontwikkeling","description":"Advertenties kunnen worden gepersonaliseerd op basis van een profiel. Meer gegevens kunnen worden toegevoegd om advertenties beter te personaliseren. Prestaties van advertenties kunnen worden gemeten. Gegevens kunnen worden gebruikt om gebruikerservaring, systemen en software te bouwen of te verbeteren."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Gepersonaliseerde advertenties, advertentiemeting, inzichten in het publiek en productontwikkeling","description":"Advertenties kunnen worden gepersonaliseerd op basis van een profiel. Meer gegevens kunnen worden toegevoegd om advertenties beter te personaliseren. Prestaties van advertenties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien. Gegevens kunnen worden gebruikt om gebruikerservaring, systemen en software te bouwen of te verbeteren."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Gepersonaliseerde advertenties, advertentie- en contentmeting, inzichten in het publiek en productontwikkeling","description":"Advertenties kunnen worden gepersonaliseerd op basis van een profiel. Meer gegevens kunnen worden toegevoegd om advertenties beter te personaliseren. Advertentie- en contentprestaties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien. Gegevens kunnen worden gebruikt om gebruikerservaring, systemen en software te bouwen of te verbeteren."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Gepersonaliseerde advertenties, weergave van gepersonaliseerde content, advertentie- en contentmeting, inzichten in het publiek en productontwikkeling","description":"Advertenties en content kunnen worden gepersonaliseerd op basis van een profiel. Meer gegevens kunnen worden toegevoegd om advertenties beter te personaliseren. Advertentie- en contentprestaties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien. Gegevens kunnen worden gebruikt om gebruikerservaring, systemen en software te bouwen of te verbeteren."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Gepersonaliseerde advertenties en inhoud, advertentie- en inhoudsmeting, doelgroep inzichten en productontwikkeling.","description":"Advertenties en content kunnen worden gepersonaliseerd op basis van een profiel. Meer gegevens kunnen worden toegevoegd om advertenties en content beter te personaliseren. Advertentie- en contentprestaties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien. Gegevens kunnen worden gebruikt om gebruikerservaring, systemen en software te bouwen of te verbeteren."}}} \ No newline at end of file +{"vendorListVersion":94,"lastUpdated":"2021-06-10T16:44:01Z","purposes":{"1":{"id":1,"name":"Informatie op een apparaat opslaan en/of openen","description":"Cookies, apparaatidentificatoren of andere informatie kunnen op uw apparaat worden opgeslagen of geopend voor de doeleinden die aan u worden gepresenteerd.","descriptionLegal":"Leveranciers kunnen:\n* Informatie op een apparaat opslaan en openen, zoals cookies en apparaatidentificatoren die aan een gebruiker worden gepresenteerd.\n"},"2":{"id":2,"name":"Basisadvertenties selecteren","description":"Advertenties kunnen aan u worden getoond op basis van de content die u bekijkt, de app die u gebruikt, uw locatie bij benadering of uw apparaattype.","descriptionLegal":"Voor het selecteren van basisadvertenties kunnen leveranciers:\n*Realtime informatie gebruiken over de context waarin de advertentie wordt weergegeven, om de advertentie te tonen, inclusief informatie over de content en het apparaat, zoals: apparaattype en -mogelijkheden, platforminformatie (\u2018user agent\u2019), URL, IP-adres.\n* De niet-precieze geolocatie gegevens van een gebruiker gebruiken.\n* De frequentie bepalen van de advertenties die aan een gebruiker worden getoond.\n* De volgorde bepalen waarin advertenties aan een gebruiker worden getoond.\n* Voorkomen dat een advertentie in een ongeschikte redactionele (merk-onveilige) context getoond wordt.\nLeveranciers kunnen niet:\n* Een gepersonaliseerd advertentieprofiel aanmaken met behulp van deze informatie voor de selectie van toekomstige advertenties zonder een afzonderlijke rechtsgrond voor de aanmaak van een gepersonaliseerd advertentieprofiel.\nN.B. Niet-precies betekent slechts een locatie bij benadering waarbij ten minste een radius van 500 meter is toegestaan.\n"},"3":{"id":3,"name":"Een gepersonaliseerd advertentieprofiel aanmaken","description":"Er kan een profiel over u en uw interesses worden gebouwd om u gepersonaliseerde advertenties te tonen die relevant zijn voor u.","descriptionLegal":"Om een gepersonaliseerd advertentieprofiel aan te maken, kunnen leveranciers:\n* Informatie over een gebruiker verzamelen, waaronder de activiteiten, interesses, demografische informatie of de locatie van een gebruiker, om een gebruikersprofiel aan te maken of te bewerken voor gebruik in gepersonaliseerde advertenties.\n* Combineer deze informatie met andere informatie die eerder is verzameld, ook van websites en apps, om een \u200b\u200bgebruikersprofiel te maken of te bewerken voor gebruik in gepersonaliseerde advertenties.\n"},"4":{"id":4,"name":"Gepersonaliseerde advertenties selecteren","description":"Gepersonaliseerde advertenties kunnen aan u worden getoond op basis van een profiel over u.","descriptionLegal":"Om gepersonaliseerde advertenties te selecteren, kunnen leveranciers:\n* Gepersonaliseerde advertenties selecteren op basis van een gebruikersprofiel of andere historische gebruikersgegevens, waaronder de eerdere activiteiten, interesses, bezoeken aan sites of apps, locatie of demografische informatie van een gebruiker.\n"},"5":{"id":5,"name":"Een gepersonaliseerd content profiel aanmaken","description":"Er kan een profiel over u en uw interesses worden gebouwd om u gepersonaliseerde content te tonen die relevant is voor u.","descriptionLegal":"Om een gepersonaliseerd content profiel aan te maken, kunnen leveranciers:\n* Informatie over een gebruiker verzamelen, inclusief de activiteiten, interesses, bezoeken aan sites of apps, demografische informatie of locatie van een gebruiker, om een gebruikersprofiel aan te maken of te bewerken voor het personaliseren van content.\n* Combineer deze informatie met andere informatie die eerder is verzameld, ook van websites en apps, om een \u200b\u200bgebruikersprofiel te maken of te bewerken voor gebruik bij het personaliseren van inhoud."},"6":{"id":6,"name":"Gepersonaliseerde content selecteren","description":"Gepersonaliseerde content kan aan u worden getoond op basis van een profiel over u.","descriptionLegal":"Om gepersonaliseerde content te selecteren, kunnen leveranciers:\n* Gepersonaliseerde content selecteren op basis van een gebruikersprofiel of andere historische gebruikersgegevens, waaronder de eerdere activiteiten, interesses, bezoeken aan sites of apps, locatie of demografische informatie van een gebruiker.\n"},"7":{"id":7,"name":"Prestaties van advertenties meten","description":"De prestaties en doeltreffendheid van advertenties die u ziet of waarmee u interactie aangaat, kunnen worden gemeten.","descriptionLegal":"Om prestaties van advertenties te meten, kunnen leveranciers:\n* Meten of en hoe advertenties werden geleverd aan en interactie aangingen met een gebruiker.\n* Rapportage verschaffen over advertenties, inclusief hun doeltreffendheid en prestaties.\n* Rapportage verschaffen over gebruikers die interactie aangingen met advertenties hebben gehad met behulp van gegevens waargenomen tijdens de interactie van de gebruiker met die advertentie.\n* Rapportage verschaffen aan adverteerders over de advertenties die op hun eigendom worden weergegeven.\n* Meten of een advertentie in een geschikte redactionele omgeving (merk veilig) context getoond wordt.\n* Het percentage vaststellen van de advertentie die de kans had gezien te worden en de duur van die kans bepalen.\nLeveranciers kunnen niet:\n* Zonder afzonderlijke rechtsgrond op panels gebaseerde of soortgelijke afgeleide gegevens over het publiek toepassen op de gegevens van advertentiemetingen om marktonderzoek toe te passen om inzichten in het publiek te verkrijgen..\n"},"8":{"id":8,"name":"Content prestaties meten","description":"De prestaties en doeltreffendheid van content die u ziet of waar u interactie mee aangaat, kunnen worden gemeten.","descriptionLegal":"Om de content prestaties te meten, kunnen leveranciers:\n* Meten hoe content werd geleverd aan gebruikers en hoe deze er interactie mee aangingen en hierover rapporteren.\n* Rapportage verschaffen, met gebruik van direct meetbare of bekende informatie, over gebruikers die interactie aangingen met de content.\nLeveranciers kunnen niet:\n* Meten of en hoe advertenties (inclusief native advertenties) werden geleverd aan een gebruiker en hoe deze er interactie mee aanging.\n* Zonder afzonderlijke rechtsgrond op panels gebaseerde of soortgelijke afgeleide gegevens over het publiek toepassen op de gegevens van advertentiemetingen om marktonderzoek toe te passen om inzichten in het publiek te verkrijgen.\n"},"9":{"id":9,"name":"Marktonderzoek toepassen om inzichten in het publiek te genereren","description":"Marktonderzoek kan worden gebruikt om meer te weten te komen over het publiek dat sites/apps bezoekt en advertenties bekijkt.","descriptionLegal":"Om marktonderzoek toe te passen om inzichten in het publiek te genereren, kunnen leveranciers:\n* Geaggregeerde rapportage verschaffen aan adverteerders of hun vertegenwoordigers over het publiek dat door hun advertenties wordt bereikt, via op panels gebaseerde en op soortgelijke wijze afgeleide inzichten.\n* Geaggregeerde rapportage verschaffen aan adverteerders over het publiek dat werd bereikt of dat interactie aanging met content en/of advertenties op hun eigendom door op panels gebaseerde en op soortgelijke wijze afgeleide inzichten toe te passen. \n* Offlinegegevens associ\u00ebren met een onlinegebruiker ten bate van marktonderzoek om inzichten in het publiek te genereren als leveranciers hebben verklaard gegevensbronnen te matchen en combineren (functie 1).\nLeveranciers kunnen niet: \n* Zonder afzonderlijke rechtsgrond de prestaties en doeltreffendheid meten van advertenties die aan een specifieke gebruiker getoond werden of waar deze interactie mee aanging, om de prestaties van advertenties te meten.\n* Zonder afzonderlijke rechtsgrond meten welke content een specifieke gebruiker is verschaft en hoe deze er interactie mee aanging, om de content prestaties te meten..\n"},"10":{"id":10,"name":"Producten ontwikkelen en verbeteren","description":"Uw gegevens kunnen worden gebruikt om bestaande systemen en software te verbeteren en nieuwe producten te ontwikkelen.","descriptionLegal":"Om nieuwe producten te ontwikkelen en producten te verbeteren, kunnen leveranciers:\n* Informatie gebruiken om hun bestaande producten te verbeteren met nieuwe functies en om nieuwe producten te ontwikkelen.\n* Nieuwe modellen en algoritmes aanmaken door middel van machinaal leren.\nLeveranciers kunnen niet:\n* Gegevensverwerkende handelingen die toegestaan zijn onder dit doeleinde, verrichten onder een ander doeleinde.\n"}},"specialPurposes":{"1":{"id":1,"name":"Beveiliging verzekeren, fraude voorkomen en fouten opsporen","description":"Uw gegevens kunnen worden gebruikt om frauduleuze activiteiten te monitoren en te voorkomen en ervoor te zorgen dat systemen en processen goed en veilig werken.","descriptionLegal":"Om de beveiliging te verzekeren, fraude te voorkomen en fouten op te sporen, kunnen leveranciers:\n* Ervoor zorgen dat gegevens veilig worden verzonden.\n* Kwaadaardige, frauduleuze, ongeldige of illegale activiteiten opsporen en voorkomen.\n* Zorgen voor een correcte en effici\u00ebnte werking van systemen en processen, waaronder het monitoren en verbeteren van de prestaties van systemen en processen die zijn betrokken bij toegestane doeleinden.\nLeveranciers kunnen niet:\n* Gegevensverwerkende handelingen die toegestaan zijn onder dit doeleinde, verrichten onder een ander doeleinde.\nOpmerking: Gegevens die worden verzameld en gebruikt om zorg te dragen voor goede beveiliging, fraude te voorkomen en fouten op te sporen kunnen automatisch verzonden apparaat kenmerken bevatten ten bate van identificatie, nauwkeurige geolocatie gegevens en gegevens verkregen door het actief scannen van apparaat kenmerken voor identificatie zonder afzonderlijke openbaarmaking en/of opt-in.\n"},"2":{"id":2,"name":"Technisch leveren van advertenties of content","description":"Uw apparaat kan informatie ontvangen en verzenden waarmee u advertenties en content kunt zien en er interactie mee aangaan.","descriptionLegal":"Om informatie te verstrekken en te reageren op technische aanvragen kunnen leveranciers:\n* Het IP-adres van een gebruiker gebruiken om een advertentie via het internet af te leveren.\n* Reageren op de interactie van een gebruiker met een advertentie, door de gebruiker naar een landingspagina te sturen.\n* Het IP-adres van een gebruiker gebruiken om content via het internet af te leveren.\n* Reageren op de interactie van een gebruiker met de content, door de gebruiker naar een landingspagina te sturen.\n* Informatie gebruiken over het apparaattype en de mogelijkheden voor het leveren van advertenties of content, bijvoorbeeld om de juiste grootte van het advertentie-, creatief of videobestand aan te bieden in een formaat dat door het apparaat wordt ondersteund.\nLeveranciers kunnen niet:\n* Gegevensverwerkende handelingen die toegestaan zijn onder dit doeleinde, verrichten onder een ander doeleinde.\n"}},"features":{"1":{"id":1,"name":"Offline gegevens met elkaar matchen en combineren","description":"Gegevens uit offline gegevensbronnen kunnen worden gecombineerd met uw online activiteiten ter ondersteuning van een of meer doeleinden.","descriptionLegal":"Leveranciers kunnen: \n* Offline verkregen gegevens combineren met online verzamelde gegevens ter ondersteuning van een of meer doeleinden of speciale doeleinden.\n"},"2":{"id":2,"name":"Verschillende apparaten linken","description":"Verschillende apparaten kunnen worden gekenmerkt als behorend tot u of uw huishouden ter ondersteuning van een of meer doeleinden.","descriptionLegal":"Leveranciers kunnen:\n* Deterministisch bepalen dat twee of meer apparaten tot dezelfde gebruiker of hetzelfde huishouden behoren.\n* Probabilistisch bepalen dat twee of meer apparaten tot dezelfde gebruiker of hetzelfde huishouden behoren.\n* Actief apparaat kenmerken scannen voor identificatie voor probabilistische identificatie als gebruikers leveranciers in staat hebben gesteld om actief apparaat kenmerken te scannen voor identificatie (speciale functie 2).\n"},"3":{"id":3,"name":"Automatisch verzonden apparaat kenmerken ter identificatie ontvangen en gebruiken.","description":"Uw apparaat kan onderscheiden worden van andere apparaten op basis van informatie die het automatisch verzendt, zoals IP-adres of browsertype.","descriptionLegal":"Leveranciers kunnen:\n* Een identificator aanmaken met gegevens die automatisch uit een apparaat worden verzameld voor specifieke kenmerken, bijv. IP-adres, platforminformatiestring.\n* Een dergelijke identificator gebruiken om een apparaat opnieuw te trachten te identificeren.\nLeveranciers kunnen niet:\n* Een identificator aanmaken met behulp van gegevens die zijn verzameld via het actief scannen van een apparaat op specifieke kenmerken, zoals ge\u00efnstalleerde lettertypen of schermresolutie zonder de afzonderlijke opt-in van gebruikers met betrekking tot het actief scannen van apparaat kenmerken ter identificatie.\n* Een dergelijke identificator gebruiken om een apparaat opnieuw te identificeren.\n"}},"specialFeatures":{"1":{"id":1,"name":"Precieze geolocatie gegevens gebruiken","description":"Uw precieze geolocatie gegevens kunnen worden gebruikt ter ondersteuning van een of meer doeleinden. Dit betekent dat uw locatie tot op enkele meters nauwkeurig kan zijn.\n","descriptionLegal":"Leveranciers kunnen:\n* Precieze geolocatie gegevens verzamelen en verwerken ter ondersteuning van een of meer doeleinden.\nNB Precieze geolocatie betekent dat er geen beperkingen zijn op de precisie van de locatie van een gebruiker; dit kan binnen verschillende meters nauwkeurig zijn.\nOpmerking: Bepaalde vormen van gebruik van deze gegevens voor beveiliging of fraudepreventie zijn afzonderlijk gedekt en vereisen geen afzonderlijke gebruikersopt-in voor het gebruik van nauwkeurige geolocatie gegevens. \n"},"2":{"id":2,"name":"De apparaat kenmerken actief scannen voor identificatie","description":"Uw apparaat kan worden ge\u00efdentificeerd op basis van een scan van de unieke combinatie van kenmerken van uw apparaat.","descriptionLegal":"Leveranciers kunnen:\n* Een identificator aanmaken met behulp van gegevens die zijn verzameld via het actief scannen van een apparaat op specifieke kenmerken, zoals ge\u00efnstalleerde lettertypen of schermresolutie. \n* Een dergelijke identificator gebruiken om een apparaat opnieuw te identificeren.\nOpmerking: Bepaalde vormen van gebruik van deze gegevens in het kader van beveiliging of fraudepreventie zijn afzonderlijk gedekt en vereisen geen afzonderlijke opt-in van de gebruiker voor het actief scannen van apparaat kenmerken voor identificatie.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Precieze geolocatie gegevens en identificatie via het scannen van apparaten","description":"Precieze geolocatie en informatie over apparaat kenmerken kunnen worden gebruikt."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Basisadvertenties en advertentiemeting","description":"Basisadvertenties kunnen worden verschaft. Prestaties van advertenties kunnen worden gemeten."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Gepersonaliseerde advertenties","description":"Advertenties kunnen worden gepersonaliseerd op basis van een profiel. Meer gegevens kunnen worden toegevoegd om advertenties beter te personaliseren."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Basisadvertenties en advertentiemeting","description":"Basisadvertenties kunnen worden verschaft. Prestaties van advertenties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Basisadvertenties, gepersonaliseerd advertentieprofiel en advertentiemeting","description":"Basisadvertenties kunnen worden verschaft. Meer gegevens kunnen worden toegevoegd om advertenties beter te personaliseren. Prestaties van advertenties kunnen worden gemeten."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Gepersonaliseerde advertentieweergave en meting","description":"Advertenties kunnen worden gepersonaliseerd op basis van een profiel. Prestaties van advertenties kunnen worden gemeten."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Gepersonaliseerde advertentieweergave, advertentiemeting en inzichten in het publiek","description":"Advertenties kunnen worden gepersonaliseerd op basis van een profiel. Prestaties van advertenties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Gepersonaliseerde advertenties en advertentiemeting","description":"Advertenties kunnen worden gepersonaliseerd op basis van een profiel. Meer gegevens kunnen worden toegevoegd om advertenties beter te personaliseren. Prestaties van advertenties kunnen worden gemeten."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Gepersonaliseerde advertenties, advertentiemeting en inzichten in het publiek","description":"Advertenties kunnen worden gepersonaliseerd op basis van een profiel. Meer gegevens kunnen worden toegevoegd om advertenties beter te personaliseren. Prestaties van advertenties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Gepersonaliseerd advertentieprofiel en -weergave","description":"Advertenties kunnen worden gepersonaliseerd op basis van een profiel. Meer gegevens kunnen worden toegevoegd om advertenties beter te personaliseren."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Gepersonaliseerde content","description":"Content kan gepersonaliseerd worden op basis van een profiel. Meer gegevens kunnen worden toegevoegd om content beter te personaliseren."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Gepersonaliseerde contentweergave en contentmeting","description":"Content kan gepersonaliseerd worden op basis van een profiel. Content prestaties kunnen worden gemeten."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Gepersonaliseerde contentweergave, contentmeting en inzichten in het publiek","description":"Content kan gepersonaliseerd worden op basis van een profiel. Content prestaties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Gepersonaliseerde content en contentmeting","description":"Content kan gepersonaliseerd worden op basis van een profiel. Meer gegevens kunnen worden toegevoegd om content beter te personaliseren. Content prestaties kunnen worden gemeten."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Gepersonaliseerde content, contentmeting en inzichten in het publiek","description":"Content kan gepersonaliseerd worden op basis van een profiel. Meer gegevens kunnen worden toegevoegd om content beter te personaliseren. Content prestaties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Gepersonaliseerde content, contentmeting, inzichten in het publiek en productontwikkeling","description":"Content kan gepersonaliseerd worden op basis van een profiel. Meer gegevens kunnen worden toegevoegd om content beter te personaliseren. Content prestaties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien. Gegevens kunnen worden gebruikt om gebruikerservaring, systemen en software te bouwen of te verbeteren"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Advertentie- en contentmeting, en inzichten in het publiek","description":"Advertentie- en content prestaties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Advertentie- en contentmeting","description":"Advertentie- en content prestaties kunnen worden gemeten."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Advertentiemeting en inzichten in het publiek","description":"Advertentie kan worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Advertentie- en contentmeting, inzichten in het publiek en productontwikkeling","description":"Advertentie- en content prestaties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien. Gegevens kunnen worden gebruikt om gebruikerservaring, systemen en software te bouwen of te verbeteren. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Contentmeting, inzichten in het publiek en productontwikkeling","description":"Content prestaties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien. Gegevens kunnen worden gebruikt om gebruikerservaring, systemen en software te bouwen of te verbeteren."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Contentmeting en productontwikkeling","description":"Content prestaties kunnen worden gemeten. Gegevens kunnen worden gebruikt om gebruikerservaring, systemen en software te bouwen of te verbeteren."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Gepersonaliseerde advertenties en contentweergave, advertentie- en contentmeting","description":"Advertenties en content kunnen worden gepersonaliseerd op basis van een profiel. Advertentie- en content prestaties kunnen worden gemeten."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Gepersonaliseerde advertenties en contentweergave, advertentie- en contentmeting en inzichten in het publiek","description":"Advertenties en content kunnen worden gepersonaliseerd op basis van een profiel. Advertentie- en content prestaties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien. Gegevens kunnen worden gebruikt om gebruikerservaring, systemen en software te bouwen of te verbeteren."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Gepersonaliseerde advertenties en content, advertentie- en contentmeting","description":"Advertenties en content kunnen worden gepersonaliseerd op basis van een profiel. Meer gegevens kunnen worden toegevoegd om advertenties en content beter te personaliseren. Advertentie- en content prestaties kunnen worden gemeten."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Gepersonaliseerde advertenties en content, advertentie- en contentmeting en inzichten in het publiek","description":"Advertenties en content kunnen worden gepersonaliseerd op basis van een profiel. Meer gegevens kunnen worden toegevoegd om advertenties en content beter te personaliseren. Advertentie- en content prestaties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Gepersonaliseerde advertenties en content profiel","description":"Meer gegevens kunnen worden toegevoegd om advertenties en content te personaliseren."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Gepersonaliseerde advertenties en contentweergave","description":"Advertenties en content kunnen worden gepersonaliseerd op basis van een profiel."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Basisadvertenties, advertentie- en contentmeting en inzichten in het publiek","description":"Basisadvertenties kunnen worden verschaft. Advertentie- en content prestaties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Gepersonaliseerde advertentieweergave, gepersonaliseerde content, advertentie- en contentmeting en inzichten in het publiek","description":"Advertenties en content kunnen worden gepersonaliseerd op basis van een profiel. Meer gegevens kunnen worden toegevoegd om content beter te personaliseren. Advertentie- en content prestaties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Gepersonaliseerde advertentieweergave, gepersonaliseerde content, advertentie- en contentmeting, inzichten in het publiek en productontwikkeling","description":"Advertenties en content kunnen worden gepersonaliseerd op basis van een profiel. Meer gegevens kunnen worden toegevoegd om content beter te personaliseren. Advertentie- en content prestaties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien. Gegevens kunnen worden gebruikt om gebruikerservaring, systemen en software te bouwen of te verbeteren."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Basisadvertenties, gepersonaliseerde content, advertentie- en contentmeting en inzichten in het publiek","description":"Basisadvertenties kunnen worden verschaft. Content kan gepersonaliseerd worden op basis van een profiel. Meer gegevens kunnen worden toegevoegd om content beter te personaliseren. Advertentie- en content prestaties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Basisadvertenties, gepersonaliseerde content, advertentie- en contentmeting, inzichten in het publiek en productontwikkeling","description":"Basisadvertenties kunnen worden verschaft. Content kan gepersonaliseerd worden op basis van een profiel. Meer gegevens kunnen worden toegevoegd om content beter te personaliseren. Advertentie- en content prestaties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien. Gegevens kunnen worden gebruikt om gebruikerservaring, systemen en software te bouwen of te verbeteren."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Basisadvertenties, gepersonaliseerde content, contentmeting en inzichten in het publiek","description":"Basisadvertenties kunnen worden verschaft. Content kan gepersonaliseerd worden op basis van een profiel. Meer gegevens kunnen worden toegevoegd om content beter te personaliseren. Advertentie- en content prestaties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Basisadvertenties, gepersonaliseerde content, contentmeting, inzichten in het publiek en productontwikkeling","description":"Basisadvertenties kunnen worden verschaft. Content kan gepersonaliseerd worden op basis van een profiel. Meer gegevens kunnen worden toegevoegd om content beter te personaliseren. Content prestaties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien. Gegevens kunnen worden gebruikt om gebruikerservaring, systemen en software te bouwen of te verbeteren."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Basisadvertenties, gepersonaliseerde content en advertentiemeting","description":"Basisadvertenties kunnen worden verschaft. Content kan gepersonaliseerd worden op basis van een profiel. Meer gegevens kunnen worden toegevoegd om content beter te personaliseren. Prestaties van advertenties kunnen worden gemeten."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Basisadvertenties, gepersonaliseerde content, advertentiemeting en productontwikkeling","description":"Basisadvertenties kunnen worden verschaft. Content kan gepersonaliseerd worden op basis van een profiel. Meer gegevens kunnen worden toegevoegd om content beter te personaliseren. Prestaties van advertenties kunnen worden gemeten. Gegevens kunnen worden gebruikt om gebruikerservaring, systemen en software te bouwen of te verbeteren."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Gepersonaliseerde advertenties, advertentiemeting en productontwikkeling","description":"Advertenties kunnen worden gepersonaliseerd op basis van een profiel. Meer gegevens kunnen worden toegevoegd om advertenties beter te personaliseren. Prestaties van advertenties kunnen worden gemeten. Gegevens kunnen worden gebruikt om gebruikerservaring, systemen en software te bouwen of te verbeteren."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Gepersonaliseerde advertenties, advertentiemeting, inzichten in het publiek en productontwikkeling","description":"Advertenties kunnen worden gepersonaliseerd op basis van een profiel. Meer gegevens kunnen worden toegevoegd om advertenties beter te personaliseren. Prestaties van advertenties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien. Gegevens kunnen worden gebruikt om gebruikerservaring, systemen en software te bouwen of te verbeteren."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Gepersonaliseerde advertenties, advertentie- en contentmeting, inzichten in het publiek en productontwikkeling","description":"Advertenties kunnen worden gepersonaliseerd op basis van een profiel. Meer gegevens kunnen worden toegevoegd om advertenties beter te personaliseren. Advertentie- en contentprestaties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien. Gegevens kunnen worden gebruikt om gebruikerservaring, systemen en software te bouwen of te verbeteren."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Gepersonaliseerde advertenties, weergave van gepersonaliseerde content, advertentie- en contentmeting, inzichten in het publiek en productontwikkeling","description":"Advertenties en content kunnen worden gepersonaliseerd op basis van een profiel. Meer gegevens kunnen worden toegevoegd om advertenties beter te personaliseren. Advertentie- en contentprestaties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien. Gegevens kunnen worden gebruikt om gebruikerservaring, systemen en software te bouwen of te verbeteren."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Gepersonaliseerde advertenties en inhoud, advertentie- en inhoudsmeting, doelgroep inzichten en productontwikkeling.","description":"Advertenties en content kunnen worden gepersonaliseerd op basis van een profiel. Meer gegevens kunnen worden toegevoegd om advertenties en content beter te personaliseren. Advertentie- en contentprestaties kunnen worden gemeten. Inzichten kunnen worden afgeleid over het publiek dat de advertenties en content heeft gezien. Gegevens kunnen worden gebruikt om gebruikerservaring, systemen en software te bouwen of te verbeteren."}}} \ No newline at end of file diff --git a/src/s1/config/2.0/purposes/purposes-no.json b/src/s1/config/2.0/purposes/purposes-no.json index d6881db9..45bba2ae 100644 --- a/src/s1/config/2.0/purposes/purposes-no.json +++ b/src/s1/config/2.0/purposes/purposes-no.json @@ -1 +1 @@ -{"vendorListVersion":79,"lastUpdated":"2021-02-25T16:36:22Z","purposes":{"1":{"id":1,"name":"Lagre og/eller f\u00e5 tilgang til informasjon p\u00e5 en enhet","description":"Informasjonskapsler, enhetsidentifikatorer eller annen informasjon kan lagres eller \u00e5pnes p\u00e5 enheten din for de form\u00e5lene som presenteres for deg.","descriptionLegal":"Leverand\u00f8rer kan:\n* lagre og f\u00e5 tilgang til informasjon p\u00e5 enheten, som eksempel informasjonskapsler og enhetsidentifikatorer som presenteres til en bruker.\n"},"2":{"id":2,"name":"Velg grunnleggende annonser","description":"Annonser kan vises til deg basert p\u00e5 innholdet du ser p\u00e5, appen du bruker, den omtrentlige lokasjonen din eller enhetstypen din.","descriptionLegal":"For \u00e5 gj\u00f8re grunnleggende annonsevalg, kan leverand\u00f8rer:\n* bruke sanntidsinformasjon om sammenhengen for at annonsen vises, for \u00e5 vise annonsen, inkludert informasjon om innholdet og enheten, som for eksempel: enhetstype og evner, brukeragent, URL, IP-adresse \n* bruke en brukers ikke-presise geolokasjonsdata\n* kontrollere hyppigheten av annonser som vises til en bruker\n* sekvensere rekkef\u00f8lgen som annonser vises til en bruker\n* forhindre en annonse fra \u00e5 tjene i en upassende redaksjonell (merkevareutrygt) sammenheng.\nLeverand\u00f8rer kan ikke:\n* Opprette en personlig annonseprofil med denne informasjonen for valg av fremtidige annonser uten et separat juridisk grunnlag om \u00e5 opprette en tilpasset annonseprofil.\nNB. Ikke-presis betyr kun en omtrentlig lokasjon som involverer at en radius p\u00e5 minst 500 meter er tillatt.\n"},"3":{"id":3,"name":"Opprett en personlig annonseprofil","description":"En profil kan bygges om deg og interessene dine for \u00e5 vise deg personlige annonser som er relevante for deg.","descriptionLegal":"For \u00e5 opprette en personlig annonseprofil kan leverand\u00f8rer:\n* Samle inn informasjon om en bruker, inkludert en brukers aktivitet, interesser, demografisk informasjon eller sted, for \u00e5 opprette eller redigere en brukerprofil for bruk i personlig annonsering.\n* Kombiner denne informasjonen med annen informasjon som tidligere er samlet inn, inkludert p\u00e5 tvers av nettsteder og apper, for \u00e5 opprette eller redigere en brukerprofil for bruk i personlig annonsering."},"4":{"id":4,"name":"Velg personlige annonser","description":"Personlige annonser kan vises til deg basert p\u00e5 en profil om deg.","descriptionLegal":"For \u00e5 velge personlige annonser kan leverand\u00f8rer:\n* velge personlige annonser basert p\u00e5 en brukerprofil eller andre historiske brukerdata, inkludert en brukers tidligere aktivitet, interesser, bes\u00f8k p\u00e5 nettsteder eller apper, sted eller demografisk informasjon.\n"},"5":{"id":5,"name":"Opprette en personlig innholdsprofil","description":"En profil kan bygges om deg og interessene dine for \u00e5 vise deg personlig innhold som er relevant for deg.","descriptionLegal":"For \u00e5 opprette en personlig innholdsprofil kan leverand\u00f8rer:\n* samle inn informasjon om en bruker, inkludert en brukers aktivitet, interesser, bes\u00f8k p\u00e5 nettsteder eller apper, demografisk informasjon eller sted, for \u00e5 opprette eller redigere en brukerprofil for personlig tilpasset innhold.\n* Kombiner denne informasjonen med annen informasjon som er samlet inn tidligere, inkludert p\u00e5 tvers av nettsteder og apper, for \u00e5 opprette eller redigere en brukerprofil for bruk i personalisering av innhold.\n"},"6":{"id":6,"name":"Velge personlig innhold","description":"Personlig innhold kan vises til deg basert p\u00e5 en profil om deg.","descriptionLegal":"For \u00e5 velge personlig innhold kan leverand\u00f8rer:\n* velge tilpasset innhold basert p\u00e5 en brukerprofil eller andre historiske brukerdata, inkludert en brukers tidligere aktivitet, interesser, bes\u00f8k p\u00e5 nettsteder eller apper, sted eller demografisk informasjon.\n"},"7":{"id":7,"name":"M\u00e5le annonseprestasjon","description":"Prestasjonen og effektiviteten til annonser du ser eller samhandler med kan m\u00e5les.","descriptionLegal":"For \u00e5 m\u00e5le annonseprestasjon kan leverand\u00f8rer:\n* m\u00e5le om og hvordan annonser ble levert til og samhandlet med av en bruker\n* skaffe rapporter om annonser, inkludert effektiviteten og prestasjonen deres\n* skaffe rapporter om brukere som samhandlet med annonser, med data som ble observert i l\u00f8pet av brukerens samhandling med den annonsen\n* skaffe rapporter til utgivere om annonsene som vises p\u00e5 eiendommen deres\n* m\u00e5le om en annonse fungerer i en egnet redaksjonell milj\u00f8sammenheng (merkevaresikkert)\n* fastsl\u00e5 prosentandelen av annonsen som hadde mulighet til \u00e5 bli sett, og varigheten av denne muligheten. \nLeverand\u00f8rer kan ikke:\n* Bruke publikumsdata hentet fra paneler eller tilsvarende for \u00e5 legge til m\u00e5lte data om annonser uten juridisk grunnlag for \u00e5 bruke markedsunders\u00f8kelser til \u00e5 generere publikumsinnsikt.\n"},"8":{"id":8,"name":"M\u00e5le innholdsprestasjon","description":"Prestasjonen og effektiviteten til innhold du ser eller samhandler med kan m\u00e5les.","descriptionLegal":"For \u00e5 m\u00e5le innholdsprestasjon kan leverand\u00f8rer:\n* m\u00e5le og rapportere hvordan innhold ble levert til og samhandlet med av brukere\n* skaffe rapporter ved bruk av direkte m\u00e5lbar eller kjent informasjon om brukere som samhandlet med innholdet.\nLeverand\u00f8rer kan ikke:\n* m\u00e5le om og hvordan annonser (inkludert opprinnelige annonser) ble levert til og samhandlet med av en bruker\n* Bruke publikumsdata hentet fra panel eller tilsvarende for \u00e5 legge til m\u00e5lte data om annonser uten et separat juridisk grunnlag for \u00e5 bruke markedsunders\u00f8kelser til \u00e5 generere publikumsinnsikt.\n"},"9":{"id":9,"name":"Bruk markedsunders\u00f8kelser til \u00e5 generere publikumsinnsikt","description":"Markedsunders\u00f8kelser kan brukes til \u00e5 l\u00e6re mer om publikum som bes\u00f8ker nettsteder/apper og ser p\u00e5 annonser.","descriptionLegal":"For \u00e5 bruke markedsunders\u00f8kelser til \u00e5 generere publikumsinnsikt kan leverand\u00f8rer:\n* gi samlet rapportering til annons\u00f8rer eller representantene deres om publikum som n\u00e5s med annonsene, gjennom innsikt hentet fra panel og tilsvarende\n* gi samlet rapportering til utgivere om publikum som ble servert eller samhandlet, med innhold og/eller annonser p\u00e5 eiendommen deres, ved \u00e5 bruke innsikt hentet fra panel og tilsvarende \n* knytte offline-data til en online-bruker med form\u00e5l om markedsunders\u00f8kelser for \u00e5 generere publikumsinnsikt hvis leverand\u00f8rene har erkl\u00e6rt \u00e5 matche og kombinere offline-datakilder (funksjon 1).\nLeverand\u00f8rer kan ikke: \n* M\u00e5le prestasjonen og effektiviteten til annonser som en bestemt bruker fikk levert eller samhandlet med, uten et separat juridisk grunnlag for \u00e5 m\u00e5le annonseprestasjon.\n* M\u00e5le hvilket innhold en bestemt bruker ble levert og hvordan de samhandlet med det, uten et separat juridisk grunnlag for \u00e5 m\u00e5le innholdsprestasjon.\n"},"10":{"id":10,"name":"Utvikle og forbedre produkter","description":"Dataene dine kan brukes til \u00e5 forbedre eksisterende systemer og programvare, og til \u00e5 utvikle nye produkter.","descriptionLegal":"For \u00e5 utvikle nye produkter og forbedre produkter kan leverand\u00f8rer:\n* bruke informasjon til \u00e5 forbedre de eksisterende produktene med nye funksjoner og for \u00e5 utvikle nye produkter\n* opprette nye modeller og algoritmer gjennom maskinl\u00e6ring\nLeverand\u00f8rer kan ikke:\n* utf\u00f8re andre databehandlingsoperasjoner som er tillatt under et annet form\u00e5l, under dette form\u00e5let\n"}},"specialPurposes":{"1":{"id":1,"name":"Sikre sikkerhet, forhindre svindel og feils\u00f8ke","description":"Dataene dine kan brukes til \u00e5 overv\u00e5ke og forebygge svindelaktivitet, og sikre at systemer og prosesser fungerer riktig og sikkert.","descriptionLegal":"For \u00e5 sikre sikkerhet, forhindre svindel og feils\u00f8ke, kan leverand\u00f8rer:\n* sikre at data er sikkert overf\u00f8rt \n* oppdage og forebygge skadelig, svindel-, ugyldig eller ulovlig aktivitet.\n* sikre korrekt og effektiv drift av systemer og prosesser, inkludert \u00e5 overv\u00e5ke og forbedre ytelsen til systemer og prosesser engasjert i tillatte form\u00e5l.\nLeverand\u00f8rer kan ikke:\n* utf\u00f8re andre databehandlingsoperasjoner som er tillatt under et annet form\u00e5l, under dette form\u00e5let.\nMerk: Data som samles inn og brukes for \u00e5 s\u00f8rge for sikkerhet, forhindre svindel og feils\u00f8king kan inkludere automatisk sendte enhetsegenskaper for identifikasjon, n\u00f8yaktige geolokaliseringsdata og data innhentet ved aktivt \u00e5 skanne enhetsegenskaper for identifikasjon uten separat utlevering og/eller p\u00e5melding.\n"},"2":{"id":2,"name":"Teknisk levering av annonser eller innhold","description":"Enheten din kan motta og sende informasjon som lar deg se og samhandle med annonser og innhold.","descriptionLegal":"For \u00e5 levere informasjon og svare p\u00e5 tekniske foresp\u00f8rsler kan leverand\u00f8rer:\n* bruke en brukers IP-adresse til \u00e5 levere en annonse over Internett\n* svare p\u00e5 en brukers samhandling med en annonse ved \u00e5 sende brukeren til en m\u00e5lside\n* bruke en brukers IP-adresse til \u00e5 levere innhold over Internett\n* svare p\u00e5 en brukers samhandling med innhold ved \u00e5 sende brukeren til en m\u00e5lside\n* bruke informasjon om enhetstypen og evner til \u00e5 levere annonser eller innhold, for eksempel, for \u00e5 levere riktig annonsest\u00f8rrelse eller videofilformat som st\u00f8ttes av enheten.\nLeverand\u00f8rer kan ikke:\n* utf\u00f8re andre databehandlingsoperasjoner som er tillatt under et annet form\u00e5l, under dette form\u00e5let\n"}},"features":{"1":{"id":1,"name":"Matche og kombinere offline-datakilder","description":"Data fra offline-datakilder kan kombineres med nettaktiviteten din for \u00e5 st\u00f8tte ett eller flere form\u00e5l.","descriptionLegal":"Leverand\u00f8rer kan: \n* kombinere data innhentet offline med data samlet inn online for \u00e5 st\u00f8tte ett eller flere form\u00e5l eller spesialform\u00e5l.\n"},"2":{"id":2,"name":"Koble forskjellige enheter","description":"Ulike enheter kan fastsettes som \u00e5 tilh\u00f8re deg eller husholdningen din for \u00e5 st\u00f8tte ett eller flere av form\u00e5lene.","descriptionLegal":"Leverand\u00f8rer kan:\n* bestemt fastsette at to eller flere enheter tilh\u00f8rer samme bruker eller husholdning\n* fastsette sannsynligheten for at to eller flere enheter tilh\u00f8rer samme bruker eller husholdning\n* aktivt skanne enhetsegenskaper for identifikasjon for \u00e5 identifisere sannsynligheten, hvis brukere har tillatt leverand\u00f8rer \u00e5 aktivt skanne enhetsegenskaper for identifikasjon (spesialfunksjon 2).\n"},"3":{"id":3,"name":"Motta og bruke automatisk sendte enhetsegenskaper for identifikasjon","description":"Enheten kan skilles fra andre enheter basert p\u00e5 informasjon den automatisk sender, som IP-adresse eller nettlesertype.","descriptionLegal":"Leverand\u00f8rer kan:\n* Opprette en identifikator ved hjelp av data innhentet automatisk fra en enhet for spesifikke egenskaper, f.eks. IP-adresse, brukeragentstreng.\n* Bruke en slik identifikator til \u00e5 identifisere en enhet p\u00e5 nytt.\nLeverand\u00f8rer kan ikke:\n* Opprette en identifikator ved hjelp av data som samles inn ved \u00e5 aktivt skanne en enhet for spesifikke egenskaper, f.eks. installerte skrifttyper eller skjermoppl\u00f8sning uten brukerens separate samtykke til aktiv skanning av enhetskarakteristikker for identifikasjon.\n* bruke en slik identifikator til \u00e5 identifisere en enhet p\u00e5 nytt.\n"}},"specialFeatures":{"1":{"id":1,"name":"Bruke n\u00f8yaktige geolokasjonsdata","description":"De n\u00f8yaktige geolokasjonsdataene dine kan brukes til \u00e5 st\u00f8tte ett eller flere form\u00e5l. Dette betyr at plasseringen din kan v\u00e6re n\u00f8yaktig til innenfor et par meter.","descriptionLegal":"Leverand\u00f8rer kan:\n* Samle inn og behandle n\u00f8yaktige geolokasjonsdata til st\u00f8tte for ett eller flere form\u00e5l.\nNB. N\u00f8yaktig geolokasjon betyr at det ikke er noen restriksjoner p\u00e5 presisjonen til en brukers plassering. Den kan v\u00e6re n\u00f8yaktig til innenfor et par meter.\n"},"2":{"id":2,"name":"Aktivt skanne enhetsegenskaper for identifikasjon","description":"Enheten din kan identifiseres basert p\u00e5 en skanning av enhetens unike kombinasjon av egenskaper.","descriptionLegal":"Leverand\u00f8rer kan:\n* opprette en identifikator ved hjelp av data som samles inn ved \u00e5 aktivt skanne en enhet for spesifikke egenskaper, f.eks. installerte skrifttyper eller skjermoppl\u00f8sning \n* bruke en slik identifikator til \u00e5 identifisere en enhet p\u00e5 nytt.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"N\u00f8yaktige geolokasjonsdata og identifisering gjennom enhetsskanning","description":"N\u00f8yaktig geolokasjon og informasjon om enhetsegenskaper kan brukes."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Personlige annonser","description":"Annonser kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre personlig tilpasse annonser."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Grunnleggende annonser og annonsem\u00e5ling","description":"Grunnleggende annonser kan serveres. Annonseprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Grunnleggende annonser, personlig annonseprofil og annonsem\u00e5ling","description":"Grunnleggende annonser kan serveres. Mer data kan legges til for \u00e5 bedre personlig tilpasse annonser. Annonseprestasjon kan m\u00e5les."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Personlig annonsevisning og annonsem\u00e5ling","description":"Annonser kan personlig tilpasses basert p\u00e5 en profil. Annonseprestasjon kan m\u00e5les."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Personlig annonsevisning, annonsem\u00e5ling og publikumsinnsikt","description":"Annonser kan personlig tilpasses basert p\u00e5 en profil. Annonseprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Personlige annonser, og annonsem\u00e5ling","description":"Annonser kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre personlig tilpasse annonser. Annonseprestasjon kan m\u00e5les."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Personlige annonser, annonsem\u00e5ling og publikumsinnsikt","description":"Annonser kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre personlig tilpasse annonser. Annonseprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Personlig annonseprofil og visning","description":"Annonser kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre personlig tilpasse annonser."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Personlig innhold","description":"Innhold kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre tilpasse personlig innhold."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Personlig innholdsvisning og innholdsm\u00e5ling","description":"Innhold kan personlig tilpasses basert p\u00e5 en profil. Innholdsprestasjon kan m\u00e5les."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Personlig innholdsvisning, innholdsm\u00e5ling og publikumsinnsikt","description":"Innhold kan personlig tilpasses basert p\u00e5 en profil. Innholdsprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Personlig innhold og innholdsm\u00e5ling","description":"Innhold kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre tilpasse personlig innhold. Innholdsprestasjon kan m\u00e5les."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Personlig innhold, innholdsm\u00e5ling og publikumsinnsikt","description":"Innhold kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre tilpasse personlig innhold. Innholdsprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Personlig innhold, innholdsm\u00e5ling, publikumsinnsikt og produktutvikling","description":"Innhold kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre tilpasse personlig innhold. Innholdsprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes. Data kan brukes til \u00e5 bygge eller forbedre brukeropplevelsen, systemer og programvare"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Annonse- og innholdsm\u00e5ling og publikumsinnsikt","description":"Annonse- og innholdsprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Annonse- og innholdsm\u00e5ling","description":"Annonse- og innholdsprestasjon kan m\u00e5les."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Annonsem\u00e5ling og publikumsinnsikt","description":"Annonse kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Annonse- og innholdsm\u00e5ling, publikumsinnsikt og produktutvikling","description":"Annonse- og innholdsprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes. Data kan brukes til \u00e5 bygge eller forbedre brukeropplevelsen, systemer og programvare. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Innholdsm\u00e5ling, publikumsinnsikt og produktutvikling.","description":"Innholdsprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes. Data kan brukes til \u00e5 bygge eller forbedre brukeropplevelsen, systemer og programvare."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Innholdsm\u00e5ling og produktutvikling","description":"Innholdsprestasjon kan m\u00e5les. Data kan brukes til \u00e5 bygge eller forbedre brukeropplevelsen, systemer og programvare."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Visning av personlige annonser og innhold samt m\u00e5ling av annonser og innhold","description":"Annonser og innhold kan personlig tilpasses basert p\u00e5 en profil. Annonse- og innholdsprestasjon kan m\u00e5les."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Visning av personlige annonser og innhold, m\u00e5ling av annonser og innhold, og publikumsinnsikt","description":"Annonser og innhold kan personlig tilpasses basert p\u00e5 en profil. Annonse- og innholdsprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes. Data kan brukes til \u00e5 bygge eller forbedre brukeropplevelsen, systemer og programvare."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Personlige annonser og innhold, annonse- og innholdsm\u00e5ling","description":"Annonser og innhold kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre personlig tilpasse annonser og innhold. Annonse- og innholdsprestasjon kan m\u00e5les."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Personlige annonser og innhold, annonse- og innholdsm\u00e5ling, og publikumsinnsikt","description":"Annonser og innhold kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre personlig tilpasse annonser og innhold. Annonse- og innholdsprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Personlige annonser og innholdsprofil","description":"Mer data kan legges til for \u00e5 personlig tilpasse annonser og innhold."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Personlige annonser og innholdsvisning","description":"Annonser og innhold kan personlig tilpasses basert p\u00e5 en profil."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Grunnleggende annonser, reklame- og innholdsm\u00e5ling, og publikumsinnsikt","description":"Grunnleggende annonser kan serveres. Annonse- og innholdsprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Personlige annonsevisninger, personlig innhold, annonse- og innholdsm\u00e5ling og publikumsinnsikt","description":"Annonser og innhold kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre tilpasse personlig innhold. Annonse- og innholdsprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Personlige annonsevisninger, personlig innhold, annonse- og innholdsm\u00e5ling, publikumsinnsikt og produktutvikling","description":"Annonser og innhold kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre tilpasse personlig innhold. Annonse- og innholdsprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes. Data kan brukes til \u00e5 bygge eller forbedre brukeropplevelsen, systemer og programvare."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Grunnleggende annonser, personlig innhold, annonse- og innholdsm\u00e5ling, og publikumsinnsikt","description":"Grunnleggende annonser kan serveres. Innhold kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre tilpasse personlig innhold. Annonse- og innholdsprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Grunnleggende annonser, personlig innhold, annonse- og innholdsm\u00e5ling, publikumsinnsikt og produktutvikling","description":"Grunnleggende annonser kan serveres. Innhold kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre tilpasse personlig innhold. Annonse- og innholdsprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes. Data kan brukes til \u00e5 bygge eller forbedre brukeropplevelsen, systemer og programvare."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Grunnleggende annonser, personlig innhold, innholdsm\u00e5ling, publikumsinnsikt og produktutvikling","description":"Grunnleggende annonser kan serveres. Innhold kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre tilpasse personlig innhold. Innholdsprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes. Data kan brukes til \u00e5 bygge eller forbedre brukeropplevelsen, systemer og programvare."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Grunnleggende annonser, personlig innhold, og annonsem\u00e5ling","description":"Grunnleggende annonser kan serveres. Innhold kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre tilpasse personlig innhold. Annonseprestasjon kan m\u00e5les."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Grunnleggende annonser, personlig innhold, annonsem\u00e5ling og produktutvikling","description":"Grunnleggende annonser kan serveres. Innhold kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre tilpasse personlig innhold. Annonseprestasjon kan m\u00e5les. Data kan brukes til \u00e5 bygge eller forbedre brukeropplevelsen, systemer og programvare."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Personlig innhold, annonsem\u00e5ling og produktutvikling","description":"Annonser kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre personlig tilpasse annonser. Annonseprestasjon kan m\u00e5les. Data kan brukes til \u00e5 bygge eller forbedre brukeropplevelsen, systemer og programvare."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Personlig innhold, innholdsm\u00e5ling, publikumsinnsikt og produktutvikling","description":"Annonser kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre personlig tilpasse annonser. Annonseprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes. Data kan brukes til \u00e5 bygge eller forbedre brukeropplevelsen, systemer og programvare."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"personlig innhold, annonse- og innholdsm\u00e5ling, publikumsinnsikt og produktutvikling","description":"Annonser kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre personlig tilpasse annonser. Annonse- og innholdsprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes. Data kan brukes til \u00e5 bygge eller forbedre brukeropplevelsen, systemer og programvare."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Personlige annonsevisninger, personlig innhold, annonse- og innholdsm\u00e5ling, publikumsinnsikt og produktutvikling","description":"Annonser og innhold kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre personlig tilpasse annonser. Annonse- og innholdsprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes. Data kan brukes til \u00e5 bygge eller forbedre brukeropplevelsen, systemer og programvare."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"personlig innhold, annonse- og innholdsm\u00e5ling, publikumsinnsikt og produktutvikling","description":"Annonser og innhold kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre personlig tilpasse annonser og innhold. Annonse- og innholdsprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes. Data kan brukes til \u00e5 bygge eller forbedre brukeropplevelsen, systemer og programvare."}}} \ No newline at end of file +{"vendorListVersion":94,"lastUpdated":"2021-06-10T16:44:02Z","purposes":{"1":{"id":1,"name":"Lagre og/eller f\u00e5 tilgang til informasjon p\u00e5 en enhet","description":"Informasjonskapsler, enhetsidentifikatorer eller annen informasjon kan lagres eller \u00e5pnes p\u00e5 enheten din for de form\u00e5lene som presenteres for deg.","descriptionLegal":"Leverand\u00f8rer kan:\n* lagre og f\u00e5 tilgang til informasjon p\u00e5 enheten, som eksempel informasjonskapsler og enhetsidentifikatorer som presenteres til en bruker.\n"},"2":{"id":2,"name":"Velg grunnleggende annonser","description":"Annonser kan vises til deg basert p\u00e5 innholdet du ser p\u00e5, appen du bruker, den omtrentlige lokasjonen din eller enhetstypen din.","descriptionLegal":"For \u00e5 gj\u00f8re grunnleggende annonsevalg, kan leverand\u00f8rer:\n* bruke sanntidsinformasjon om sammenhengen for at annonsen vises, for \u00e5 vise annonsen, inkludert informasjon om innholdet og enheten, som for eksempel: enhetstype og evner, brukeragent, URL, IP-adresse \n* bruke en brukers ikke-presise geolokasjonsdata\n* kontrollere hyppigheten av annonser som vises til en bruker\n* sekvensere rekkef\u00f8lgen som annonser vises til en bruker\n* forhindre en annonse fra \u00e5 tjene i en upassende redaksjonell (merkevareutrygt) sammenheng.\nLeverand\u00f8rer kan ikke:\n* Opprette en personlig annonseprofil med denne informasjonen for valg av fremtidige annonser uten et separat juridisk grunnlag om \u00e5 opprette en tilpasset annonseprofil.\nNB. Ikke-presis betyr kun en omtrentlig lokasjon som involverer at en radius p\u00e5 minst 500 meter er tillatt.\n"},"3":{"id":3,"name":"Opprett en personlig annonseprofil","description":"En profil kan bygges om deg og interessene dine for \u00e5 vise deg personlige annonser som er relevante for deg.","descriptionLegal":"For \u00e5 opprette en personlig annonseprofil kan leverand\u00f8rer:\n* Samle inn informasjon om en bruker, inkludert en brukers aktivitet, interesser, demografisk informasjon eller sted, for \u00e5 opprette eller redigere en brukerprofil for bruk i personlig annonsering.\n* Kombiner denne informasjonen med annen informasjon som tidligere er samlet inn, inkludert p\u00e5 tvers av nettsteder og apper, for \u00e5 opprette eller redigere en brukerprofil for bruk i personlig annonsering."},"4":{"id":4,"name":"Velg personlige annonser","description":"Personlige annonser kan vises til deg basert p\u00e5 en profil om deg.","descriptionLegal":"For \u00e5 velge personlige annonser kan leverand\u00f8rer:\n* velge personlige annonser basert p\u00e5 en brukerprofil eller andre historiske brukerdata, inkludert en brukers tidligere aktivitet, interesser, bes\u00f8k p\u00e5 nettsteder eller apper, sted eller demografisk informasjon.\n"},"5":{"id":5,"name":"Opprette en personlig innholdsprofil","description":"En profil kan bygges om deg og interessene dine for \u00e5 vise deg personlig innhold som er relevant for deg.","descriptionLegal":"For \u00e5 opprette en personlig innholdsprofil kan leverand\u00f8rer:\n* samle inn informasjon om en bruker, inkludert en brukers aktivitet, interesser, bes\u00f8k p\u00e5 nettsteder eller apper, demografisk informasjon eller sted, for \u00e5 opprette eller redigere en brukerprofil for personlig tilpasset innhold.\n* Kombiner denne informasjonen med annen informasjon som er samlet inn tidligere, inkludert p\u00e5 tvers av nettsteder og apper, for \u00e5 opprette eller redigere en brukerprofil for bruk i personalisering av innhold.\n"},"6":{"id":6,"name":"Velge personlig innhold","description":"Personlig innhold kan vises til deg basert p\u00e5 en profil om deg.","descriptionLegal":"For \u00e5 velge personlig innhold kan leverand\u00f8rer:\n* velge tilpasset innhold basert p\u00e5 en brukerprofil eller andre historiske brukerdata, inkludert en brukers tidligere aktivitet, interesser, bes\u00f8k p\u00e5 nettsteder eller apper, sted eller demografisk informasjon.\n"},"7":{"id":7,"name":"M\u00e5le annonseprestasjon","description":"Prestasjonen og effektiviteten til annonser du ser eller samhandler med kan m\u00e5les.","descriptionLegal":"For \u00e5 m\u00e5le annonseprestasjon kan leverand\u00f8rer:\n* m\u00e5le om og hvordan annonser ble levert til og samhandlet med av en bruker\n* skaffe rapporter om annonser, inkludert effektiviteten og prestasjonen deres\n* skaffe rapporter om brukere som samhandlet med annonser, med data som ble observert i l\u00f8pet av brukerens samhandling med den annonsen\n* skaffe rapporter til utgivere om annonsene som vises p\u00e5 eiendommen deres\n* m\u00e5le om en annonse fungerer i en egnet redaksjonell milj\u00f8sammenheng (merkevaresikkert)\n* fastsl\u00e5 prosentandelen av annonsen som hadde mulighet til \u00e5 bli sett, og varigheten av denne muligheten. \nLeverand\u00f8rer kan ikke:\n* Bruke publikumsdata hentet fra paneler eller tilsvarende for \u00e5 legge til m\u00e5lte data om annonser uten juridisk grunnlag for \u00e5 bruke markedsunders\u00f8kelser til \u00e5 generere publikumsinnsikt.\n"},"8":{"id":8,"name":"M\u00e5le innholdsprestasjon","description":"Prestasjonen og effektiviteten til innhold du ser eller samhandler med kan m\u00e5les.","descriptionLegal":"For \u00e5 m\u00e5le innholdsprestasjon kan leverand\u00f8rer:\n* m\u00e5le og rapportere hvordan innhold ble levert til og samhandlet med av brukere\n* skaffe rapporter ved bruk av direkte m\u00e5lbar eller kjent informasjon om brukere som samhandlet med innholdet.\nLeverand\u00f8rer kan ikke:\n* m\u00e5le om og hvordan annonser (inkludert opprinnelige annonser) ble levert til og samhandlet med av en bruker\n* Bruke publikumsdata hentet fra panel eller tilsvarende for \u00e5 legge til m\u00e5lte data om annonser uten et separat juridisk grunnlag for \u00e5 bruke markedsunders\u00f8kelser til \u00e5 generere publikumsinnsikt.\n"},"9":{"id":9,"name":"Bruk markedsunders\u00f8kelser til \u00e5 generere publikumsinnsikt","description":"Markedsunders\u00f8kelser kan brukes til \u00e5 l\u00e6re mer om publikum som bes\u00f8ker nettsteder/apper og ser p\u00e5 annonser.","descriptionLegal":"For \u00e5 bruke markedsunders\u00f8kelser til \u00e5 generere publikumsinnsikt kan leverand\u00f8rer:\n* gi samlet rapportering til annons\u00f8rer eller representantene deres om publikum som n\u00e5s med annonsene, gjennom innsikt hentet fra panel og tilsvarende\n* gi samlet rapportering til utgivere om publikum som ble servert eller samhandlet, med innhold og/eller annonser p\u00e5 eiendommen deres, ved \u00e5 bruke innsikt hentet fra panel og tilsvarende \n* knytte offline-data til en online-bruker med form\u00e5l om markedsunders\u00f8kelser for \u00e5 generere publikumsinnsikt hvis leverand\u00f8rene har erkl\u00e6rt \u00e5 matche og kombinere offline-datakilder (funksjon 1).\nLeverand\u00f8rer kan ikke: \n* M\u00e5le prestasjonen og effektiviteten til annonser som en bestemt bruker fikk levert eller samhandlet med, uten et separat juridisk grunnlag for \u00e5 m\u00e5le annonseprestasjon.\n* M\u00e5le hvilket innhold en bestemt bruker ble levert og hvordan de samhandlet med det, uten et separat juridisk grunnlag for \u00e5 m\u00e5le innholdsprestasjon.\n"},"10":{"id":10,"name":"Utvikle og forbedre produkter","description":"Dataene dine kan brukes til \u00e5 forbedre eksisterende systemer og programvare, og til \u00e5 utvikle nye produkter.","descriptionLegal":"For \u00e5 utvikle nye produkter og forbedre produkter kan leverand\u00f8rer:\n* bruke informasjon til \u00e5 forbedre de eksisterende produktene med nye funksjoner og for \u00e5 utvikle nye produkter\n* opprette nye modeller og algoritmer gjennom maskinl\u00e6ring\nLeverand\u00f8rer kan ikke:\n* utf\u00f8re andre databehandlingsoperasjoner som er tillatt under et annet form\u00e5l, under dette form\u00e5let\n"}},"specialPurposes":{"1":{"id":1,"name":"Sikre sikkerhet, forhindre svindel og feils\u00f8ke","description":"Dataene dine kan brukes til \u00e5 overv\u00e5ke og forebygge svindelaktivitet, og sikre at systemer og prosesser fungerer riktig og sikkert.","descriptionLegal":"For \u00e5 sikre sikkerhet, forhindre svindel og feils\u00f8ke, kan leverand\u00f8rer:\n* sikre at data er sikkert overf\u00f8rt \n* oppdage og forebygge skadelig, svindel-, ugyldig eller ulovlig aktivitet.\n* sikre korrekt og effektiv drift av systemer og prosesser, inkludert \u00e5 overv\u00e5ke og forbedre ytelsen til systemer og prosesser engasjert i tillatte form\u00e5l.\nLeverand\u00f8rer kan ikke:\n* utf\u00f8re andre databehandlingsoperasjoner som er tillatt under et annet form\u00e5l, under dette form\u00e5let.\nMerk: Data som samles inn og brukes for \u00e5 s\u00f8rge for sikkerhet, forhindre svindel og feils\u00f8king kan inkludere automatisk sendte enhetsegenskaper for identifikasjon, n\u00f8yaktige geolokaliseringsdata og data innhentet ved aktivt \u00e5 skanne enhetsegenskaper for identifikasjon uten separat utlevering og/eller p\u00e5melding.\n"},"2":{"id":2,"name":"Teknisk levering av annonser eller innhold","description":"Enheten din kan motta og sende informasjon som lar deg se og samhandle med annonser og innhold.","descriptionLegal":"For \u00e5 levere informasjon og svare p\u00e5 tekniske foresp\u00f8rsler kan leverand\u00f8rer:\n* bruke en brukers IP-adresse til \u00e5 levere en annonse over Internett\n* svare p\u00e5 en brukers samhandling med en annonse ved \u00e5 sende brukeren til en m\u00e5lside\n* bruke en brukers IP-adresse til \u00e5 levere innhold over Internett\n* svare p\u00e5 en brukers samhandling med innhold ved \u00e5 sende brukeren til en m\u00e5lside\n* bruke informasjon om enhetstypen og evner til \u00e5 levere annonser eller innhold, for eksempel, for \u00e5 levere riktig annonsest\u00f8rrelse eller videofilformat som st\u00f8ttes av enheten.\nLeverand\u00f8rer kan ikke:\n* utf\u00f8re andre databehandlingsoperasjoner som er tillatt under et annet form\u00e5l, under dette form\u00e5let\n"}},"features":{"1":{"id":1,"name":"Matche og kombinere offline-datakilder","description":"Data fra offline-datakilder kan kombineres med nettaktiviteten din for \u00e5 st\u00f8tte ett eller flere form\u00e5l.","descriptionLegal":"Leverand\u00f8rer kan: \n* kombinere data innhentet offline med data samlet inn online for \u00e5 st\u00f8tte ett eller flere form\u00e5l eller spesialform\u00e5l.\n"},"2":{"id":2,"name":"Koble forskjellige enheter","description":"Ulike enheter kan fastsettes som \u00e5 tilh\u00f8re deg eller husholdningen din for \u00e5 st\u00f8tte ett eller flere av form\u00e5lene.","descriptionLegal":"Leverand\u00f8rer kan:\n* bestemt fastsette at to eller flere enheter tilh\u00f8rer samme bruker eller husholdning\n* fastsette sannsynligheten for at to eller flere enheter tilh\u00f8rer samme bruker eller husholdning\n* aktivt skanne enhetsegenskaper for identifikasjon for \u00e5 identifisere sannsynligheten, hvis brukere har tillatt leverand\u00f8rer \u00e5 aktivt skanne enhetsegenskaper for identifikasjon (spesialfunksjon 2).\n"},"3":{"id":3,"name":"Motta og bruke automatisk sendte enhetsegenskaper for identifikasjon","description":"Enheten kan skilles fra andre enheter basert p\u00e5 informasjon den automatisk sender, som IP-adresse eller nettlesertype.","descriptionLegal":"Leverand\u00f8rer kan:\n* Opprette en identifikator ved hjelp av data innhentet automatisk fra en enhet for spesifikke egenskaper, f.eks. IP-adresse, brukeragentstreng.\n* Bruke en slik identifikator til \u00e5 identifisere en enhet p\u00e5 nytt.\nLeverand\u00f8rer kan ikke:\n* Opprette en identifikator ved hjelp av data som samles inn ved \u00e5 aktivt skanne en enhet for spesifikke egenskaper, f.eks. installerte skrifttyper eller skjermoppl\u00f8sning uten brukerens separate samtykke til aktiv skanning av enhetskarakteristikker for identifikasjon.\n* bruke en slik identifikator til \u00e5 identifisere en enhet p\u00e5 nytt.\n"}},"specialFeatures":{"1":{"id":1,"name":"Bruke n\u00f8yaktige geolokasjonsdata","description":"De n\u00f8yaktige geolokasjonsdataene dine kan brukes til \u00e5 st\u00f8tte ett eller flere form\u00e5l. Dette betyr at plasseringen din kan v\u00e6re n\u00f8yaktig til innenfor et par meter.","descriptionLegal":"Leverand\u00f8rer kan:\n* Samle inn og behandle n\u00f8yaktige geolokasjonsdata til st\u00f8tte for ett eller flere form\u00e5l.\nNB. N\u00f8yaktig geolokasjon betyr at det ikke er noen restriksjoner p\u00e5 presisjonen til en brukers plassering. Den kan v\u00e6re n\u00f8yaktig til innenfor et par meter.\n"},"2":{"id":2,"name":"Aktivt skanne enhetsegenskaper for identifikasjon","description":"Enheten din kan identifiseres basert p\u00e5 en skanning av enhetens unike kombinasjon av egenskaper.","descriptionLegal":"Leverand\u00f8rer kan:\n* opprette en identifikator ved hjelp av data som samles inn ved \u00e5 aktivt skanne en enhet for spesifikke egenskaper, f.eks. installerte skrifttyper eller skjermoppl\u00f8sning \n* bruke en slik identifikator til \u00e5 identifisere en enhet p\u00e5 nytt.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"N\u00f8yaktige geolokasjonsdata og identifisering gjennom enhetsskanning","description":"N\u00f8yaktig geolokasjon og informasjon om enhetsegenskaper kan brukes."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Personlige annonser","description":"Annonser kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre personlig tilpasse annonser."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Grunnleggende annonser og annonsem\u00e5ling","description":"Grunnleggende annonser kan serveres. Annonseprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Grunnleggende annonser, personlig annonseprofil og annonsem\u00e5ling","description":"Grunnleggende annonser kan serveres. Mer data kan legges til for \u00e5 bedre personlig tilpasse annonser. Annonseprestasjon kan m\u00e5les."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Personlig annonsevisning og annonsem\u00e5ling","description":"Annonser kan personlig tilpasses basert p\u00e5 en profil. Annonseprestasjon kan m\u00e5les."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Personlig annonsevisning, annonsem\u00e5ling og publikumsinnsikt","description":"Annonser kan personlig tilpasses basert p\u00e5 en profil. Annonseprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Personlige annonser, og annonsem\u00e5ling","description":"Annonser kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre personlig tilpasse annonser. Annonseprestasjon kan m\u00e5les."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Personlige annonser, annonsem\u00e5ling og publikumsinnsikt","description":"Annonser kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre personlig tilpasse annonser. Annonseprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Personlig annonseprofil og visning","description":"Annonser kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre personlig tilpasse annonser."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Personlig innhold","description":"Innhold kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre tilpasse personlig innhold."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Personlig innholdsvisning og innholdsm\u00e5ling","description":"Innhold kan personlig tilpasses basert p\u00e5 en profil. Innholdsprestasjon kan m\u00e5les."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Personlig innholdsvisning, innholdsm\u00e5ling og publikumsinnsikt","description":"Innhold kan personlig tilpasses basert p\u00e5 en profil. Innholdsprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Personlig innhold og innholdsm\u00e5ling","description":"Innhold kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre tilpasse personlig innhold. Innholdsprestasjon kan m\u00e5les."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Personlig innhold, innholdsm\u00e5ling og publikumsinnsikt","description":"Innhold kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre tilpasse personlig innhold. Innholdsprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Personlig innhold, innholdsm\u00e5ling, publikumsinnsikt og produktutvikling","description":"Innhold kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre tilpasse personlig innhold. Innholdsprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes. Data kan brukes til \u00e5 bygge eller forbedre brukeropplevelsen, systemer og programvare"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Annonse- og innholdsm\u00e5ling og publikumsinnsikt","description":"Annonse- og innholdsprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Annonse- og innholdsm\u00e5ling","description":"Annonse- og innholdsprestasjon kan m\u00e5les."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Annonsem\u00e5ling og publikumsinnsikt","description":"Annonse kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Annonse- og innholdsm\u00e5ling, publikumsinnsikt og produktutvikling","description":"Annonse- og innholdsprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes. Data kan brukes til \u00e5 bygge eller forbedre brukeropplevelsen, systemer og programvare. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Innholdsm\u00e5ling, publikumsinnsikt og produktutvikling.","description":"Innholdsprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes. Data kan brukes til \u00e5 bygge eller forbedre brukeropplevelsen, systemer og programvare."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Innholdsm\u00e5ling og produktutvikling","description":"Innholdsprestasjon kan m\u00e5les. Data kan brukes til \u00e5 bygge eller forbedre brukeropplevelsen, systemer og programvare."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Visning av personlige annonser og innhold samt m\u00e5ling av annonser og innhold","description":"Annonser og innhold kan personlig tilpasses basert p\u00e5 en profil. Annonse- og innholdsprestasjon kan m\u00e5les."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Visning av personlige annonser og innhold, m\u00e5ling av annonser og innhold, og publikumsinnsikt","description":"Annonser og innhold kan personlig tilpasses basert p\u00e5 en profil. Annonse- og innholdsprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes. Data kan brukes til \u00e5 bygge eller forbedre brukeropplevelsen, systemer og programvare."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Personlige annonser og innhold, annonse- og innholdsm\u00e5ling","description":"Annonser og innhold kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre personlig tilpasse annonser og innhold. Annonse- og innholdsprestasjon kan m\u00e5les."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Personlige annonser og innhold, annonse- og innholdsm\u00e5ling, og publikumsinnsikt","description":"Annonser og innhold kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre personlig tilpasse annonser og innhold. Annonse- og innholdsprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Personlige annonser og innholdsprofil","description":"Mer data kan legges til for \u00e5 personlig tilpasse annonser og innhold."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Personlige annonser og innholdsvisning","description":"Annonser og innhold kan personlig tilpasses basert p\u00e5 en profil."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Grunnleggende annonser, reklame- og innholdsm\u00e5ling, og publikumsinnsikt","description":"Grunnleggende annonser kan serveres. Annonse- og innholdsprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Personlige annonsevisninger, personlig innhold, annonse- og innholdsm\u00e5ling og publikumsinnsikt","description":"Annonser og innhold kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre tilpasse personlig innhold. Annonse- og innholdsprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Personlige annonsevisninger, personlig innhold, annonse- og innholdsm\u00e5ling, publikumsinnsikt og produktutvikling","description":"Annonser og innhold kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre tilpasse personlig innhold. Annonse- og innholdsprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes. Data kan brukes til \u00e5 bygge eller forbedre brukeropplevelsen, systemer og programvare."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Grunnleggende annonser, personlig innhold, annonse- og innholdsm\u00e5ling, og publikumsinnsikt","description":"Grunnleggende annonser kan serveres. Innhold kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre tilpasse personlig innhold. Annonse- og innholdsprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Grunnleggende annonser, personlig innhold, annonse- og innholdsm\u00e5ling, publikumsinnsikt og produktutvikling","description":"Grunnleggende annonser kan serveres. Innhold kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre tilpasse personlig innhold. Annonse- og innholdsprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes. Data kan brukes til \u00e5 bygge eller forbedre brukeropplevelsen, systemer og programvare."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Grunnleggende annonser, personlig innhold, innholdsm\u00e5ling, publikumsinnsikt og produktutvikling","description":"Grunnleggende annonser kan serveres. Innhold kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre tilpasse personlig innhold. Innholdsprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes. Data kan brukes til \u00e5 bygge eller forbedre brukeropplevelsen, systemer og programvare."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Grunnleggende annonser, personlig innhold, og annonsem\u00e5ling","description":"Grunnleggende annonser kan serveres. Innhold kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre tilpasse personlig innhold. Annonseprestasjon kan m\u00e5les."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Grunnleggende annonser, personlig innhold, annonsem\u00e5ling og produktutvikling","description":"Grunnleggende annonser kan serveres. Innhold kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre tilpasse personlig innhold. Annonseprestasjon kan m\u00e5les. Data kan brukes til \u00e5 bygge eller forbedre brukeropplevelsen, systemer og programvare."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Personlig innhold, annonsem\u00e5ling og produktutvikling","description":"Annonser kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre personlig tilpasse annonser. Annonseprestasjon kan m\u00e5les. Data kan brukes til \u00e5 bygge eller forbedre brukeropplevelsen, systemer og programvare."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Personlig innhold, innholdsm\u00e5ling, publikumsinnsikt og produktutvikling","description":"Annonser kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre personlig tilpasse annonser. Annonseprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes. Data kan brukes til \u00e5 bygge eller forbedre brukeropplevelsen, systemer og programvare."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"personlig innhold, annonse- og innholdsm\u00e5ling, publikumsinnsikt og produktutvikling","description":"Annonser kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre personlig tilpasse annonser. Annonse- og innholdsprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes. Data kan brukes til \u00e5 bygge eller forbedre brukeropplevelsen, systemer og programvare."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Personlige annonsevisninger, personlig innhold, annonse- og innholdsm\u00e5ling, publikumsinnsikt og produktutvikling","description":"Annonser og innhold kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre personlig tilpasse annonser. Annonse- og innholdsprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes. Data kan brukes til \u00e5 bygge eller forbedre brukeropplevelsen, systemer og programvare."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"personlig innhold, annonse- og innholdsm\u00e5ling, publikumsinnsikt og produktutvikling","description":"Annonser og innhold kan personlig tilpasses basert p\u00e5 en profil. Mer data kan legges til for \u00e5 bedre personlig tilpasse annonser og innhold. Annonse- og innholdsprestasjon kan m\u00e5les. Innsikt om publikum som s\u00e5 annonsene og innholdet kan avledes. Data kan brukes til \u00e5 bygge eller forbedre brukeropplevelsen, systemer og programvare."}}} \ No newline at end of file diff --git a/src/s1/config/2.0/purposes/purposes-pl.json b/src/s1/config/2.0/purposes/purposes-pl.json index 65d5a17f..bfec85aa 100644 --- a/src/s1/config/2.0/purposes/purposes-pl.json +++ b/src/s1/config/2.0/purposes/purposes-pl.json @@ -1 +1 @@ -{"vendorListVersion":79,"lastUpdated":"2021-02-25T16:36:22Z","purposes":{"1":{"id":1,"name":"Przechowywanie informacji na urz\u0105dzeniu lub dost\u0119p do nich","description":"Pliki cookie, identyfikatory urz\u0105dze\u0144 lub inne informacje mog\u0105 by\u0107 przechowywane na urz\u0105dzeniu u\u017cytkownika lub udost\u0119pniane na nim w przedstawionych u\u017cytkownikowi celach.","descriptionLegal":"Dostawcy mog\u0105:\n* przechowywa\u0107 na urz\u0105dzeniu informacje, takie jak pliki cookie i identyfikatory urz\u0105dzenia przedstawiane u\u017cytkownikowi, oraz uzyskiwa\u0107 do nich dost\u0119p.\n"},"2":{"id":2,"name":"Wyb\u00f3r podstawowych reklam","description":"Reklamy mog\u0105 by\u0107 wy\u015bwietlane w oparciu o ogl\u0105dan\u0105 tre\u015b\u0107, u\u017cywan\u0105 aplikacj\u0119, przybli\u017con\u0105 lokalizacj\u0119 lub typ urz\u0105dzenia.","descriptionLegal":"Aby dokona\u0107 podstawowego wyboru reklam, dostawcy mog\u0105:\n* u\u017cywa\u0107 informacji w czasie rzeczywistym na temat kontekstu, w jakim zostanie wy\u015bwietlona reklama, aby wy\u015bwietli\u0107 reklam\u0119, w tym informacji o tre\u015bci i urz\u0105dzeniu, takich jak: typ urz\u0105dzenia i jego parametry, aplikacja klienta, adres URL, adres IP. \n* u\u017cywa\u0107 nieprecyzyjnych danych geolokalizacyjnych u\u017cytkownika.\n* kontrolowa\u0107 cz\u0119stotliwo\u015b\u0107 reklam wy\u015bwietlanych u\u017cytkownikowi.\n* ustawi\u0107 kolejno\u015b\u0107 wy\u015bwietlania reklam u\u017cytkownikowi.\n* zapobiec pojawieniu si\u0119 reklamy w nieodpowiednim kontek\u015bcie redakcyjnym (niebezpiecznym dla marki).\nDostawcy nie mog\u0105:\n* tworzy\u0107tworzy\u0107 profilu spersonalizowanych reklam przy u\u017cyciu tych informacji do wyboru przysz\u0142ych reklam bez osobnej podstawy prawnej do utworzenia profilu spersonalizowanych reklam.\nUwaga! Nieprecyzyjne oznacza, \u017ce dozwolona jest tylko przybli\u017cona lokalizacja obejmuj\u0105ca co najmniej promie\u0144 500 metr\u00f3w.\n"},"3":{"id":3,"name":"Tworzenie profilu spersonalizowanych reklam","description":"Profil mo\u017ce by\u0107 zbudowany na temat u\u017cytkownika i jego zainteresowa\u0144, co pozwoli na pokazywanie spersonalizowanych reklam, kt\u00f3re s\u0105 dla u\u017cytkownika istotne.","descriptionLegal":"Aby stworzy\u0107 profil spersonalizowanych reklam, dostawcy mog\u0105:\n* zbiera\u0107 informacje o u\u017cytkowniku, w tym o dzia\u0142aniach u\u017cytkownika, jego zainteresowaniach, wizytach na stronach lub w aplikacjach, dane demograficzne lub lokalizacyjne w celu stworzenia lub edytowania profilu u\u017cytkownika w celu personalizacji reklam.\n* \u0142\u0105czy\u0107 te informacje z innymi wcze\u015bniej zebranymi informacjami, w tym z r\u00f3\u017cnych witryn i aplikacji, w celu stworzenia lub edytowania profilu u\u017cytkownika w celu personalizacji reklam.\n"},"4":{"id":4,"name":"Wyb\u00f3r spersonalizowanych reklam","description":"Spersonalizowane reklamy mog\u0105 by\u0107 wy\u015bwietlane u\u017cytkownikowi na podstawie jego profilu.","descriptionLegal":"Aby wybra\u0107 spersonalizowane reklamy, dostawcy mog\u0105:\n* wybra\u0107 spersonalizowane reklamy w oparciu o profil u\u017cytkownika lub inne historyczne dane u\u017cytkownika, w tym wcze\u015bniejsze dzia\u0142ania u\u017cytkownika, zainteresowania, wizyty na stronach lub w aplikacjach, lokalizacj\u0119 lub dane demograficzne.\n"},"5":{"id":5,"name":"Tworzenie profilu spersonalizowanych tre\u015bci","description":"Profil mo\u017ce by\u0107 zbudowany na temat u\u017cytkownika i jego zainteresowa\u0144, co pozwoli na pokazywanie spersonalizowanych tre\u015bci, kt\u00f3re s\u0105 dla u\u017cytkownika istotne.","descriptionLegal":"Aby stworzy\u0107 profil spersonalizowanych tre\u015bci, dostawcy mog\u0105:\n* zbiera\u0107 informacje o u\u017cytkowniku, w tym dzia\u0142aniach u\u017cytkownika, jego zainteresowaniach, wizytach na stronach lub w aplikacjach, dane demograficzne lub lokalizacyjne w celu stworzenia lub edytowania profilu u\u017cytkownika w celu personalizacji tre\u015bci.\n* Po\u0142\u0105cz te informacje z innymi informacjami zebranymi wcze\u015bniej, w tym z r\u00f3\u017cnych witryn internetowych i aplikacji, aby utworzy\u0107 lub edytowa\u0107 profil u\u017cytkownika w celu personalizacji tre\u015bci."},"6":{"id":6,"name":"Wyb\u00f3r spersonalizowanych tre\u015bci","description":"Spersonalizowane tre\u015bci mog\u0105 by\u0107 wy\u015bwietlane u\u017cytkownikowi na podstawie jego profilu.","descriptionLegal":"Aby wybra\u0107 spersonalizowane tre\u015bci, dostawcy mog\u0105:\n* wybra\u0107 spersonalizowane tre\u015bci w oparciu o profil u\u017cytkownika lub inne historyczne dane u\u017cytkownika, w tym wcze\u015bniejsze dzia\u0142ania u\u017cytkownika, zainteresowania, wizyty na stronach lub w aplikacjach, lokalizacj\u0119 lub dane demograficzne.\n"},"7":{"id":7,"name":"Pomiar wydajno\u015bci reklam","description":"Mo\u017cna zmierzy\u0107 wydajno\u015b\u0107 i efektywno\u015b\u0107 reklam, kt\u00f3re u\u017cytkownik widzi lub na kt\u00f3re reaguje.","descriptionLegal":"Aby dokona\u0107 pomiaru wydajno\u015bci reklam, dostawcyreklam mog\u0105:\n* zmierzy\u0107, czy ii w jaki spos\u00f3b reklamy by\u0142y dostarczane u\u017cytkownikowiwi i jaka by\u0142a jego reakcja.\n* dostarcza\u0107 raporty dotycz\u0105ce reklam, w tym ich skuteczno\u015bci i wydajno\u015bci.\n* dostarcza\u0107 raporty dotycz\u0105ce u\u017cytkownik\u00f3w, kt\u00f3rzy zareagowali na reklamyreklamy, z u\u017cyciem danych obserwowanych podczas reakcji u\u017cytkownika na t\u0119 reklam\u0119.\n* dostarcza\u0107 raporty wydawcom na temat reklam wy\u015bwietlanych na ich powierzchni.\n* zmierzy\u0107, czy reklama jest obs\u0142ugiwana w odpowiednim \u015brodowisku redakcyjnym (bezpiecze\u0144stwo marki).\n* okre\u015bli\u0107, w jakiej warto\u015bci procentowej reklama mog\u0142a zosta\u0107 obejrzana, a tak\u017ce czas trwania tej mo\u017cliwo\u015bci obejrzenia. \nDostawcy nie mog\u0105:\n* stosowa\u0107 danych pochodz\u0105cych z analizy panelu lub podobnych odbiorc\u00f3w do danych pomiarowych z reklam bez odr\u0119bnej podstawy prawnej do zastosowania bada\u0144 rynku w celu wygenerowania spostrze\u017ce\u0144 odbiorc\u00f3w..\n"},"8":{"id":8,"name":"Pomiar wydajno\u015bci tre\u015bci","description":"mo\u017cna zmierzy\u0107 wydajno\u015b\u0107 i efektywno\u015b\u0107 tre\u015bci, kt\u00f3re u\u017cytkownik widzi lub na kt\u00f3re reaguje.","descriptionLegal":"Aby dokona\u0107 pomiaru wydajno\u015bci tre\u015bci, dostawcy mog\u0105:\n* zmierzy\u0107 i sporz\u0105dzi\u0107 raport na temat tego, czy tre\u015bci by\u0142y dostarczane u\u017cytkownikom i jaka by\u0142a ich reakcja.\n* dostarcza\u0107 raporty, u\u017cywaj\u0105c bezpo\u015brednio mierzalnych lub znanych informacji o u\u017cytkownikach, kt\u00f3rzy zareagowali na tre\u015b\u0107.\nDostawcy nie mog\u0105:\n* zmierzy\u0107, czy i w jaki spos\u00f3b reklamy (w tym reklamy natywne) by\u0142y dostarczane u\u017cytkownikowi i jaka by\u0142a jego reakcja.\n* stosowa\u0107 danych pochodz\u0105cych z analizy panelu lub podobnych odbiorc\u00f3w do danych pomiarowych z reklam bez odr\u0119bnej podstawy prawnej do zastosowania bada\u0144 rynku w celu wygenerowania spostrze\u017ce\u0144 odbiorc\u00f3w.\n"},"9":{"id":9,"name":"Stosowanie bada\u0144 rynkowych w celu generowania opinii odbiorc\u00f3w","description":"Badania rynku mog\u0105 by\u0107 wykorzystywane w celu uzyskania dalszych informacji na temat odbiorc\u00f3w, kt\u00f3rzy odwiedzaj\u0105 strony/aplikacje i ogl\u0105daj\u0105 reklamy.","descriptionLegal":"Aby zastosowa\u0107 badania rynkowe w celu generowania opinii odbiorc\u00f3w, dostawcy mog\u0105:\n* dostarcza\u0107 reklamodawcom lub ich przedstawicielom zbiorcze raporty na temat odbiorc\u00f3w, do kt\u00f3rych dotar\u0142y ich reklamy, poprzez analiz\u0119 panelow\u0105 i podobn\u0105.\n* dostarcza\u0107 zbiorcze raporty wydawcom na temat odbiorc\u00f3w, do kt\u00f3rych dotar\u0142y tre\u015bci lub reklamy na ich terenie i kt\u00f3rzy zareagowali na te tre\u015bci lub reklamy, poprzez zastosowanie analizy panelowej i podobnej. \n* powi\u0105za\u0107 dane offline z u\u017cytkownikiem online na cele bada\u0144 rynkowych w celu wygenerowania spostrze\u017ce\u0144 odbiorc\u00f3w, je\u015bli dostawcy zdecydowali si\u0119 na dopasowanie i po\u0142\u0105czenie \u017ar\u00f3de\u0142 danych offline \n* Po\u0142\u0105czy\u0107 t\u0119 informacj\u0119 z inn\u0105 informacj\u0105 zebran\u0105 wcze\u015bniej, w tym z r\u00f3\u017cnych witryn i aplikacji\nDostawcy nie mog\u0105: \n* mierzy\u0107 wydajno\u015bci i skuteczno\u015bci reklam, kt\u00f3re wy\u015bwietlono konkretnemu u\u017cytkownikowi i na kt\u00f3re on zareagowa\u0142, bez odr\u0119bnej podstawy prawnej do pomiaru wydajno\u015bci reklam.\n* mierzy\u0107, jakie tre\u015bci zaprezentowano konkretnemu u\u017cytkownikowi i jak na nie zareagowa\u0142, bez odr\u0119bnej podstawy prawnej do pomiaru wydajno\u015bci tre\u015bci.\n"},"10":{"id":10,"name":"Opracowywanie i ulepszanie produkt\u00f3w","description":"Dane u\u017cytkownika mog\u0105 by\u0107 wykorzystywane do ulepszania istniej\u0105cych system\u00f3w i oprogramowania oraz opracowania nowych produkt\u00f3w.","descriptionLegal":"Aby opracowywa\u0107 nowe produkty i ulepsza\u0107 istniej\u0105ce produkty, dostawcy mog\u0105:\n* wykorzystywa\u0107 informacje w celu uzupe\u0142niania istniej\u0105cych produkt\u00f3w nowymi funkcjami i opracowywania nowych produkt\u00f3w.\n* tworzy\u0107 nowe modele i algorytmy poprzez uczenie maszynowe.\nDostawcy nie mog\u0105:\n* przeprowadza\u0107 w tym celu \u017cadnych innych operacji przetwarzania danych dozwolonych w innym celu.\n"}},"specialPurposes":{"1":{"id":1,"name":"Zapewnienie bezpiecze\u0144stwa, zapobieganie oszustwom i usuwanie b\u0142\u0119d\u00f3w","description":"Dane u\u017cytkownika mog\u0105 by\u0107 wykorzystywane do monitorowania i zapobiegania oszustwom oraz zapewnienia prawid\u0142owego i bezpiecznego dzia\u0142ania system\u00f3w i proces\u00f3w.","descriptionLegal":"W celu zapewnienia bezpiecze\u0144stwa, zapobiegania oszustwom i usuwania b\u0142\u0119d\u00f3w, dostawcy mog\u0105:\n* upewni\u0107 si\u0119, \u017ce dane s\u0105 bezpiecznie przesy\u0142ane. \n* wykrywa\u0107 z\u0142o\u015bliwe, nieuczciwe, nieprawid\u0142owe lub nielegalne dzia\u0142ania i zapobiega\u0107 im.\n* zapewnia\u0107 prawid\u0142owe i wydajne dzia\u0142anie system\u00f3w i proces\u00f3w, w tym monitorowanie i usprawnianie wydajno\u015bci system\u00f3w i proces\u00f3w zaanga\u017cowanych w dozwolone cele.\nDostawcy nie mog\u0105:\n* przeprowadza\u0107 w tym celu \u017cadnych innych operacji przetwarzania danych dozwolonych w innym celu.\nUwaga: Dane zebrane i wykorzystywane w celu zapewnienia bezpiecze\u0144stwa, zapobiegania oszustwom i usuwania b\u0142\u0119d\u00f3w mog\u0105 obejmowa\u0107 automatycznie wysy\u0142an\u0105 charakterystyk\u0119 urz\u0105dzenia do identyfikacji, precyzyjne dane geolokalizacyjne i dane uzyskane w drodze aktywnego skanowania charakterystyki urz\u0105dzenia w celu identyfikacji bez odr\u0119bnego ujawnienia lub zgody.\n"},"2":{"id":2,"name":"Techniczne dostarczenie reklam lub tre\u015bci","description":"Urz\u0105dzenie u\u017cytkownika mo\u017ce odbiera\u0107 i wysy\u0142a\u0107 informacje, kt\u00f3re umo\u017cliwiaj\u0105 przegl\u0105danie reklam i tre\u015bci oraz reagowanie na nie.","descriptionLegal":"Aby dostarcza\u0107 informacje i odpowiada\u0107 na pytania techniczne, dostawcy mog\u0105:\n* u\u017cy\u0107 adresu IP u\u017cytkownika, aby przekaza\u0107 reklam\u0119 przez Internet.\n* odpowiedzie\u0107 na reakcj\u0119 u\u017cytkownika na reklam\u0119, wysy\u0142aj\u0105c u\u017cytkownika na stron\u0119 docelow\u0105.\n* u\u017cy\u0107 adresu IP u\u017cytkownika, aby przekaza\u0107 tre\u015bci przez Internet.\n* odpowiedzie\u0107 na reakcj\u0119 u\u017cytkownika na tre\u015bci, wysy\u0142aj\u0105c u\u017cytkownika na stron\u0119 docelow\u0105.\n* wykorzysta\u0107 informacje o rodzaju urz\u0105dzenia i mo\u017cliwo\u015bciach dostarczania reklam lub tre\u015bci, na przyk\u0142ad w celu dostarczenia pliku reklamowego o odpowiednim rozmiarze lub pliku wideo w \nDostawcy nie mog\u0105:\n* przeprowadza\u0107 w tym celu \u017cadnych innych operacji przetwarzania danych dozwolonych w innym celu.\n"}},"features":{"1":{"id":1,"name":"Dopasowanie i po\u0142\u0105czenie \u017ar\u00f3de\u0142 danych offline","description":"Dane ze \u017ar\u00f3de\u0142 danych offline mog\u0105 by\u0107 \u0142\u0105czone z aktywno\u015bci\u0105 u\u017cytkownika online w ramach realizacji co najmniej jednego celu.","descriptionLegal":"Dostawcy mog\u0105: \n* \u0142\u0105czy\u0107 dane uzyskane offline z danymi zgromadzonymi online w celu realizacji jednego lub wi\u0119cej Cel\u00f3w lub Cel\u00f3w specjalnych.\n"},"2":{"id":2,"name":"\u0141\u0105czenie r\u00f3\u017cnych urz\u0105dze\u0144","description":"R\u00f3\u017cne urz\u0105dzenia mog\u0105 by\u0107 okre\u015blane jako nale\u017c\u0105ce do u\u017cytkownika lub jego gospodarstwa domowego do realizacji co najmniej jednego celu.","descriptionLegal":"Dostawcy mog\u0105:\n* deterministycznie okre\u015bli\u0107, \u017ce co najmniej dwa urz\u0105dzenia nale\u017c\u0105 do tego samego u\u017cytkownika lub gospodarstwa domowego.\n* probabilistycznie okre\u015bli\u0107, \u017ce co najmniej dwa urz\u0105dzenia nale\u017c\u0105 do tego samego u\u017cytkownika lub gospodarstwa domowego.\n* Aktywnie skanowa\u0107 charakterystyki urz\u0105dzenia w celach identyfikacji probabilistycznej, je\u015bli u\u017cytkownicy zezwolili dostawcom na aktywne skanowanie charakterystyki urz\u0105dzenia w celu identyfikacji (Funkcja specjalna 2)\n"},"3":{"id":3,"name":"Odbieranie i wykorzystywanie automatycznie wys\u0142anej charakterystyki urz\u0105dzenia do identyfikacji","description":"Urz\u0105dzenie mo\u017ce si\u0119 odr\u00f3\u017cnia\u0107 od innych urz\u0105dze\u0144 w oparciu o informacje, kt\u00f3re automatycznie przesy\u0142a, takie jak adres IP lub typ przegl\u0105darki.","descriptionLegal":"Dostawcy mog\u0105:\n* stworzy\u0107 identyfikator za pomoc\u0105 danych zebranych automatycznie z urz\u0105dzenia pod wzgl\u0119dem okre\u015blonych cech, np. adres IP, ci\u0105g agenta u\u017cytkownika.\n* u\u017cy\u0107 takiego identyfikatora, aby podj\u0105\u0107 pr\u00f3b\u0119 ponownej identyfikacji urz\u0105dzenia.\nDostawcy nie mog\u0105:\n* stworzy\u0107 identyfikatora przy u\u017cyciu danych zebranych poprzez aktywne skanowanie urz\u0105dzenia w celu uzyskania okre\u015blonych cech, np. zainstalowanych czcionek lub rozdzielczo\u015bci ekranu, bez odr\u0119bnej zgody u\u017cytkownik\u00f3w na aktywne skanowanie charakterystyki urz\u0105dzenia do identyfikacji.\n* u\u017cy\u0107 takiego identyfikatora, aby ponownie zidentyfikowa\u0107 urz\u0105dzenie.\n"}},"specialFeatures":{"1":{"id":1,"name":"U\u017cycie dok\u0142adnych danych geolokalizacyjnych","description":"Dok\u0142adne dane geolokalizacyjne u\u017cytkownika mog\u0105 by\u0107 wykorzystywane na potrzeby realizacji jednego albo wi\u0119kszej liczby cel\u00f3w. Oznacza to, \u017ce lokalizacja u\u017cytkownika mo\u017ce by\u0107 dok\u0142adna do kilku metr\u00f3w.","descriptionLegal":"Dostawcy mog\u0105:\n* gromadzi\u0107 i obs\u0142ugiwa\u0107 dok\u0142adne dane geolokalizacyjne na potrzeby realizacji jednego albo wi\u0119kszej liczby cel\u00f3w.\nUwaga: Dok\u0142adna geolokalizacja oznacza, \u017ce nie ma ogranicze\u0144 w dok\u0142adno\u015bci lokalizacji u\u017cytkownika; mo\u017ce by\u0107 dok\u0142adna do kilku metr\u00f3w.\n"},"2":{"id":2,"name":"Aktywne skanowanie charakterystyki urz\u0105dzenia do cel\u00f3w identyfikacji","description":"Urz\u0105dzenie u\u017cytkownika mo\u017cna zidentyfikowa\u0107 na podstawie skanu unikalnej kombinacji cech urz\u0105dzenia.","descriptionLegal":"Dostawcy mog\u0105:\n* stworzy\u0107 identyfikator przy u\u017cyciu danych zebranych poprzez aktywne skanowanie urz\u0105dzenia w celu uzyskania okre\u015blonych cech, np. zainstalowanych czcionek lub rozdzielczo\u015bci ekranu. \n* u\u017cy\u0107 takiego identyfikatora, aby ponownie zidentyfikowa\u0107 urz\u0105dzenie.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Dok\u0142adne dane geolokalizacyjne i identyfikacja poprzez skanowanie urz\u0105dze\u0144","description":"Mo\u017cna wykorzysta\u0107 precyzyjne dane geolokalizacyjne i informacje o charakterystyce urz\u0105dzenia."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Podstawowe reklamy i pomiar reklam","description":"Mo\u017cna pokazywa\u0107 podstawowe reklamy. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Spersonalizowane reklamy","description":"Reklamy mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji reklam mo\u017cna doda\u0107 wi\u0119cej danych."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Podstawowe reklamy i pomiar reklam","description":"Mo\u017cna pokazywa\u0107 podstawowe reklamy. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Podstawowe reklamy, profil spersonalizowanych reklam i pomiar reklam","description":"Mo\u017cna pokazywa\u0107 podstawowe reklamy. W celu lepszej personalizacji reklam mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Wy\u015bwietlanie spersonalizowanych reklam i pomiar reklam","description":"Reklamy mo\u017cna personalizowa\u0107 w oparciu o profil. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Wy\u015bwietlanie spersonalizowanych reklam, pomiar reklam i opinie odbiorc\u00f3w","description":"Reklamy mo\u017cna personalizowa\u0107 w oparciu o profil. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Spersonalizowane reklamy i pomiar reklam","description":"Reklamy mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji reklam mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Spersonalizowane reklamy, pomiar reklam i opinie odbiorc\u00f3w","description":"Reklamy mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji reklam mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Profil i wy\u015bwietlanie spersonalizowanych reklam","description":"Reklamy mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji reklam mo\u017cna doda\u0107 wi\u0119cej danych."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Spersonalizowane tre\u015bci","description":"Tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji tre\u015bci mo\u017cna doda\u0107 wi\u0119cej danych."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Wy\u015bwietlanie spersonalizowanych tre\u015bci i pomiar tre\u015bci","description":"Tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 tre\u015bci."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Wy\u015bwietlanie spersonalizowanych tre\u015bci, pomiar tre\u015bci i opinie odbiorc\u00f3w","description":"Tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 tre\u015bci. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Spersonalizowane tre\u015bci, pomiar tre\u015bci i opinie odbiorc\u00f3w","description":"Tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji tre\u015bci mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 tre\u015bci. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Spersonalizowane tre\u015bci, pomiar tre\u015bci, opinie odbiorc\u00f3w i opracowanie produktu","description":"Tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji tre\u015bci mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 tre\u015bci. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci. Mo\u017cna wykorzysta\u0107 dane do tworzenia lub ulepszenia wra\u017ce\u0144 u\u017cytkownika, system\u00f3w i oprogramowania"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Pomiar reklam i tre\u015bci oraz opinie odbiorc\u00f3w","description":"Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam i tre\u015bci. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Pomiar reklam i tre\u015bci","description":"Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam i tre\u015bci."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Pomiar reklam oraz opinie odbiorc\u00f3w","description":"Mo\u017cna mierzy\u0107 reklam\u0119. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Pomiar reklam i tre\u015bci, opinie odbiorc\u00f3w i opracowanie produktu","description":"Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam i tre\u015bci. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci. Mo\u017cna wykorzysta\u0107 dane do tworzenia lub ulepszenia wra\u017ce\u0144 u\u017cytkownika, system\u00f3w i oprogramowania. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Pomiar tre\u015bci, opinie odbiorc\u00f3w i opracowanie produktu","description":"Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 tre\u015bci. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci. Mo\u017cna wykorzysta\u0107 dane do tworzenia lub ulepszenia wra\u017ce\u0144 u\u017cytkownika, system\u00f3w i oprogramowania."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Pomiar tre\u015bci i opracowanie produktu","description":"Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 tre\u015bci. Mo\u017cna wykorzysta\u0107 dane do tworzenia lub ulepszenia wra\u017ce\u0144 u\u017cytkownika, system\u00f3w i oprogramowania."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Wy\u015bwietlanie spersonalizowanych reklam i tre\u015bci, pomiar reklam i tre\u015bci","description":"Reklamy i tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam i tre\u015bci."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Wy\u015bwietlanie spersonalizowanych reklam i tre\u015bci, pomiar reklam i tre\u015bci oraz opinie odbiorc\u00f3w","description":"Reklamy i tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam i tre\u015bci. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci. Mo\u017cna wykorzysta\u0107 dane do tworzenia lub ulepszenia wra\u017ce\u0144 u\u017cytkownika, system\u00f3w i oprogramowania."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Spersonalizowane reklamy i tre\u015bci, pomiar reklam i tre\u015bci","description":"Reklamy i tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji reklam i tre\u015bci mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam i tre\u015bci."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Spersonalizowane reklamy i tre\u015bci, pomiar reklam i tre\u015bci oraz opinie odbiorc\u00f3w","description":"Reklamy i tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji reklam i tre\u015bci mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam i tre\u015bci. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Profil spersonalizowanych reklam i tre\u015bci","description":"W celu personalizacji reklam i tre\u015bci mo\u017cna doda\u0107 wi\u0119cej danych."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Wy\u015bwietlanie spersonalizowanych reklam i tre\u015bci","description":"Reklamy i tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Podstawowe reklamy, pomiar reklam i tre\u015bci oraz opinie odbiorc\u00f3w","description":"Mo\u017cna pokazywa\u0107 podstawowe reklamy. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam i tre\u015bci. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Wy\u015bwietlanie spersonalizowanych reklam, spersonalizowane tre\u015bci, pomiar reklam i tre\u015bci oraz opinie odbiorc\u00f3w","description":"Reklamy i tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji tre\u015bci mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam i tre\u015bci. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Wy\u015bwietlanie spersonalizowanych reklam, spersonalizowane tre\u015bci, pomiar reklam i tre\u015bci, opinie odbiorc\u00f3w oraz opracowanie produktu","description":"Reklamy i tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji tre\u015bci mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam i tre\u015bci. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci. Mo\u017cna wykorzysta\u0107 dane do tworzenia lub ulepszenia wra\u017ce\u0144 u\u017cytkownika, system\u00f3w i oprogramowania."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Podstawowe reklamy, spersonalizowane tre\u015bci, pomiar reklam i tre\u015bci oraz opinie odbiorc\u00f3w","description":"Mo\u017cna pokazywa\u0107 podstawowe reklamy. Tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji tre\u015bci mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam i tre\u015bci. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Podstawowe reklamy, spersonalizowane tre\u015bci, pomiar reklam i tre\u015bci, opinie odbiorc\u00f3w oraz opracowanie produktu","description":"Mo\u017cna pokazywa\u0107 podstawowe reklamy. Tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji tre\u015bci mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam i tre\u015bci. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci. Mo\u017cna wykorzysta\u0107 dane do tworzenia lub ulepszenia wra\u017ce\u0144 u\u017cytkownika, system\u00f3w i oprogramowania."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Podstawowe reklamy, spersonalizowane tre\u015bci, pomiar tre\u015bci oraz opinie odbiorc\u00f3w","description":"Mo\u017cna pokazywa\u0107 podstawowe reklamy. Tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji tre\u015bci mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam i tre\u015bci. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Podstawowe reklamy, spersonalizowane tre\u015bci, pomiar tre\u015bci, opinie odbiorc\u00f3w oraz opracowanie produktu","description":"Mo\u017cna pokazywa\u0107 podstawowe reklamy. Tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji tre\u015bci mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 tre\u015bci. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci. Mo\u017cna wykorzysta\u0107 dane do tworzenia lub ulepszenia wra\u017ce\u0144 u\u017cytkownika, system\u00f3w i oprogramowania."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Podstawowe reklamy, spersonalizowane tre\u015bci oraz pomiar reklam","description":"Mo\u017cna pokazywa\u0107 podstawowe reklamy. Tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji tre\u015bci mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Podstawowe reklamy, spersonalizowane tre\u015bci, pomiar tre\u015bci oraz opracowanie produktu","description":"Mo\u017cna pokazywa\u0107 podstawowe reklamy. Tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji tre\u015bci mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam. Mo\u017cna wykorzysta\u0107 dane do tworzenia lub ulepszenia wra\u017ce\u0144 u\u017cytkownika, system\u00f3w i oprogramowania."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Spersonalizowane reklamy, pomiar reklam, rozw\u00f3j produktu","description":"Reklamy mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji reklam mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam. Mo\u017cna wykorzysta\u0107 dane do tworzenia lub ulepszenia wra\u017ce\u0144 u\u017cytkownika, system\u00f3w i oprogramowania."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Spersonalizowane reklamy, pomiar reklam, opinie odbiorc\u00f3w, rozw\u00f3j produktu","description":"Reklamy mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji reklam mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci. Mo\u017cna wykorzysta\u0107 dane do tworzenia lub ulepszenia wra\u017ce\u0144 u\u017cytkownika, system\u00f3w i oprogramowania."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Spersonalizowane reklamy, pomiar reklam i tre\u015bci, opinie odbiorc\u00f3w, rozw\u00f3j produktu","description":"Reklamy mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji reklam mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam i tre\u015bci. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci. Mo\u017cna wykorzysta\u0107 dane do tworzenia lub ulepszenia wra\u017ce\u0144 u\u017cytkownika, system\u00f3w i oprogramowania."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Spersonalizowane reklamy, spersonalizowane wy\u015bwietlenie tre\u015bci, pomiar reklam i tre\u015bci, opinie odbiorc\u00f3w, rozw\u00f3j produktu","description":"Reklamy i tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji reklam mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam i tre\u015bci. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci. Mo\u017cna wykorzysta\u0107 dane do tworzenia lub ulepszenia wra\u017ce\u0144 u\u017cytkownika, system\u00f3w i oprogramowania."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Spersonalizowane reklamy i tre\u015bci, pomiar reklam i tre\u015bci, opinie odbiorc\u00f3w, rozw\u00f3j produktu","description":"Reklamy i tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji reklam i tre\u015bci mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam i tre\u015bci. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci. Mo\u017cna wykorzysta\u0107 dane do tworzenia lub ulepszenia wra\u017ce\u0144 u\u017cytkownika, system\u00f3w i oprogramowania."}}} \ No newline at end of file +{"vendorListVersion":94,"lastUpdated":"2021-06-10T16:44:02Z","purposes":{"1":{"id":1,"name":"Przechowywanie informacji na urz\u0105dzeniu lub dost\u0119p do nich","description":"Pliki cookie, identyfikatory urz\u0105dze\u0144 lub inne informacje mog\u0105 by\u0107 przechowywane na urz\u0105dzeniu u\u017cytkownika lub udost\u0119pniane na nim w przedstawionych u\u017cytkownikowi celach.","descriptionLegal":"Dostawcy mog\u0105:\n* przechowywa\u0107 na urz\u0105dzeniu informacje, takie jak pliki cookie i identyfikatory urz\u0105dzenia przedstawiane u\u017cytkownikowi, oraz uzyskiwa\u0107 do nich dost\u0119p.\n"},"2":{"id":2,"name":"Wyb\u00f3r podstawowych reklam","description":"Reklamy mog\u0105 by\u0107 wy\u015bwietlane w oparciu o ogl\u0105dan\u0105 tre\u015b\u0107, u\u017cywan\u0105 aplikacj\u0119, przybli\u017con\u0105 lokalizacj\u0119 lub typ urz\u0105dzenia.","descriptionLegal":"Aby dokona\u0107 podstawowego wyboru reklam, dostawcy mog\u0105:\n* u\u017cywa\u0107 informacji w czasie rzeczywistym na temat kontekstu, w jakim zostanie wy\u015bwietlona reklama, aby wy\u015bwietli\u0107 reklam\u0119, w tym informacji o tre\u015bci i urz\u0105dzeniu, takich jak: typ urz\u0105dzenia i jego parametry, aplikacja klienta, adres URL, adres IP. \n* u\u017cywa\u0107 nieprecyzyjnych danych geolokalizacyjnych u\u017cytkownika.\n* kontrolowa\u0107 cz\u0119stotliwo\u015b\u0107 reklam wy\u015bwietlanych u\u017cytkownikowi.\n* ustawi\u0107 kolejno\u015b\u0107 wy\u015bwietlania reklam u\u017cytkownikowi.\n* zapobiec pojawieniu si\u0119 reklamy w nieodpowiednim kontek\u015bcie redakcyjnym (niebezpiecznym dla marki).\nDostawcy nie mog\u0105:\n* tworzy\u0107tworzy\u0107 profilu spersonalizowanych reklam przy u\u017cyciu tych informacji do wyboru przysz\u0142ych reklam bez osobnej podstawy prawnej do utworzenia profilu spersonalizowanych reklam.\nUwaga! Nieprecyzyjne oznacza, \u017ce dozwolona jest tylko przybli\u017cona lokalizacja obejmuj\u0105ca co najmniej promie\u0144 500 metr\u00f3w.\n"},"3":{"id":3,"name":"Tworzenie profilu spersonalizowanych reklam","description":"Profil mo\u017ce by\u0107 zbudowany na temat u\u017cytkownika i jego zainteresowa\u0144, co pozwoli na pokazywanie spersonalizowanych reklam, kt\u00f3re s\u0105 dla u\u017cytkownika istotne.","descriptionLegal":"Aby stworzy\u0107 profil spersonalizowanych reklam, dostawcy mog\u0105:\n* zbiera\u0107 informacje o u\u017cytkowniku, w tym o dzia\u0142aniach u\u017cytkownika, jego zainteresowaniach, wizytach na stronach lub w aplikacjach, dane demograficzne lub lokalizacyjne w celu stworzenia lub edytowania profilu u\u017cytkownika w celu personalizacji reklam.\n* \u0142\u0105czy\u0107 te informacje z innymi wcze\u015bniej zebranymi informacjami, w tym z r\u00f3\u017cnych witryn i aplikacji, w celu stworzenia lub edytowania profilu u\u017cytkownika w celu personalizacji reklam.\n"},"4":{"id":4,"name":"Wyb\u00f3r spersonalizowanych reklam","description":"Spersonalizowane reklamy mog\u0105 by\u0107 wy\u015bwietlane u\u017cytkownikowi na podstawie jego profilu.","descriptionLegal":"Aby wybra\u0107 spersonalizowane reklamy, dostawcy mog\u0105:\n* wybra\u0107 spersonalizowane reklamy w oparciu o profil u\u017cytkownika lub inne historyczne dane u\u017cytkownika, w tym wcze\u015bniejsze dzia\u0142ania u\u017cytkownika, zainteresowania, wizyty na stronach lub w aplikacjach, lokalizacj\u0119 lub dane demograficzne.\n"},"5":{"id":5,"name":"Tworzenie profilu spersonalizowanych tre\u015bci","description":"Profil mo\u017ce by\u0107 zbudowany na temat u\u017cytkownika i jego zainteresowa\u0144, co pozwoli na pokazywanie spersonalizowanych tre\u015bci, kt\u00f3re s\u0105 dla u\u017cytkownika istotne.","descriptionLegal":"Aby stworzy\u0107 profil spersonalizowanych tre\u015bci, dostawcy mog\u0105:\n* zbiera\u0107 informacje o u\u017cytkowniku, w tym dzia\u0142aniach u\u017cytkownika, jego zainteresowaniach, wizytach na stronach lub w aplikacjach, dane demograficzne lub lokalizacyjne w celu stworzenia lub edytowania profilu u\u017cytkownika w celu personalizacji tre\u015bci.\n* Po\u0142\u0105cz te informacje z innymi informacjami zebranymi wcze\u015bniej, w tym z r\u00f3\u017cnych witryn internetowych i aplikacji, aby utworzy\u0107 lub edytowa\u0107 profil u\u017cytkownika w celu personalizacji tre\u015bci."},"6":{"id":6,"name":"Wyb\u00f3r spersonalizowanych tre\u015bci","description":"Spersonalizowane tre\u015bci mog\u0105 by\u0107 wy\u015bwietlane u\u017cytkownikowi na podstawie jego profilu.","descriptionLegal":"Aby wybra\u0107 spersonalizowane tre\u015bci, dostawcy mog\u0105:\n* wybra\u0107 spersonalizowane tre\u015bci w oparciu o profil u\u017cytkownika lub inne historyczne dane u\u017cytkownika, w tym wcze\u015bniejsze dzia\u0142ania u\u017cytkownika, zainteresowania, wizyty na stronach lub w aplikacjach, lokalizacj\u0119 lub dane demograficzne.\n"},"7":{"id":7,"name":"Pomiar wydajno\u015bci reklam","description":"Mo\u017cna zmierzy\u0107 wydajno\u015b\u0107 i efektywno\u015b\u0107 reklam, kt\u00f3re u\u017cytkownik widzi lub na kt\u00f3re reaguje.","descriptionLegal":"Aby dokona\u0107 pomiaru wydajno\u015bci reklam, dostawcyreklam mog\u0105:\n* zmierzy\u0107, czy ii w jaki spos\u00f3b reklamy by\u0142y dostarczane u\u017cytkownikowiwi i jaka by\u0142a jego reakcja.\n* dostarcza\u0107 raporty dotycz\u0105ce reklam, w tym ich skuteczno\u015bci i wydajno\u015bci.\n* dostarcza\u0107 raporty dotycz\u0105ce u\u017cytkownik\u00f3w, kt\u00f3rzy zareagowali na reklamyreklamy, z u\u017cyciem danych obserwowanych podczas reakcji u\u017cytkownika na t\u0119 reklam\u0119.\n* dostarcza\u0107 raporty wydawcom na temat reklam wy\u015bwietlanych na ich powierzchni.\n* zmierzy\u0107, czy reklama jest obs\u0142ugiwana w odpowiednim \u015brodowisku redakcyjnym (bezpiecze\u0144stwo marki).\n* okre\u015bli\u0107, w jakiej warto\u015bci procentowej reklama mog\u0142a zosta\u0107 obejrzana, a tak\u017ce czas trwania tej mo\u017cliwo\u015bci obejrzenia. \nDostawcy nie mog\u0105:\n* stosowa\u0107 danych pochodz\u0105cych z analizy panelu lub podobnych odbiorc\u00f3w do danych pomiarowych z reklam bez odr\u0119bnej podstawy prawnej do zastosowania bada\u0144 rynku w celu wygenerowania spostrze\u017ce\u0144 odbiorc\u00f3w..\n"},"8":{"id":8,"name":"Pomiar wydajno\u015bci tre\u015bci","description":"mo\u017cna zmierzy\u0107 wydajno\u015b\u0107 i efektywno\u015b\u0107 tre\u015bci, kt\u00f3re u\u017cytkownik widzi lub na kt\u00f3re reaguje.","descriptionLegal":"Aby dokona\u0107 pomiaru wydajno\u015bci tre\u015bci, dostawcy mog\u0105:\n* zmierzy\u0107 i sporz\u0105dzi\u0107 raport na temat tego, czy tre\u015bci by\u0142y dostarczane u\u017cytkownikom i jaka by\u0142a ich reakcja.\n* dostarcza\u0107 raporty, u\u017cywaj\u0105c bezpo\u015brednio mierzalnych lub znanych informacji o u\u017cytkownikach, kt\u00f3rzy zareagowali na tre\u015b\u0107.\nDostawcy nie mog\u0105:\n* zmierzy\u0107, czy i w jaki spos\u00f3b reklamy (w tym reklamy natywne) by\u0142y dostarczane u\u017cytkownikowi i jaka by\u0142a jego reakcja.\n* stosowa\u0107 danych pochodz\u0105cych z analizy panelu lub podobnych odbiorc\u00f3w do danych pomiarowych z reklam bez odr\u0119bnej podstawy prawnej do zastosowania bada\u0144 rynku w celu wygenerowania spostrze\u017ce\u0144 odbiorc\u00f3w.\n"},"9":{"id":9,"name":"Stosowanie bada\u0144 rynkowych w celu generowania opinii odbiorc\u00f3w","description":"Badania rynku mog\u0105 by\u0107 wykorzystywane w celu uzyskania dalszych informacji na temat odbiorc\u00f3w, kt\u00f3rzy odwiedzaj\u0105 strony/aplikacje i ogl\u0105daj\u0105 reklamy.","descriptionLegal":"Aby zastosowa\u0107 badania rynkowe w celu generowania opinii odbiorc\u00f3w, dostawcy mog\u0105:\n* dostarcza\u0107 reklamodawcom lub ich przedstawicielom zbiorcze raporty na temat odbiorc\u00f3w, do kt\u00f3rych dotar\u0142y ich reklamy, poprzez analiz\u0119 panelow\u0105 i podobn\u0105.\n* dostarcza\u0107 zbiorcze raporty wydawcom na temat odbiorc\u00f3w, do kt\u00f3rych dotar\u0142y tre\u015bci lub reklamy na ich terenie i kt\u00f3rzy zareagowali na te tre\u015bci lub reklamy, poprzez zastosowanie analizy panelowej i podobnej. \n* powi\u0105za\u0107 dane offline z u\u017cytkownikiem online na cele bada\u0144 rynkowych w celu wygenerowania spostrze\u017ce\u0144 odbiorc\u00f3w, je\u015bli dostawcy zdecydowali si\u0119 na dopasowanie i po\u0142\u0105czenie \u017ar\u00f3de\u0142 danych offline \n* Po\u0142\u0105czy\u0107 t\u0119 informacj\u0119 z inn\u0105 informacj\u0105 zebran\u0105 wcze\u015bniej, w tym z r\u00f3\u017cnych witryn i aplikacji\nDostawcy nie mog\u0105: \n* mierzy\u0107 wydajno\u015bci i skuteczno\u015bci reklam, kt\u00f3re wy\u015bwietlono konkretnemu u\u017cytkownikowi i na kt\u00f3re on zareagowa\u0142, bez odr\u0119bnej podstawy prawnej do pomiaru wydajno\u015bci reklam.\n* mierzy\u0107, jakie tre\u015bci zaprezentowano konkretnemu u\u017cytkownikowi i jak na nie zareagowa\u0142, bez odr\u0119bnej podstawy prawnej do pomiaru wydajno\u015bci tre\u015bci.\n"},"10":{"id":10,"name":"Opracowywanie i ulepszanie produkt\u00f3w","description":"Dane u\u017cytkownika mog\u0105 by\u0107 wykorzystywane do ulepszania istniej\u0105cych system\u00f3w i oprogramowania oraz opracowania nowych produkt\u00f3w.","descriptionLegal":"Aby opracowywa\u0107 nowe produkty i ulepsza\u0107 istniej\u0105ce produkty, dostawcy mog\u0105:\n* wykorzystywa\u0107 informacje w celu uzupe\u0142niania istniej\u0105cych produkt\u00f3w nowymi funkcjami i opracowywania nowych produkt\u00f3w.\n* tworzy\u0107 nowe modele i algorytmy poprzez uczenie maszynowe.\nDostawcy nie mog\u0105:\n* przeprowadza\u0107 w tym celu \u017cadnych innych operacji przetwarzania danych dozwolonych w innym celu.\n"}},"specialPurposes":{"1":{"id":1,"name":"Zapewnienie bezpiecze\u0144stwa, zapobieganie oszustwom i usuwanie b\u0142\u0119d\u00f3w","description":"Dane u\u017cytkownika mog\u0105 by\u0107 wykorzystywane do monitorowania i zapobiegania oszustwom oraz zapewnienia prawid\u0142owego i bezpiecznego dzia\u0142ania system\u00f3w i proces\u00f3w.","descriptionLegal":"W celu zapewnienia bezpiecze\u0144stwa, zapobiegania oszustwom i usuwania b\u0142\u0119d\u00f3w, dostawcy mog\u0105:\n* upewni\u0107 si\u0119, \u017ce dane s\u0105 bezpiecznie przesy\u0142ane. \n* wykrywa\u0107 z\u0142o\u015bliwe, nieuczciwe, nieprawid\u0142owe lub nielegalne dzia\u0142ania i zapobiega\u0107 im.\n* zapewnia\u0107 prawid\u0142owe i wydajne dzia\u0142anie system\u00f3w i proces\u00f3w, w tym monitorowanie i usprawnianie wydajno\u015bci system\u00f3w i proces\u00f3w zaanga\u017cowanych w dozwolone cele.\nDostawcy nie mog\u0105:\n* przeprowadza\u0107 w tym celu \u017cadnych innych operacji przetwarzania danych dozwolonych w innym celu.\nUwaga: Dane zebrane i wykorzystywane w celu zapewnienia bezpiecze\u0144stwa, zapobiegania oszustwom i usuwania b\u0142\u0119d\u00f3w mog\u0105 obejmowa\u0107 automatycznie wysy\u0142an\u0105 charakterystyk\u0119 urz\u0105dzenia do identyfikacji, precyzyjne dane geolokalizacyjne i dane uzyskane w drodze aktywnego skanowania charakterystyki urz\u0105dzenia w celu identyfikacji bez odr\u0119bnego ujawnienia lub zgody.\n"},"2":{"id":2,"name":"Techniczne dostarczenie reklam lub tre\u015bci","description":"Urz\u0105dzenie u\u017cytkownika mo\u017ce odbiera\u0107 i wysy\u0142a\u0107 informacje, kt\u00f3re umo\u017cliwiaj\u0105 przegl\u0105danie reklam i tre\u015bci oraz reagowanie na nie.","descriptionLegal":"Aby dostarcza\u0107 informacje i odpowiada\u0107 na pytania techniczne, dostawcy mog\u0105:\n* u\u017cy\u0107 adresu IP u\u017cytkownika, aby przekaza\u0107 reklam\u0119 przez Internet.\n* odpowiedzie\u0107 na reakcj\u0119 u\u017cytkownika na reklam\u0119, wysy\u0142aj\u0105c u\u017cytkownika na stron\u0119 docelow\u0105.\n* u\u017cy\u0107 adresu IP u\u017cytkownika, aby przekaza\u0107 tre\u015bci przez Internet.\n* odpowiedzie\u0107 na reakcj\u0119 u\u017cytkownika na tre\u015bci, wysy\u0142aj\u0105c u\u017cytkownika na stron\u0119 docelow\u0105.\n* wykorzysta\u0107 informacje o rodzaju urz\u0105dzenia i mo\u017cliwo\u015bciach dostarczania reklam lub tre\u015bci, na przyk\u0142ad w celu dostarczenia pliku reklamowego o odpowiednim rozmiarze lub pliku wideo w \nDostawcy nie mog\u0105:\n* przeprowadza\u0107 w tym celu \u017cadnych innych operacji przetwarzania danych dozwolonych w innym celu.\n"}},"features":{"1":{"id":1,"name":"Dopasowanie i po\u0142\u0105czenie \u017ar\u00f3de\u0142 danych offline","description":"Dane ze \u017ar\u00f3de\u0142 danych offline mog\u0105 by\u0107 \u0142\u0105czone z aktywno\u015bci\u0105 u\u017cytkownika online w ramach realizacji co najmniej jednego celu.","descriptionLegal":"Dostawcy mog\u0105: \n* \u0142\u0105czy\u0107 dane uzyskane offline z danymi zgromadzonymi online w celu realizacji jednego lub wi\u0119cej Cel\u00f3w lub Cel\u00f3w specjalnych.\n"},"2":{"id":2,"name":"\u0141\u0105czenie r\u00f3\u017cnych urz\u0105dze\u0144","description":"R\u00f3\u017cne urz\u0105dzenia mog\u0105 by\u0107 okre\u015blane jako nale\u017c\u0105ce do u\u017cytkownika lub jego gospodarstwa domowego do realizacji co najmniej jednego celu.","descriptionLegal":"Dostawcy mog\u0105:\n* deterministycznie okre\u015bli\u0107, \u017ce co najmniej dwa urz\u0105dzenia nale\u017c\u0105 do tego samego u\u017cytkownika lub gospodarstwa domowego.\n* probabilistycznie okre\u015bli\u0107, \u017ce co najmniej dwa urz\u0105dzenia nale\u017c\u0105 do tego samego u\u017cytkownika lub gospodarstwa domowego.\n* Aktywnie skanowa\u0107 charakterystyki urz\u0105dzenia w celach identyfikacji probabilistycznej, je\u015bli u\u017cytkownicy zezwolili dostawcom na aktywne skanowanie charakterystyki urz\u0105dzenia w celu identyfikacji (Funkcja specjalna 2)\n"},"3":{"id":3,"name":"Odbieranie i wykorzystywanie automatycznie wys\u0142anej charakterystyki urz\u0105dzenia do identyfikacji","description":"Urz\u0105dzenie mo\u017ce si\u0119 odr\u00f3\u017cnia\u0107 od innych urz\u0105dze\u0144 w oparciu o informacje, kt\u00f3re automatycznie przesy\u0142a, takie jak adres IP lub typ przegl\u0105darki.","descriptionLegal":"Dostawcy mog\u0105:\n* stworzy\u0107 identyfikator za pomoc\u0105 danych zebranych automatycznie z urz\u0105dzenia pod wzgl\u0119dem okre\u015blonych cech, np. adres IP, ci\u0105g agenta u\u017cytkownika.\n* u\u017cy\u0107 takiego identyfikatora, aby podj\u0105\u0107 pr\u00f3b\u0119 ponownej identyfikacji urz\u0105dzenia.\nDostawcy nie mog\u0105:\n* stworzy\u0107 identyfikatora przy u\u017cyciu danych zebranych poprzez aktywne skanowanie urz\u0105dzenia w celu uzyskania okre\u015blonych cech, np. zainstalowanych czcionek lub rozdzielczo\u015bci ekranu, bez odr\u0119bnej zgody u\u017cytkownik\u00f3w na aktywne skanowanie charakterystyki urz\u0105dzenia do identyfikacji.\n* u\u017cy\u0107 takiego identyfikatora, aby ponownie zidentyfikowa\u0107 urz\u0105dzenie.\n"}},"specialFeatures":{"1":{"id":1,"name":"U\u017cycie dok\u0142adnych danych geolokalizacyjnych","description":"Dok\u0142adne dane geolokalizacyjne u\u017cytkownika mog\u0105 by\u0107 wykorzystywane na potrzeby realizacji jednego albo wi\u0119kszej liczby cel\u00f3w. Oznacza to, \u017ce lokalizacja u\u017cytkownika mo\u017ce by\u0107 dok\u0142adna do kilku metr\u00f3w.","descriptionLegal":"Dostawcy mog\u0105:\n* gromadzi\u0107 i obs\u0142ugiwa\u0107 dok\u0142adne dane geolokalizacyjne na potrzeby realizacji jednego albo wi\u0119kszej liczby cel\u00f3w.\nUwaga: Dok\u0142adna geolokalizacja oznacza, \u017ce nie ma ogranicze\u0144 w dok\u0142adno\u015bci lokalizacji u\u017cytkownika; mo\u017ce by\u0107 dok\u0142adna do kilku metr\u00f3w.\n"},"2":{"id":2,"name":"Aktywne skanowanie charakterystyki urz\u0105dzenia do cel\u00f3w identyfikacji","description":"Urz\u0105dzenie u\u017cytkownika mo\u017cna zidentyfikowa\u0107 na podstawie skanu unikalnej kombinacji cech urz\u0105dzenia.","descriptionLegal":"Dostawcy mog\u0105:\n* stworzy\u0107 identyfikator przy u\u017cyciu danych zebranych poprzez aktywne skanowanie urz\u0105dzenia w celu uzyskania okre\u015blonych cech, np. zainstalowanych czcionek lub rozdzielczo\u015bci ekranu. \n* u\u017cy\u0107 takiego identyfikatora, aby ponownie zidentyfikowa\u0107 urz\u0105dzenie.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Dok\u0142adne dane geolokalizacyjne i identyfikacja poprzez skanowanie urz\u0105dze\u0144","description":"Mo\u017cna wykorzysta\u0107 precyzyjne dane geolokalizacyjne i informacje o charakterystyce urz\u0105dzenia."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Podstawowe reklamy i pomiar reklam","description":"Mo\u017cna pokazywa\u0107 podstawowe reklamy. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Spersonalizowane reklamy","description":"Reklamy mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji reklam mo\u017cna doda\u0107 wi\u0119cej danych."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Podstawowe reklamy i pomiar reklam","description":"Mo\u017cna pokazywa\u0107 podstawowe reklamy. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Podstawowe reklamy, profil spersonalizowanych reklam i pomiar reklam","description":"Mo\u017cna pokazywa\u0107 podstawowe reklamy. W celu lepszej personalizacji reklam mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Wy\u015bwietlanie spersonalizowanych reklam i pomiar reklam","description":"Reklamy mo\u017cna personalizowa\u0107 w oparciu o profil. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Wy\u015bwietlanie spersonalizowanych reklam, pomiar reklam i opinie odbiorc\u00f3w","description":"Reklamy mo\u017cna personalizowa\u0107 w oparciu o profil. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Spersonalizowane reklamy i pomiar reklam","description":"Reklamy mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji reklam mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Spersonalizowane reklamy, pomiar reklam i opinie odbiorc\u00f3w","description":"Reklamy mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji reklam mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Profil i wy\u015bwietlanie spersonalizowanych reklam","description":"Reklamy mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji reklam mo\u017cna doda\u0107 wi\u0119cej danych."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Spersonalizowane tre\u015bci","description":"Tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji tre\u015bci mo\u017cna doda\u0107 wi\u0119cej danych."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Wy\u015bwietlanie spersonalizowanych tre\u015bci i pomiar tre\u015bci","description":"Tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 tre\u015bci."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Wy\u015bwietlanie spersonalizowanych tre\u015bci, pomiar tre\u015bci i opinie odbiorc\u00f3w","description":"Tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 tre\u015bci. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Spersonalizowane tre\u015bci, pomiar tre\u015bci i opinie odbiorc\u00f3w","description":"Tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji tre\u015bci mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 tre\u015bci. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Spersonalizowane tre\u015bci, pomiar tre\u015bci, opinie odbiorc\u00f3w i opracowanie produktu","description":"Tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji tre\u015bci mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 tre\u015bci. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci. Mo\u017cna wykorzysta\u0107 dane do tworzenia lub ulepszenia wra\u017ce\u0144 u\u017cytkownika, system\u00f3w i oprogramowania"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Pomiar reklam i tre\u015bci oraz opinie odbiorc\u00f3w","description":"Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam i tre\u015bci. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Pomiar reklam i tre\u015bci","description":"Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam i tre\u015bci."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Pomiar reklam oraz opinie odbiorc\u00f3w","description":"Mo\u017cna mierzy\u0107 reklam\u0119. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Pomiar reklam i tre\u015bci, opinie odbiorc\u00f3w i opracowanie produktu","description":"Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam i tre\u015bci. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci. Mo\u017cna wykorzysta\u0107 dane do tworzenia lub ulepszenia wra\u017ce\u0144 u\u017cytkownika, system\u00f3w i oprogramowania. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Pomiar tre\u015bci, opinie odbiorc\u00f3w i opracowanie produktu","description":"Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 tre\u015bci. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci. Mo\u017cna wykorzysta\u0107 dane do tworzenia lub ulepszenia wra\u017ce\u0144 u\u017cytkownika, system\u00f3w i oprogramowania."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Pomiar tre\u015bci i opracowanie produktu","description":"Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 tre\u015bci. Mo\u017cna wykorzysta\u0107 dane do tworzenia lub ulepszenia wra\u017ce\u0144 u\u017cytkownika, system\u00f3w i oprogramowania."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Wy\u015bwietlanie spersonalizowanych reklam i tre\u015bci, pomiar reklam i tre\u015bci","description":"Reklamy i tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam i tre\u015bci."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Wy\u015bwietlanie spersonalizowanych reklam i tre\u015bci, pomiar reklam i tre\u015bci oraz opinie odbiorc\u00f3w","description":"Reklamy i tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam i tre\u015bci. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci. Mo\u017cna wykorzysta\u0107 dane do tworzenia lub ulepszenia wra\u017ce\u0144 u\u017cytkownika, system\u00f3w i oprogramowania."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Spersonalizowane reklamy i tre\u015bci, pomiar reklam i tre\u015bci","description":"Reklamy i tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji reklam i tre\u015bci mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam i tre\u015bci."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Spersonalizowane reklamy i tre\u015bci, pomiar reklam i tre\u015bci oraz opinie odbiorc\u00f3w","description":"Reklamy i tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji reklam i tre\u015bci mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam i tre\u015bci. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Profil spersonalizowanych reklam i tre\u015bci","description":"W celu personalizacji reklam i tre\u015bci mo\u017cna doda\u0107 wi\u0119cej danych."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Wy\u015bwietlanie spersonalizowanych reklam i tre\u015bci","description":"Reklamy i tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Podstawowe reklamy, pomiar reklam i tre\u015bci oraz opinie odbiorc\u00f3w","description":"Mo\u017cna pokazywa\u0107 podstawowe reklamy. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam i tre\u015bci. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Wy\u015bwietlanie spersonalizowanych reklam, spersonalizowane tre\u015bci, pomiar reklam i tre\u015bci oraz opinie odbiorc\u00f3w","description":"Reklamy i tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji tre\u015bci mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam i tre\u015bci. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Wy\u015bwietlanie spersonalizowanych reklam, spersonalizowane tre\u015bci, pomiar reklam i tre\u015bci, opinie odbiorc\u00f3w oraz opracowanie produktu","description":"Reklamy i tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji tre\u015bci mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam i tre\u015bci. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci. Mo\u017cna wykorzysta\u0107 dane do tworzenia lub ulepszenia wra\u017ce\u0144 u\u017cytkownika, system\u00f3w i oprogramowania."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Podstawowe reklamy, spersonalizowane tre\u015bci, pomiar reklam i tre\u015bci oraz opinie odbiorc\u00f3w","description":"Mo\u017cna pokazywa\u0107 podstawowe reklamy. Tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji tre\u015bci mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam i tre\u015bci. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Podstawowe reklamy, spersonalizowane tre\u015bci, pomiar reklam i tre\u015bci, opinie odbiorc\u00f3w oraz opracowanie produktu","description":"Mo\u017cna pokazywa\u0107 podstawowe reklamy. Tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji tre\u015bci mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam i tre\u015bci. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci. Mo\u017cna wykorzysta\u0107 dane do tworzenia lub ulepszenia wra\u017ce\u0144 u\u017cytkownika, system\u00f3w i oprogramowania."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Podstawowe reklamy, spersonalizowane tre\u015bci, pomiar tre\u015bci oraz opinie odbiorc\u00f3w","description":"Mo\u017cna pokazywa\u0107 podstawowe reklamy. Tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji tre\u015bci mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam i tre\u015bci. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Podstawowe reklamy, spersonalizowane tre\u015bci, pomiar tre\u015bci, opinie odbiorc\u00f3w oraz opracowanie produktu","description":"Mo\u017cna pokazywa\u0107 podstawowe reklamy. Tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji tre\u015bci mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 tre\u015bci. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci. Mo\u017cna wykorzysta\u0107 dane do tworzenia lub ulepszenia wra\u017ce\u0144 u\u017cytkownika, system\u00f3w i oprogramowania."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Podstawowe reklamy, spersonalizowane tre\u015bci oraz pomiar reklam","description":"Mo\u017cna pokazywa\u0107 podstawowe reklamy. Tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji tre\u015bci mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Podstawowe reklamy, spersonalizowane tre\u015bci, pomiar tre\u015bci oraz opracowanie produktu","description":"Mo\u017cna pokazywa\u0107 podstawowe reklamy. Tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji tre\u015bci mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam. Mo\u017cna wykorzysta\u0107 dane do tworzenia lub ulepszenia wra\u017ce\u0144 u\u017cytkownika, system\u00f3w i oprogramowania."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Spersonalizowane reklamy, pomiar reklam, rozw\u00f3j produktu","description":"Reklamy mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji reklam mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam. Mo\u017cna wykorzysta\u0107 dane do tworzenia lub ulepszenia wra\u017ce\u0144 u\u017cytkownika, system\u00f3w i oprogramowania."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Spersonalizowane reklamy, pomiar reklam, opinie odbiorc\u00f3w, rozw\u00f3j produktu","description":"Reklamy mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji reklam mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci. Mo\u017cna wykorzysta\u0107 dane do tworzenia lub ulepszenia wra\u017ce\u0144 u\u017cytkownika, system\u00f3w i oprogramowania."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Spersonalizowane reklamy, pomiar reklam i tre\u015bci, opinie odbiorc\u00f3w, rozw\u00f3j produktu","description":"Reklamy mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji reklam mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam i tre\u015bci. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci. Mo\u017cna wykorzysta\u0107 dane do tworzenia lub ulepszenia wra\u017ce\u0144 u\u017cytkownika, system\u00f3w i oprogramowania."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Spersonalizowane reklamy, spersonalizowane wy\u015bwietlenie tre\u015bci, pomiar reklam i tre\u015bci, opinie odbiorc\u00f3w, rozw\u00f3j produktu","description":"Reklamy i tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji reklam mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam i tre\u015bci. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci. Mo\u017cna wykorzysta\u0107 dane do tworzenia lub ulepszenia wra\u017ce\u0144 u\u017cytkownika, system\u00f3w i oprogramowania."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Spersonalizowane reklamy i tre\u015bci, pomiar reklam i tre\u015bci, opinie odbiorc\u00f3w, rozw\u00f3j produktu","description":"Reklamy i tre\u015bci mo\u017cna personalizowa\u0107 w oparciu o profil. W celu lepszej personalizacji reklam i tre\u015bci mo\u017cna doda\u0107 wi\u0119cej danych. Mo\u017cna mierzy\u0107 wydajno\u015b\u0107 reklam i tre\u015bci. Mo\u017cna uzyska\u0107 informacje na temat odbiorc\u00f3w, kt\u00f3rzy widzieli reklamy i tre\u015bci. Mo\u017cna wykorzysta\u0107 dane do tworzenia lub ulepszenia wra\u017ce\u0144 u\u017cytkownika, system\u00f3w i oprogramowania."}}} \ No newline at end of file diff --git a/src/s1/config/2.0/purposes/purposes-pt.json b/src/s1/config/2.0/purposes/purposes-pt.json index 0403d9ce..5b91b87e 100644 --- a/src/s1/config/2.0/purposes/purposes-pt.json +++ b/src/s1/config/2.0/purposes/purposes-pt.json @@ -1 +1 @@ -{"vendorListVersion":79,"lastUpdated":"2021-02-25T16:36:23Z","purposes":{"1":{"id":1,"name":"Armazenar e/ou aceder a informa\u00e7\u00f5es num dispositivo","description":"Os cookies, identificadores de dispositivos ou outras informa\u00e7\u00f5es podem ser armazenados ou acedidos no seu dispositivo para os fins que lhe s\u00e3o apresentados.","descriptionLegal":"Os fornecedores podem:\n* Guardar e aceder a informa\u00e7\u00f5es no dispositivo, tais como cookies e identificadores de dispositivos apresentados a um utilizador.\n"},"2":{"id":2,"name":"Selecionar an\u00fancios b\u00e1sicos","description":"Os an\u00fancios podem ser-lhe apresentados com base nos conte\u00fados que est\u00e1 a visualizar, na aplica\u00e7\u00e3o que est\u00e1 a utilizar, na sua localiza\u00e7\u00e3o aproximada ou no seu tipo de dispositivo.","descriptionLegal":"Para fazer uma sele\u00e7\u00e3o b\u00e1sica de an\u00fancios, os fornecedores podem:\n* Utilizar informa\u00e7\u00f5es em tempo real sobre o contexto no qual o an\u00fancio ser\u00e1 mostrado, para mostrar o an\u00fancio, incluindo informa\u00e7\u00f5es sobre os conte\u00fados e o dispositivo, tais como: tipo e capacidades do dispositivo, agente de utilizador, URL, endere\u00e7o IP \n* Utilizar os dados de geolocaliza\u00e7\u00e3o n\u00e3o precisos de um utilizador\n* Controlar a frequ\u00eancia dos an\u00fancios apresentados a um utilizador.\n* Escolher a ordem pela qual os an\u00fancios s\u00e3o mostrados a um utilizador.\n* Evitar que um an\u00fancio sirva num contexto editorial inadequado (n\u00e3o seguro para a marca)\nOs fornecedores n\u00e3o podem:\n* Criar um perfil de an\u00fancios personalizados com base nesta informa\u00e7\u00e3o com o intuito de, sem uma base jur\u00eddica distinta, selecionar an\u00fancios futuros para criar um perfil de an\u00fancios personalizados.\nN.B. N\u00e3o precisos significa que apenas \u00e9 permitida uma localiza\u00e7\u00e3o aproximada que envolva, pelo menos, um raio de 500 metros.\n"},"3":{"id":3,"name":"Criar um perfil de an\u00fancios personalizados","description":"Pode ser criado um perfil sobre si e os seus interesses para lhe mostrar an\u00fancios personalizados que s\u00e3o relevantes para si.","descriptionLegal":"Para criar um perfil de an\u00fancios personalizados, os fornecedores podem:\n* Recolher informa\u00e7\u00f5es sobre um utilizador, incluindo a atividade de um utilizador, os seus interesses, visitas a sites ou aplica\u00e7\u00f5es, informa\u00e7\u00f5es demogr\u00e1ficas ou localiza\u00e7\u00e3o, para criar ou editar um perfil de utilizador para utiliza\u00e7\u00e3o em publicidade personalizada.\n* Combine essas informa\u00e7\u00f5es com outras informa\u00e7\u00f5es coletadas anteriormente, incluindo de sites e aplicativos, para criar ou editar um perfil de usu\u00e1rio para uso em publicidade personalizada.\n"},"4":{"id":4,"name":"Selecionar an\u00fancios personalizados","description":"Os an\u00fancios personalizados podem ser-lhe mostrados com base num perfil sobre si.","descriptionLegal":"Para selecionar an\u00fancios personalizados, os fornecedores podem:\n* Selecionar an\u00fancios personalizados com base num perfil de utilizador ou outros dados hist\u00f3ricos do utilizador, incluindo a atividade anterior do utilizador, interesses, visitas a sites ou aplica\u00e7\u00f5es, localiza\u00e7\u00e3o ou informa\u00e7\u00f5es demogr\u00e1ficas.\n"},"5":{"id":5,"name":"Criar um perfil de conte\u00fados personalizados","description":"Pode ser criado um perfil sobre si e os seus interesses para lhe mostrar conte\u00fados personalizados que s\u00e3o relevantes para si.","descriptionLegal":"Para criar um perfil de conte\u00fados personalizados, os fornecedores podem:\n* Recolher informa\u00e7\u00f5es sobre um utilizador, incluindo a atividade de um utilizador, interesses, visitas a sites ou aplica\u00e7\u00f5es, informa\u00e7\u00f5es demogr\u00e1ficas ou localiza\u00e7\u00e3o, para criar ou editar um perfil de utilizador para personalizar conte\u00fados.\n* Combine essas informa\u00e7\u00f5es com outras informa\u00e7\u00f5es coletadas anteriormente, incluindo de sites e aplicativos, para criar ou editar um perfil de usu\u00e1rio para uso na personaliza\u00e7\u00e3o de conte\u00fado."},"6":{"id":6,"name":"Selecionar conte\u00fados personalizados","description":"O conte\u00fado personalizado pode ser-lhe mostrado com base num perfil sobre si.","descriptionLegal":"Para selecionar conte\u00fados personalizados, os fornecedores podem:\n* Selecionar conte\u00fados personalizados com base num perfil de utilizador ou outros dados hist\u00f3ricos do utilizador, incluindo a atividade anterior do utilizador, interesses, visitas a sites ou aplica\u00e7\u00f5es, localiza\u00e7\u00e3o ou informa\u00e7\u00f5es demogr\u00e1ficas.\n"},"7":{"id":7,"name":"Medir o desempenho do an\u00fancio","description":"O desempenho e a efic\u00e1cia dos an\u00fancios que v\u00ea ou com os quais interage podem ser medidos.","descriptionLegal":"Para medir o desempenho do an\u00fancio, os fornecedores podem:\n* Medir se e como os an\u00fancios foram entregues e como \u00e9 que um utilizador interagiu com eles\n* Fornecer relat\u00f3rios sobre an\u00fancios, incluindo a sua efic\u00e1cia e desempenho\n* Fornecer relat\u00f3rios sobre utilizadores que interajam com an\u00fancios utilizando dados observados durante o curso da intera\u00e7\u00e3o do utilizador com esse an\u00fancio\n* Fornecer relat\u00f3rios aos editores sobre os an\u00fancios apresentados na sua propriedade\n* Medir se um an\u00fancio est\u00e1 a servir num contexto de ambiente editorial adequado (seguro para a marca)\n* Determinar a percentagem do an\u00fancio que teve oportunidade de ser vista e a dura\u00e7\u00e3o dessa oportunidade \nOs fornecedores n\u00e3o podem:\n* Aplicar dados de informa\u00e7\u00f5es sobre o p\u00fablico, obtidos atrav\u00e9s de pain\u00e9is ou de forma semelhante a dados de medi\u00e7\u00e3o de an\u00fancios sem um fundamento jur\u00eddico expl\u00edcito para a aplica\u00e7\u00e3o dos resultados das pesquisas de mercado, de forma a gerar perspetivas sobre o p\u00fablico.\n"},"8":{"id":8,"name":"Medir o desempenho dos conte\u00fados","description":"O desempenho e a efic\u00e1cia dos conte\u00fados que v\u00ea ou com os quais interage podem ser medidos.","descriptionLegal":"Para medir o desempenho dos conte\u00fados, os fornecedores podem:\n* Medir e comunicar como os conte\u00fados foram entregues e como os utilizadores interagiram com eles.\n* Fornecer relat\u00f3rios, utilizando informa\u00e7\u00f5es diretamente mensur\u00e1veis ou conhecidas, sobre utilizadores que interagiram com os conte\u00fados\nOs fornecedores n\u00e3o podem:\n* Medir se e como os an\u00fancios (incluindo an\u00fancios nativos) foram apresentados e como \u00e9 que o utilizador interagiu com eles.\n* Aplicar dados de informa\u00e7\u00f5es sobre o p\u00fablico-alvo obtidos a partir de pain\u00e9is ou de forma semelhante aos dados de medi\u00e7\u00e3o de an\u00fancios, sem um fundamento jur\u00eddico expl\u00edcito para a utiliza\u00e7\u00e3o dos dados de pesquisas de mercado, de forma a gerar perspetivas sobre o p\u00fablico.\n"},"9":{"id":9,"name":"Aplicar os resultados das pesquisas de mercado para gerar perspetivas sobre o p\u00fablico","description":"A pesquisa de mercado pode ser usada para saber mais sobre os p\u00fablicos que visitam sites/aplica\u00e7\u00f5es e veem an\u00fancios.","descriptionLegal":"Para aplicar os resultados das pesquisas de mercado para gerar perspetivas sobre o p\u00fablico, os fornecedores podem:\n* Fornecer relat\u00f3rios agregados aos anunciantes ou aos seus representantes sobre os p\u00fablicos alcan\u00e7ados pelos seus an\u00fancios, atrav\u00e9s de perspetivas baseadas em pain\u00e9is e de forma semelhante.\n* Fornecer relat\u00f3rios agregados aos editores sobre os p\u00fablicos que foram servidos ou que interagiram com conte\u00fados e/ou an\u00fancios sobre a sua propriedade, aplicando perspetivas baseadas em pain\u00e9is e de forma semelhante. \n* Associar dados offline a um utilizador online, para efeitos de pesquisa de mercado, de forma a gerar perspetivas sobre o p\u00fablico, se os fornecedores tiverem declarado comparar e combinar fontes de dados offline \nOs fornecedores n\u00e3o podem: \n* Medir o desempenho e a efic\u00e1cia dos an\u00fancios que um utilizador espec\u00edfico recebeu e como interagiu com eles, sem um fundamento jur\u00eddico expl\u00edcito para medir o desempenho do an\u00fancio.\n* Medir quais os conte\u00fados que um utilizador espec\u00edfico recebeu e como interagiu com eles, sem um fundamento jur\u00eddico expl\u00edcito para medir o desempenho dos conte\u00fados.\n"},"10":{"id":10,"name":"Desenvolver e melhorar produtos","description":"Os seus dados podem ser utilizados para melhorar os sistemas e o software existentes e para desenvolver novos produtos.","descriptionLegal":"Para desenvolver novos produtos e melhorar os produtos, os fornecedores podem:\n* Utilizar informa\u00e7\u00f5es para melhorar os seus produtos existentes com novas funcionalidades e desenvolver novos produtos\n* Criar novos modelos e algoritmos atrav\u00e9s de aprendizagem de m\u00e1quina\nOs fornecedores n\u00e3o podem:\n* Realizar qualquer outra opera\u00e7\u00e3o de processamento de dados permitida com um prop\u00f3sito diferente ao abrigo desta finalidade\n"}},"specialPurposes":{"1":{"id":1,"name":"Garantir a seguran\u00e7a, evitar a fraude e corrigir erros","description":"Os seus dados podem ser utilizados para monitorizar e prevenir atividades fraudulentas e garantir que os sistemas e processos funcionam de forma adequada e segura.","descriptionLegal":"Para garantir a seguran\u00e7a, evitar a fraude e corrigir erros, os fornecedores podem:\n* Certificar-se de que os dados s\u00e3o transmitidos de forma segura \n* Detetar e prevenir atividades maliciosas, fraudulentas, inv\u00e1lidas ou ilegais.\n* Assegurar o funcionamento correto e eficiente dos sistemas e processos, incluindo a monitoriza\u00e7\u00e3o e o melhoramento do desempenho dos sistemas e dos processos envolvidos nas finalidades permitidas\nOs fornecedores n\u00e3o podem:\n* Realizar qualquer outra opera\u00e7\u00e3o de processamento de dados permitida com um prop\u00f3sito diferente ao abrigo desta finalidade.\nNota: Os dados recolhidos e utilizados para garantir a seguran\u00e7a, prevenir a fraude e corrigir erros podem incluir caracter\u00edsticas do dispositivo enviadas automaticamente para identifica\u00e7\u00e3o, dados de geolocaliza\u00e7\u00e3o precisos e dados obtidos atrav\u00e9s da leitura ativa das caracter\u00edsticas do dispositivo, para identifica\u00e7\u00e3o sem um consentimento expl\u00edcito para a divulga\u00e7\u00e3o e/ou aceita\u00e7\u00e3o.\n"},"2":{"id":2,"name":"Apresentar an\u00fancios ou conte\u00fados tecnicamente","description":"O seu dispositivo pode receber e enviar informa\u00e7\u00f5es que lhe permitem ver e interagir com an\u00fancios e conte\u00fados.","descriptionLegal":"Para fornecer informa\u00e7\u00f5es e responder a pedidos t\u00e9cnicos, os fornecedores podem:\n* Utilizar o endere\u00e7o IP de um utilizador para fornecer um an\u00fancio atrav\u00e9s da Internet\n* Responder \u00e0 intera\u00e7\u00e3o de um utilizador com um an\u00fancio, enviando o utilizador para uma p\u00e1gina de destino\n* Utilizar o endere\u00e7o IP de um utilizador para fornecer conte\u00fados atrav\u00e9s da Internet\n* Responder \u00e0 intera\u00e7\u00e3o de um utilizador com conte\u00fados enviando o utilizador para uma p\u00e1gina de destino\n* Utilizar informa\u00e7\u00f5es sobre o tipo de dispositivo e capacidades para fornecer an\u00fancios ou conte\u00fados, por exemplo, para fornecer o an\u00fancio criativo ou o ficheiro de v\u00eddeo de tamanho adequado num formato suportado pelo dispositivo\nOs fornecedores n\u00e3o podem:\n* Realizar qualquer outra opera\u00e7\u00e3o de processamento de dados permitida com um prop\u00f3sito diferente ao abrigo desta finalidade\n"}},"features":{"1":{"id":1,"name":"Comparar e combinar fontes de dados offline","description":"Os dados de fontes de dados offline podem ser combinados com a sua atividade online para apoio a uma ou mais finalidades.","descriptionLegal":"Os fornecedores podem: \n* Combinar os dados obtidos offline com dados recolhidos online, para apoio a uma ou mais Finalidades ou Finalidades especiais.\n"},"2":{"id":2,"name":"Ligar dispositivos diferentes","description":"Dispositivos diferentes podem ser determinados como pertencendo a si ou ao seu agregado familiar para apoiar uma ou mais finalidades.","descriptionLegal":"Os fornecedores podem:\n* Determinar deterministicamente que dois ou mais dispositivos pertencem ao mesmo utilizador ou agregado familiar\n* Determinar objetivamente que dois ou mais dispositivos pertencem ao mesmo utilizador ou agregado familiar\n* Procurar ativamente as caracter\u00edsticas do dispositivo em termos de identifica\u00e7\u00e3o para identifica\u00e7\u00e3o probabil\u00edstica se os utilizadores permitirem que os fornecedores procurem ativamente as caracter\u00edsticas do dispositivo para identifica\u00e7\u00e3o\n"},"3":{"id":3,"name":"Receber e utilizar as caracter\u00edsticas do dispositivo enviadas automaticamente para identifica\u00e7\u00e3o","description":"\u00c9 poss\u00edvel distinguir o seu dispositivo de outros dispositivos, com base nas informa\u00e7\u00f5es que envia automaticamente, tais como o endere\u00e7o IP ou o tipo de navegador.","descriptionLegal":"Os fornecedores podem:\n* Criar um identificador utilizando os dados recolhidos automaticamente a partir de um dispositivo para obter caracter\u00edsticas espec\u00edficas, p. ex., endere\u00e7o IP, sequ\u00eancia do agente do utilizador.\n* Utilizar o identificador para tentar reidentificar um dispositivo.\nOs fornecedores n\u00e3o podem:\n* Criar um identificador utilizando dados recolhidos atrav\u00e9s da leitura ativa de um dispositivo, para obter caracter\u00edsticas espec\u00edficas, p. ex., tipos de letra instalados ou resolu\u00e7\u00e3o de ecr\u00e3 sem uma autoriza\u00e7\u00e3o expl\u00edcita do utilizador para a leitura ativa das caracter\u00edsticas do dispositivo, para fins de identifica\u00e7\u00e3o.\n* Utilizar um identificador para identificar novamente um dispositivo.\n"}},"specialFeatures":{"1":{"id":1,"name":"Utilizar dados de geolocaliza\u00e7\u00e3o precisos","description":"Os seus dados de geolocaliza\u00e7\u00e3o precisa podem ser utilizados para apoiar uma ou mais finalidades. Isto significa que a sua localiza\u00e7\u00e3o pode ser precisa at\u00e9 alguns metros.","descriptionLegal":"Os fornecedores podem:\n* Recolher e processar dados exatos de geolocaliza\u00e7\u00e3o, para apoiar uma ou mais finalidades.\nN.B. Geolocaliza\u00e7\u00e3o precisa significa que n\u00e3o existem restri\u00e7\u00f5es na precis\u00e3o da localiza\u00e7\u00e3o de um utilizador; isto pode ser preciso at\u00e9 alguns metros.\n"},"2":{"id":2,"name":"Procurar ativamente as caracter\u00edsticas do dispositivo para identifica\u00e7\u00e3o","description":"O seu dispositivo pode ser identificado com base na respetiva leitura da combina\u00e7\u00e3o \u00fanica de caracter\u00edsticas.","descriptionLegal":"Os fornecedores podem:\n* Criar um identificador utilizando dados recolhidos atrav\u00e9s da leitura ativa de um dispositivo para caracter\u00edsticas espec\u00edficas, por exemplo, tipos de letra instalados ou resolu\u00e7\u00e3o de ecr\u00e3. \n* Utilizar um identificador para identificar novamente um dispositivo.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Dados de geolocaliza\u00e7\u00e3o precisos e identifica\u00e7\u00e3o atrav\u00e9s da procura de dispositivos","description":"Podem ser utilizados dados de geolocaliza\u00e7\u00e3o precisos e as informa\u00e7\u00f5es sobre as caracter\u00edsticas do dispositivo."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"An\u00fancios b\u00e1sicos e medi\u00e7\u00e3o de an\u00fancios","description":"Podem ser fornecidos an\u00fancios b\u00e1sicos. O desempenho dos an\u00fancios pode ser medido."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"An\u00fancios personalizados","description":"Os an\u00fancios podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os an\u00fancios."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"An\u00fancios b\u00e1sicos e medi\u00e7\u00e3o de an\u00fancios","description":"Podem ser fornecidos an\u00fancios b\u00e1sicos. O desempenho dos an\u00fancios pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"An\u00fancios b\u00e1sicos, perfil de an\u00fancios personalizados e medi\u00e7\u00e3o de an\u00fancios","description":"Podem ser fornecidos an\u00fancios b\u00e1sicos. Podem ser adicionados mais dados para personalizar melhor os an\u00fancios. O desempenho dos an\u00fancios pode ser medido."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Apresenta\u00e7\u00e3o personalizada de an\u00fancios e medi\u00e7\u00e3o","description":"Os an\u00fancios podem ser personalizados com base num perfil. O desempenho dos an\u00fancios pode ser medido."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Apresenta\u00e7\u00e3o personalizada de an\u00fancios, medi\u00e7\u00e3o de an\u00fancios e perspetivas sobre o p\u00fablico","description":"Os an\u00fancios podem ser personalizados com base num perfil. O desempenho dos an\u00fancios pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"An\u00fancios personalizados e medi\u00e7\u00e3o de an\u00fancios","description":"Os an\u00fancios podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os an\u00fancios. O desempenho dos an\u00fancios pode ser medido."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"An\u00fancios personalizados, medi\u00e7\u00e3o de an\u00fancios e perspetivas sobre o p\u00fablico","description":"Os an\u00fancios podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os an\u00fancios. O desempenho dos an\u00fancios pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Perfil de an\u00fancios personalizados e apresenta\u00e7\u00e3o","description":"Os an\u00fancios podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os an\u00fancios."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Conte\u00fados personalizados","description":"Os conte\u00fados podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os conte\u00fados."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Apresenta\u00e7\u00e3o de conte\u00fados personalizados e medi\u00e7\u00e3o de conte\u00fados","description":"Os conte\u00fados podem ser personalizados com base num perfil. O desempenho dos conte\u00fados pode ser medido."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Apresenta\u00e7\u00e3o de conte\u00fados personalizados, medi\u00e7\u00e3o de conte\u00fados e perspetivas sobre o p\u00fablico","description":"Os conte\u00fados podem ser personalizados com base num perfil. O desempenho dos conte\u00fados pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Conte\u00fados personalizados e medi\u00e7\u00e3o de conte\u00fados","description":"Os conte\u00fados podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os conte\u00fados. O desempenho dos conte\u00fados pode ser medido."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Conte\u00fados personalizados, medi\u00e7\u00e3o de conte\u00fados e perspetivas sobre o p\u00fablico","description":"Os conte\u00fados podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os conte\u00fados. O desempenho dos conte\u00fados pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Conte\u00fados personalizados, medi\u00e7\u00e3o de conte\u00fados, perspetivas sobre o p\u00fablico e desenvolvimento de produtos","description":"Os conte\u00fados podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os conte\u00fados. O desempenho dos conte\u00fados pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas. Os dados podem ser utilizados para criar ou melhorar a experi\u00eancia do utilizador, sistemas e software"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Medi\u00e7\u00e3o de an\u00fancios e conte\u00fados e perspetivas sobre o p\u00fablico","description":"O desempenho dos an\u00fancios e dos conte\u00fados pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Medi\u00e7\u00e3o de an\u00fancios e conte\u00fados","description":"O desempenho dos an\u00fancios e dos conte\u00fados pode ser medido."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Medi\u00e7\u00e3o de an\u00fancios e perspetivas sobre o p\u00fablico","description":"O an\u00fancio pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Medi\u00e7\u00e3o de an\u00fancios e conte\u00fados, perspetivas sobre o p\u00fablico e desenvolvimento de produtos","description":"O desempenho dos an\u00fancios e dos conte\u00fados pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas. Os dados podem ser utilizados para criar ou melhorar a experi\u00eancia do utilizador, sistemas e software. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Medi\u00e7\u00e3o de conte\u00fados, perspetivas sobre o p\u00fablico e desenvolvimento de produtos.","description":"O desempenho dos conte\u00fados pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas. Os dados podem ser utilizados para criar ou melhorar a experi\u00eancia do utilizador, sistemas e software."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Medi\u00e7\u00e3o de conte\u00fados e desenvolvimento de produtos","description":"O desempenho dos conte\u00fados pode ser medido. Os dados podem ser utilizados para criar ou melhorar a experi\u00eancia do utilizador, sistemas e software."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"An\u00fancios personalizados e apresenta\u00e7\u00e3o de conte\u00fados, medi\u00e7\u00e3o de an\u00fancios e conte\u00fados","description":"Os an\u00fancios e os conte\u00fados podem ser personalizados com base num perfil. O desempenho dos an\u00fancios e dos conte\u00fados pode ser medido."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"An\u00fancios personalizados e apresenta\u00e7\u00e3o de conte\u00fados, medi\u00e7\u00e3o de an\u00fancios e conte\u00fados e perspetivas sobre o p\u00fablico","description":"Os an\u00fancios e os conte\u00fados podem ser personalizados com base num perfil. O desempenho dos an\u00fancios e dos conte\u00fados pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas. Os dados podem ser utilizados para criar ou melhorar a experi\u00eancia do utilizador, sistemas e software."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"An\u00fancios e conte\u00fados personalizados, medi\u00e7\u00e3o de an\u00fancios e conte\u00fados","description":"Os an\u00fancios e os conte\u00fados podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os an\u00fancios e os conte\u00fados. O desempenho dos an\u00fancios e dos conte\u00fados pode ser medido."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"An\u00fancios e conte\u00fados personalizados, medi\u00e7\u00e3o de an\u00fancios e conte\u00fados e perspetivas sobre o p\u00fablico","description":"Os an\u00fancios e os conte\u00fados podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os an\u00fancios e os conte\u00fados. O desempenho dos an\u00fancios e dos conte\u00fados pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"An\u00fancios personalizados e perfil de conte\u00fados","description":"Podem ser adicionados mais dados para personalizar os an\u00fancios e os conte\u00fados."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"An\u00fancios personalizados e apresenta\u00e7\u00e3o de conte\u00fados","description":"Os an\u00fancios e os conte\u00fados podem ser personalizados com base num perfil."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"An\u00fancios b\u00e1sicos, medi\u00e7\u00e3o de an\u00fancios e conte\u00fados e perspetivas sobre o p\u00fablico","description":"Podem ser fornecidos an\u00fancios b\u00e1sicos. O desempenho dos an\u00fancios e dos conte\u00fados pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Apresenta\u00e7\u00e3o personalizada de an\u00fancios, conte\u00fados personalizados medi\u00e7\u00e3o de an\u00fancios e conte\u00fados e perspetivas sobre o p\u00fablico","description":"Os an\u00fancios e os conte\u00fados podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os conte\u00fados. O desempenho dos an\u00fancios e dos conte\u00fados pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Apresenta\u00e7\u00e3o personalizada de an\u00fancios, conte\u00fados personalizados, medi\u00e7\u00e3o de an\u00fancios e conte\u00fados, perspetivas sobre o p\u00fablico e desenvolvimento de produtos","description":"Os an\u00fancios e os conte\u00fados podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os conte\u00fados. O desempenho dos an\u00fancios e dos conte\u00fados pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas. Os dados podem ser utilizados para criar ou melhorar a experi\u00eancia do utilizador, sistemas e software."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"An\u00fancios b\u00e1sicos, conte\u00fados personalizados, medi\u00e7\u00e3o de an\u00fancios e conte\u00fados e perspetivas sobre o p\u00fablico","description":"Podem ser fornecidos an\u00fancios b\u00e1sicos. Os conte\u00fados podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os conte\u00fados. O desempenho dos an\u00fancios e dos conte\u00fados pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"An\u00fancios b\u00e1sicos, conte\u00fados personalizados, medi\u00e7\u00e3o de an\u00fancios e conte\u00fados, perspetivas sobre o p\u00fablico e desenvolvimento de produtos","description":"Podem ser fornecidos an\u00fancios b\u00e1sicos. Os conte\u00fados podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os conte\u00fados. O desempenho dos an\u00fancios e dos conte\u00fados pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas. Os dados podem ser utilizados para criar ou melhorar a experi\u00eancia do utilizador, sistemas e software."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"An\u00fancios b\u00e1sicos, conte\u00fados personalizados, medi\u00e7\u00e3o de conte\u00fados e perspetivas sobre o p\u00fablico","description":"Podem ser fornecidos an\u00fancios b\u00e1sicos. Os conte\u00fados podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os conte\u00fados. O desempenho dos an\u00fancios e dos conte\u00fados pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"An\u00fancios b\u00e1sicos, conte\u00fado personalizado, medi\u00e7\u00e3o de conte\u00fados, perspetivas sobre o p\u00fablico e desenvolvimento de produtos","description":"Podem ser fornecidos an\u00fancios b\u00e1sicos. Os conte\u00fados podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os conte\u00fados. O desempenho dos conte\u00fados pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas. Os dados podem ser utilizados para criar ou melhorar a experi\u00eancia do utilizador, sistemas e software."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"An\u00fancios b\u00e1sicos, conte\u00fado personalizado e medi\u00e7\u00e3o de an\u00fancios","description":"Podem ser fornecidos an\u00fancios b\u00e1sicos. Os conte\u00fados podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os conte\u00fados. O desempenho dos an\u00fancios pode ser medido."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"An\u00fancios b\u00e1sicos, conte\u00fados personalizados, medi\u00e7\u00e3o de an\u00fancios e desenvolvimento de produtos","description":"Podem ser fornecidos an\u00fancios b\u00e1sicos. Os conte\u00fados podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os conte\u00fados. O desempenho dos an\u00fancios pode ser medido. Os dados podem ser utilizados para criar ou melhorar a experi\u00eancia do utilizador, sistemas e software."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"An\u00fancios personalizados, medi\u00e7\u00e3o de an\u00fancios e desenvolvimento de produtos","description":"Os an\u00fancios podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os an\u00fancios. O desempenho dos an\u00fancios pode ser medido. Os dados podem ser utilizados para criar ou melhorar a experi\u00eancia do utilizador, sistemas e software."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"An\u00fancios personalizados, medi\u00e7\u00e3o de an\u00fancios, perspetivas sobre o p\u00fablico e desenvolvimento de produtos","description":"Os an\u00fancios podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os an\u00fancios. O desempenho dos an\u00fancios pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas. Os dados podem ser utilizados para criar ou melhorar a experi\u00eancia do utilizador, sistemas e software."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"An\u00fancios personalizados, medi\u00e7\u00e3o de an\u00fancios e de conte\u00fado, perspetivas sobre o p\u00fablico e desenvolvimento de produtos","description":"Os an\u00fancios podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os an\u00fancios. O desempenho dos an\u00fancios e dos conte\u00fados pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas. Os dados podem ser utilizados para criar ou melhorar a experi\u00eancia do utilizador, sistemas e software."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"An\u00fancios personalizados, apresenta\u00e7\u00e3o personalizada de conte\u00fados, medi\u00e7\u00e3o de an\u00fancios e conte\u00fados, perspetivas sobre o p\u00fablico e desenvolvimento de produtos","description":"Os an\u00fancios e os conte\u00fados podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os an\u00fancios. O desempenho dos an\u00fancios e dos conte\u00fados pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas. Os dados podem ser utilizados para criar ou melhorar a experi\u00eancia do utilizador, sistemas e software."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"An\u00fancios e conte\u00fados personalizados, medi\u00e7\u00e3o de an\u00fancios e conte\u00fados, perspetivas sobre o p\u00fablico e desenvolvimento de produtos","description":"Os an\u00fancios e os conte\u00fados podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os an\u00fancios e os conte\u00fados. O desempenho dos an\u00fancios e dos conte\u00fados pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas. Os dados podem ser utilizados para criar ou melhorar a experi\u00eancia do utilizador, sistemas e software."}}} \ No newline at end of file +{"vendorListVersion":94,"lastUpdated":"2021-06-10T16:44:03Z","purposes":{"1":{"id":1,"name":"Armazenar e/ou aceder a informa\u00e7\u00f5es num dispositivo","description":"Os cookies, identificadores de dispositivos ou outras informa\u00e7\u00f5es podem ser armazenados ou acedidos no seu dispositivo para os fins que lhe s\u00e3o apresentados.","descriptionLegal":"Os fornecedores podem:\n* Guardar e aceder a informa\u00e7\u00f5es no dispositivo, tais como cookies e identificadores de dispositivos apresentados a um utilizador.\n"},"2":{"id":2,"name":"Selecionar an\u00fancios b\u00e1sicos","description":"Os an\u00fancios podem ser-lhe apresentados com base nos conte\u00fados que est\u00e1 a visualizar, na aplica\u00e7\u00e3o que est\u00e1 a utilizar, na sua localiza\u00e7\u00e3o aproximada ou no seu tipo de dispositivo.","descriptionLegal":"Para fazer uma sele\u00e7\u00e3o b\u00e1sica de an\u00fancios, os fornecedores podem:\n* Utilizar informa\u00e7\u00f5es em tempo real sobre o contexto no qual o an\u00fancio ser\u00e1 mostrado, para mostrar o an\u00fancio, incluindo informa\u00e7\u00f5es sobre os conte\u00fados e o dispositivo, tais como: tipo e capacidades do dispositivo, agente de utilizador, URL, endere\u00e7o IP \n* Utilizar os dados de geolocaliza\u00e7\u00e3o n\u00e3o precisos de um utilizador\n* Controlar a frequ\u00eancia dos an\u00fancios apresentados a um utilizador.\n* Escolher a ordem pela qual os an\u00fancios s\u00e3o mostrados a um utilizador.\n* Evitar que um an\u00fancio sirva num contexto editorial inadequado (n\u00e3o seguro para a marca)\nOs fornecedores n\u00e3o podem:\n* Criar um perfil de an\u00fancios personalizados com base nesta informa\u00e7\u00e3o com o intuito de, sem uma base jur\u00eddica distinta, selecionar an\u00fancios futuros para criar um perfil de an\u00fancios personalizados.\nN.B. N\u00e3o precisos significa que apenas \u00e9 permitida uma localiza\u00e7\u00e3o aproximada que envolva, pelo menos, um raio de 500 metros.\n"},"3":{"id":3,"name":"Criar um perfil de an\u00fancios personalizados","description":"Pode ser criado um perfil sobre si e os seus interesses para lhe mostrar an\u00fancios personalizados que s\u00e3o relevantes para si.","descriptionLegal":"Para criar um perfil de an\u00fancios personalizados, os fornecedores podem:\n* Recolher informa\u00e7\u00f5es sobre um utilizador, incluindo a atividade de um utilizador, os seus interesses, visitas a sites ou aplica\u00e7\u00f5es, informa\u00e7\u00f5es demogr\u00e1ficas ou localiza\u00e7\u00e3o, para criar ou editar um perfil de utilizador para utiliza\u00e7\u00e3o em publicidade personalizada.\n* Combine essas informa\u00e7\u00f5es com outras informa\u00e7\u00f5es coletadas anteriormente, incluindo de sites e aplicativos, para criar ou editar um perfil de usu\u00e1rio para uso em publicidade personalizada.\n"},"4":{"id":4,"name":"Selecionar an\u00fancios personalizados","description":"Os an\u00fancios personalizados podem ser-lhe mostrados com base num perfil sobre si.","descriptionLegal":"Para selecionar an\u00fancios personalizados, os fornecedores podem:\n* Selecionar an\u00fancios personalizados com base num perfil de utilizador ou outros dados hist\u00f3ricos do utilizador, incluindo a atividade anterior do utilizador, interesses, visitas a sites ou aplica\u00e7\u00f5es, localiza\u00e7\u00e3o ou informa\u00e7\u00f5es demogr\u00e1ficas.\n"},"5":{"id":5,"name":"Criar um perfil de conte\u00fados personalizados","description":"Pode ser criado um perfil sobre si e os seus interesses para lhe mostrar conte\u00fados personalizados que s\u00e3o relevantes para si.","descriptionLegal":"Para criar um perfil de conte\u00fados personalizados, os fornecedores podem:\n* Recolher informa\u00e7\u00f5es sobre um utilizador, incluindo a atividade de um utilizador, interesses, visitas a sites ou aplica\u00e7\u00f5es, informa\u00e7\u00f5es demogr\u00e1ficas ou localiza\u00e7\u00e3o, para criar ou editar um perfil de utilizador para personalizar conte\u00fados.\n* Combine essas informa\u00e7\u00f5es com outras informa\u00e7\u00f5es coletadas anteriormente, incluindo de sites e aplicativos, para criar ou editar um perfil de usu\u00e1rio para uso na personaliza\u00e7\u00e3o de conte\u00fado."},"6":{"id":6,"name":"Selecionar conte\u00fados personalizados","description":"O conte\u00fado personalizado pode ser-lhe mostrado com base num perfil sobre si.","descriptionLegal":"Para selecionar conte\u00fados personalizados, os fornecedores podem:\n* Selecionar conte\u00fados personalizados com base num perfil de utilizador ou outros dados hist\u00f3ricos do utilizador, incluindo a atividade anterior do utilizador, interesses, visitas a sites ou aplica\u00e7\u00f5es, localiza\u00e7\u00e3o ou informa\u00e7\u00f5es demogr\u00e1ficas.\n"},"7":{"id":7,"name":"Medir o desempenho do an\u00fancio","description":"O desempenho e a efic\u00e1cia dos an\u00fancios que v\u00ea ou com os quais interage podem ser medidos.","descriptionLegal":"Para medir o desempenho do an\u00fancio, os fornecedores podem:\n* Medir se e como os an\u00fancios foram entregues e como \u00e9 que um utilizador interagiu com eles\n* Fornecer relat\u00f3rios sobre an\u00fancios, incluindo a sua efic\u00e1cia e desempenho\n* Fornecer relat\u00f3rios sobre utilizadores que interajam com an\u00fancios utilizando dados observados durante o curso da intera\u00e7\u00e3o do utilizador com esse an\u00fancio\n* Fornecer relat\u00f3rios aos editores sobre os an\u00fancios apresentados na sua propriedade\n* Medir se um an\u00fancio est\u00e1 a servir num contexto de ambiente editorial adequado (seguro para a marca)\n* Determinar a percentagem do an\u00fancio que teve oportunidade de ser vista e a dura\u00e7\u00e3o dessa oportunidade \nOs fornecedores n\u00e3o podem:\n* Aplicar dados de informa\u00e7\u00f5es sobre o p\u00fablico, obtidos atrav\u00e9s de pain\u00e9is ou de forma semelhante a dados de medi\u00e7\u00e3o de an\u00fancios sem um fundamento jur\u00eddico expl\u00edcito para a aplica\u00e7\u00e3o dos resultados das pesquisas de mercado, de forma a gerar perspetivas sobre o p\u00fablico.\n"},"8":{"id":8,"name":"Medir o desempenho dos conte\u00fados","description":"O desempenho e a efic\u00e1cia dos conte\u00fados que v\u00ea ou com os quais interage podem ser medidos.","descriptionLegal":"Para medir o desempenho dos conte\u00fados, os fornecedores podem:\n* Medir e comunicar como os conte\u00fados foram entregues e como os utilizadores interagiram com eles.\n* Fornecer relat\u00f3rios, utilizando informa\u00e7\u00f5es diretamente mensur\u00e1veis ou conhecidas, sobre utilizadores que interagiram com os conte\u00fados\nOs fornecedores n\u00e3o podem:\n* Medir se e como os an\u00fancios (incluindo an\u00fancios nativos) foram apresentados e como \u00e9 que o utilizador interagiu com eles.\n* Aplicar dados de informa\u00e7\u00f5es sobre o p\u00fablico-alvo obtidos a partir de pain\u00e9is ou de forma semelhante aos dados de medi\u00e7\u00e3o de an\u00fancios, sem um fundamento jur\u00eddico expl\u00edcito para a utiliza\u00e7\u00e3o dos dados de pesquisas de mercado, de forma a gerar perspetivas sobre o p\u00fablico.\n"},"9":{"id":9,"name":"Aplicar os resultados das pesquisas de mercado para gerar perspetivas sobre o p\u00fablico","description":"A pesquisa de mercado pode ser usada para saber mais sobre os p\u00fablicos que visitam sites/aplica\u00e7\u00f5es e veem an\u00fancios.","descriptionLegal":"Para aplicar os resultados das pesquisas de mercado para gerar perspetivas sobre o p\u00fablico, os fornecedores podem:\n* Fornecer relat\u00f3rios agregados aos anunciantes ou aos seus representantes sobre os p\u00fablicos alcan\u00e7ados pelos seus an\u00fancios, atrav\u00e9s de perspetivas baseadas em pain\u00e9is e de forma semelhante.\n* Fornecer relat\u00f3rios agregados aos editores sobre os p\u00fablicos que foram servidos ou que interagiram com conte\u00fados e/ou an\u00fancios sobre a sua propriedade, aplicando perspetivas baseadas em pain\u00e9is e de forma semelhante. \n* Associar dados offline a um utilizador online, para efeitos de pesquisa de mercado, de forma a gerar perspetivas sobre o p\u00fablico, se os fornecedores tiverem declarado comparar e combinar fontes de dados offline \nOs fornecedores n\u00e3o podem: \n* Medir o desempenho e a efic\u00e1cia dos an\u00fancios que um utilizador espec\u00edfico recebeu e como interagiu com eles, sem um fundamento jur\u00eddico expl\u00edcito para medir o desempenho do an\u00fancio.\n* Medir quais os conte\u00fados que um utilizador espec\u00edfico recebeu e como interagiu com eles, sem um fundamento jur\u00eddico expl\u00edcito para medir o desempenho dos conte\u00fados.\n"},"10":{"id":10,"name":"Desenvolver e melhorar produtos","description":"Os seus dados podem ser utilizados para melhorar os sistemas e o software existentes e para desenvolver novos produtos.","descriptionLegal":"Para desenvolver novos produtos e melhorar os produtos, os fornecedores podem:\n* Utilizar informa\u00e7\u00f5es para melhorar os seus produtos existentes com novas funcionalidades e desenvolver novos produtos\n* Criar novos modelos e algoritmos atrav\u00e9s de aprendizagem de m\u00e1quina\nOs fornecedores n\u00e3o podem:\n* Realizar qualquer outra opera\u00e7\u00e3o de processamento de dados permitida com um prop\u00f3sito diferente ao abrigo desta finalidade\n"}},"specialPurposes":{"1":{"id":1,"name":"Garantir a seguran\u00e7a, evitar a fraude e corrigir erros","description":"Os seus dados podem ser utilizados para monitorizar e prevenir atividades fraudulentas e garantir que os sistemas e processos funcionam de forma adequada e segura.","descriptionLegal":"Para garantir a seguran\u00e7a, evitar a fraude e corrigir erros, os fornecedores podem:\n* Certificar-se de que os dados s\u00e3o transmitidos de forma segura \n* Detetar e prevenir atividades maliciosas, fraudulentas, inv\u00e1lidas ou ilegais.\n* Assegurar o funcionamento correto e eficiente dos sistemas e processos, incluindo a monitoriza\u00e7\u00e3o e o melhoramento do desempenho dos sistemas e dos processos envolvidos nas finalidades permitidas\nOs fornecedores n\u00e3o podem:\n* Realizar qualquer outra opera\u00e7\u00e3o de processamento de dados permitida com um prop\u00f3sito diferente ao abrigo desta finalidade.\nNota: Os dados recolhidos e utilizados para garantir a seguran\u00e7a, prevenir a fraude e corrigir erros podem incluir caracter\u00edsticas do dispositivo enviadas automaticamente para identifica\u00e7\u00e3o, dados de geolocaliza\u00e7\u00e3o precisos e dados obtidos atrav\u00e9s da leitura ativa das caracter\u00edsticas do dispositivo, para identifica\u00e7\u00e3o sem um consentimento expl\u00edcito para a divulga\u00e7\u00e3o e/ou aceita\u00e7\u00e3o.\n"},"2":{"id":2,"name":"Apresentar an\u00fancios ou conte\u00fados tecnicamente","description":"O seu dispositivo pode receber e enviar informa\u00e7\u00f5es que lhe permitem ver e interagir com an\u00fancios e conte\u00fados.","descriptionLegal":"Para fornecer informa\u00e7\u00f5es e responder a pedidos t\u00e9cnicos, os fornecedores podem:\n* Utilizar o endere\u00e7o IP de um utilizador para fornecer um an\u00fancio atrav\u00e9s da Internet\n* Responder \u00e0 intera\u00e7\u00e3o de um utilizador com um an\u00fancio, enviando o utilizador para uma p\u00e1gina de destino\n* Utilizar o endere\u00e7o IP de um utilizador para fornecer conte\u00fados atrav\u00e9s da Internet\n* Responder \u00e0 intera\u00e7\u00e3o de um utilizador com conte\u00fados enviando o utilizador para uma p\u00e1gina de destino\n* Utilizar informa\u00e7\u00f5es sobre o tipo de dispositivo e capacidades para fornecer an\u00fancios ou conte\u00fados, por exemplo, para fornecer o an\u00fancio criativo ou o ficheiro de v\u00eddeo de tamanho adequado num formato suportado pelo dispositivo\nOs fornecedores n\u00e3o podem:\n* Realizar qualquer outra opera\u00e7\u00e3o de processamento de dados permitida com um prop\u00f3sito diferente ao abrigo desta finalidade\n"}},"features":{"1":{"id":1,"name":"Comparar e combinar fontes de dados offline","description":"Os dados de fontes de dados offline podem ser combinados com a sua atividade online para apoio a uma ou mais finalidades.","descriptionLegal":"Os fornecedores podem: \n* Combinar os dados obtidos offline com dados recolhidos online, para apoio a uma ou mais Finalidades ou Finalidades especiais.\n"},"2":{"id":2,"name":"Ligar dispositivos diferentes","description":"Dispositivos diferentes podem ser determinados como pertencendo a si ou ao seu agregado familiar para apoiar uma ou mais finalidades.","descriptionLegal":"Os fornecedores podem:\n* Determinar deterministicamente que dois ou mais dispositivos pertencem ao mesmo utilizador ou agregado familiar\n* Determinar objetivamente que dois ou mais dispositivos pertencem ao mesmo utilizador ou agregado familiar\n* Procurar ativamente as caracter\u00edsticas do dispositivo em termos de identifica\u00e7\u00e3o para identifica\u00e7\u00e3o probabil\u00edstica se os utilizadores permitirem que os fornecedores procurem ativamente as caracter\u00edsticas do dispositivo para identifica\u00e7\u00e3o\n"},"3":{"id":3,"name":"Receber e utilizar as caracter\u00edsticas do dispositivo enviadas automaticamente para identifica\u00e7\u00e3o","description":"\u00c9 poss\u00edvel distinguir o seu dispositivo de outros dispositivos, com base nas informa\u00e7\u00f5es que envia automaticamente, tais como o endere\u00e7o IP ou o tipo de navegador.","descriptionLegal":"Os fornecedores podem:\n* Criar um identificador utilizando os dados recolhidos automaticamente a partir de um dispositivo para obter caracter\u00edsticas espec\u00edficas, p. ex., endere\u00e7o IP, sequ\u00eancia do agente do utilizador.\n* Utilizar o identificador para tentar reidentificar um dispositivo.\nOs fornecedores n\u00e3o podem:\n* Criar um identificador utilizando dados recolhidos atrav\u00e9s da leitura ativa de um dispositivo, para obter caracter\u00edsticas espec\u00edficas, p. ex., tipos de letra instalados ou resolu\u00e7\u00e3o de ecr\u00e3 sem uma autoriza\u00e7\u00e3o expl\u00edcita do utilizador para a leitura ativa das caracter\u00edsticas do dispositivo, para fins de identifica\u00e7\u00e3o.\n* Utilizar um identificador para identificar novamente um dispositivo.\n"}},"specialFeatures":{"1":{"id":1,"name":"Utilizar dados de geolocaliza\u00e7\u00e3o precisos","description":"Os seus dados de geolocaliza\u00e7\u00e3o precisa podem ser utilizados para apoiar uma ou mais finalidades. Isto significa que a sua localiza\u00e7\u00e3o pode ser precisa at\u00e9 alguns metros.","descriptionLegal":"Os fornecedores podem:\n* Recolher e processar dados exatos de geolocaliza\u00e7\u00e3o, para apoiar uma ou mais finalidades.\nN.B. Geolocaliza\u00e7\u00e3o precisa significa que n\u00e3o existem restri\u00e7\u00f5es na precis\u00e3o da localiza\u00e7\u00e3o de um utilizador; isto pode ser preciso at\u00e9 alguns metros.\n"},"2":{"id":2,"name":"Procurar ativamente as caracter\u00edsticas do dispositivo para identifica\u00e7\u00e3o","description":"O seu dispositivo pode ser identificado com base na respetiva leitura da combina\u00e7\u00e3o \u00fanica de caracter\u00edsticas.","descriptionLegal":"Os fornecedores podem:\n* Criar um identificador utilizando dados recolhidos atrav\u00e9s da leitura ativa de um dispositivo para caracter\u00edsticas espec\u00edficas, por exemplo, tipos de letra instalados ou resolu\u00e7\u00e3o de ecr\u00e3. \n* Utilizar um identificador para identificar novamente um dispositivo.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Dados de geolocaliza\u00e7\u00e3o precisos e identifica\u00e7\u00e3o atrav\u00e9s da procura de dispositivos","description":"Podem ser utilizados dados de geolocaliza\u00e7\u00e3o precisos e as informa\u00e7\u00f5es sobre as caracter\u00edsticas do dispositivo."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"An\u00fancios b\u00e1sicos e medi\u00e7\u00e3o de an\u00fancios","description":"Podem ser fornecidos an\u00fancios b\u00e1sicos. O desempenho dos an\u00fancios pode ser medido."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"An\u00fancios personalizados","description":"Os an\u00fancios podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os an\u00fancios."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"An\u00fancios b\u00e1sicos e medi\u00e7\u00e3o de an\u00fancios","description":"Podem ser fornecidos an\u00fancios b\u00e1sicos. O desempenho dos an\u00fancios pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"An\u00fancios b\u00e1sicos, perfil de an\u00fancios personalizados e medi\u00e7\u00e3o de an\u00fancios","description":"Podem ser fornecidos an\u00fancios b\u00e1sicos. Podem ser adicionados mais dados para personalizar melhor os an\u00fancios. O desempenho dos an\u00fancios pode ser medido."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Apresenta\u00e7\u00e3o personalizada de an\u00fancios e medi\u00e7\u00e3o","description":"Os an\u00fancios podem ser personalizados com base num perfil. O desempenho dos an\u00fancios pode ser medido."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Apresenta\u00e7\u00e3o personalizada de an\u00fancios, medi\u00e7\u00e3o de an\u00fancios e perspetivas sobre o p\u00fablico","description":"Os an\u00fancios podem ser personalizados com base num perfil. O desempenho dos an\u00fancios pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"An\u00fancios personalizados e medi\u00e7\u00e3o de an\u00fancios","description":"Os an\u00fancios podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os an\u00fancios. O desempenho dos an\u00fancios pode ser medido."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"An\u00fancios personalizados, medi\u00e7\u00e3o de an\u00fancios e perspetivas sobre o p\u00fablico","description":"Os an\u00fancios podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os an\u00fancios. O desempenho dos an\u00fancios pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Perfil de an\u00fancios personalizados e apresenta\u00e7\u00e3o","description":"Os an\u00fancios podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os an\u00fancios."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Conte\u00fados personalizados","description":"Os conte\u00fados podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os conte\u00fados."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Apresenta\u00e7\u00e3o de conte\u00fados personalizados e medi\u00e7\u00e3o de conte\u00fados","description":"Os conte\u00fados podem ser personalizados com base num perfil. O desempenho dos conte\u00fados pode ser medido."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Apresenta\u00e7\u00e3o de conte\u00fados personalizados, medi\u00e7\u00e3o de conte\u00fados e perspetivas sobre o p\u00fablico","description":"Os conte\u00fados podem ser personalizados com base num perfil. O desempenho dos conte\u00fados pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Conte\u00fados personalizados e medi\u00e7\u00e3o de conte\u00fados","description":"Os conte\u00fados podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os conte\u00fados. O desempenho dos conte\u00fados pode ser medido."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Conte\u00fados personalizados, medi\u00e7\u00e3o de conte\u00fados e perspetivas sobre o p\u00fablico","description":"Os conte\u00fados podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os conte\u00fados. O desempenho dos conte\u00fados pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Conte\u00fados personalizados, medi\u00e7\u00e3o de conte\u00fados, perspetivas sobre o p\u00fablico e desenvolvimento de produtos","description":"Os conte\u00fados podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os conte\u00fados. O desempenho dos conte\u00fados pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas. Os dados podem ser utilizados para criar ou melhorar a experi\u00eancia do utilizador, sistemas e software"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Medi\u00e7\u00e3o de an\u00fancios e conte\u00fados e perspetivas sobre o p\u00fablico","description":"O desempenho dos an\u00fancios e dos conte\u00fados pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Medi\u00e7\u00e3o de an\u00fancios e conte\u00fados","description":"O desempenho dos an\u00fancios e dos conte\u00fados pode ser medido."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Medi\u00e7\u00e3o de an\u00fancios e perspetivas sobre o p\u00fablico","description":"O an\u00fancio pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Medi\u00e7\u00e3o de an\u00fancios e conte\u00fados, perspetivas sobre o p\u00fablico e desenvolvimento de produtos","description":"O desempenho dos an\u00fancios e dos conte\u00fados pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas. Os dados podem ser utilizados para criar ou melhorar a experi\u00eancia do utilizador, sistemas e software. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Medi\u00e7\u00e3o de conte\u00fados, perspetivas sobre o p\u00fablico e desenvolvimento de produtos","description":"O desempenho dos conte\u00fados pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas. Os dados podem ser utilizados para criar ou melhorar a experi\u00eancia do utilizador, sistemas e software."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Medi\u00e7\u00e3o de conte\u00fados e desenvolvimento de produtos","description":"O desempenho dos conte\u00fados pode ser medido. Os dados podem ser utilizados para criar ou melhorar a experi\u00eancia do utilizador, sistemas e software."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"An\u00fancios personalizados e apresenta\u00e7\u00e3o de conte\u00fados, medi\u00e7\u00e3o de an\u00fancios e conte\u00fados","description":"Os an\u00fancios e os conte\u00fados podem ser personalizados com base num perfil. O desempenho dos an\u00fancios e dos conte\u00fados pode ser medido."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"An\u00fancios personalizados e apresenta\u00e7\u00e3o de conte\u00fados, medi\u00e7\u00e3o de an\u00fancios e conte\u00fados e perspetivas sobre o p\u00fablico","description":"Os an\u00fancios e os conte\u00fados podem ser personalizados com base num perfil. O desempenho dos an\u00fancios e dos conte\u00fados pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas. Os dados podem ser utilizados para criar ou melhorar a experi\u00eancia do utilizador, sistemas e software."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"An\u00fancios e conte\u00fados personalizados, medi\u00e7\u00e3o de an\u00fancios e conte\u00fados","description":"Os an\u00fancios e os conte\u00fados podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os an\u00fancios e os conte\u00fados. O desempenho dos an\u00fancios e dos conte\u00fados pode ser medido."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"An\u00fancios e conte\u00fados personalizados, medi\u00e7\u00e3o de an\u00fancios e conte\u00fados e perspetivas sobre o p\u00fablico","description":"Os an\u00fancios e os conte\u00fados podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os an\u00fancios e os conte\u00fados. O desempenho dos an\u00fancios e dos conte\u00fados pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"An\u00fancios personalizados e perfil de conte\u00fados","description":"Podem ser adicionados mais dados para personalizar os an\u00fancios e os conte\u00fados."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"An\u00fancios personalizados e apresenta\u00e7\u00e3o de conte\u00fados","description":"Os an\u00fancios e os conte\u00fados podem ser personalizados com base num perfil."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"An\u00fancios b\u00e1sicos, medi\u00e7\u00e3o de an\u00fancios e conte\u00fados e perspetivas sobre o p\u00fablico","description":"Podem ser fornecidos an\u00fancios b\u00e1sicos. O desempenho dos an\u00fancios e dos conte\u00fados pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Apresenta\u00e7\u00e3o personalizada de an\u00fancios, conte\u00fados personalizados medi\u00e7\u00e3o de an\u00fancios e conte\u00fados e perspetivas sobre o p\u00fablico","description":"Os an\u00fancios e os conte\u00fados podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os conte\u00fados. O desempenho dos an\u00fancios e dos conte\u00fados pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Apresenta\u00e7\u00e3o personalizada de an\u00fancios, conte\u00fados personalizados, medi\u00e7\u00e3o de an\u00fancios e conte\u00fados, perspetivas sobre o p\u00fablico e desenvolvimento de produtos","description":"Os an\u00fancios e os conte\u00fados podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os conte\u00fados. O desempenho dos an\u00fancios e dos conte\u00fados pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas. Os dados podem ser utilizados para criar ou melhorar a experi\u00eancia do utilizador, sistemas e software."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"An\u00fancios b\u00e1sicos, conte\u00fados personalizados, medi\u00e7\u00e3o de an\u00fancios e conte\u00fados e perspetivas sobre o p\u00fablico","description":"Podem ser fornecidos an\u00fancios b\u00e1sicos. Os conte\u00fados podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os conte\u00fados. O desempenho dos an\u00fancios e dos conte\u00fados pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"An\u00fancios b\u00e1sicos, conte\u00fados personalizados, medi\u00e7\u00e3o de an\u00fancios e conte\u00fados, perspetivas sobre o p\u00fablico e desenvolvimento de produtos","description":"Podem ser fornecidos an\u00fancios b\u00e1sicos. Os conte\u00fados podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os conte\u00fados. O desempenho dos an\u00fancios e dos conte\u00fados pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas. Os dados podem ser utilizados para criar ou melhorar a experi\u00eancia do utilizador, sistemas e software."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"An\u00fancios b\u00e1sicos, conte\u00fados personalizados, medi\u00e7\u00e3o de conte\u00fados e perspetivas sobre o p\u00fablico","description":"Podem ser fornecidos an\u00fancios b\u00e1sicos. Os conte\u00fados podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os conte\u00fados. O desempenho dos an\u00fancios e dos conte\u00fados pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"An\u00fancios b\u00e1sicos, conte\u00fado personalizado, medi\u00e7\u00e3o de conte\u00fados, perspetivas sobre o p\u00fablico e desenvolvimento de produtos","description":"Podem ser fornecidos an\u00fancios b\u00e1sicos. Os conte\u00fados podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os conte\u00fados. O desempenho dos conte\u00fados pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas. Os dados podem ser utilizados para criar ou melhorar a experi\u00eancia do utilizador, sistemas e software."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"An\u00fancios b\u00e1sicos, conte\u00fado personalizado e medi\u00e7\u00e3o de an\u00fancios","description":"Podem ser fornecidos an\u00fancios b\u00e1sicos. Os conte\u00fados podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os conte\u00fados. O desempenho dos an\u00fancios pode ser medido."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"An\u00fancios b\u00e1sicos, conte\u00fados personalizados, medi\u00e7\u00e3o de an\u00fancios e desenvolvimento de produtos","description":"Podem ser fornecidos an\u00fancios b\u00e1sicos. Os conte\u00fados podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os conte\u00fados. O desempenho dos an\u00fancios pode ser medido. Os dados podem ser utilizados para criar ou melhorar a experi\u00eancia do utilizador, sistemas e software."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"An\u00fancios personalizados, medi\u00e7\u00e3o de an\u00fancios e desenvolvimento de produtos","description":"Os an\u00fancios podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os an\u00fancios. O desempenho dos an\u00fancios pode ser medido. Os dados podem ser utilizados para criar ou melhorar a experi\u00eancia do utilizador, sistemas e software."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"An\u00fancios personalizados, medi\u00e7\u00e3o de an\u00fancios, perspetivas sobre o p\u00fablico e desenvolvimento de produtos","description":"Os an\u00fancios podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os an\u00fancios. O desempenho dos an\u00fancios pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas. Os dados podem ser utilizados para criar ou melhorar a experi\u00eancia do utilizador, sistemas e software."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"An\u00fancios personalizados, medi\u00e7\u00e3o de an\u00fancios e de conte\u00fado, perspetivas sobre o p\u00fablico e desenvolvimento de produtos","description":"Os an\u00fancios podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os an\u00fancios. O desempenho dos an\u00fancios e dos conte\u00fados pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas. Os dados podem ser utilizados para criar ou melhorar a experi\u00eancia do utilizador, sistemas e software."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"An\u00fancios personalizados, apresenta\u00e7\u00e3o personalizada de conte\u00fados, medi\u00e7\u00e3o de an\u00fancios e conte\u00fados, perspetivas sobre o p\u00fablico e desenvolvimento de produtos","description":"Os an\u00fancios e os conte\u00fados podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os an\u00fancios. O desempenho dos an\u00fancios e dos conte\u00fados pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas. Os dados podem ser utilizados para criar ou melhorar a experi\u00eancia do utilizador, sistemas e software."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"An\u00fancios e conte\u00fados personalizados, medi\u00e7\u00e3o de an\u00fancios e conte\u00fados, perspetivas sobre o p\u00fablico e desenvolvimento de produtos","description":"Os an\u00fancios e os conte\u00fados podem ser personalizados com base num perfil. Podem ser adicionados mais dados para personalizar melhor os an\u00fancios e os conte\u00fados. O desempenho dos an\u00fancios e dos conte\u00fados pode ser medido. As perspetivas sobre os p\u00fablicos que viram os an\u00fancios e conte\u00fados podem ser derivadas. Os dados podem ser utilizados para criar ou melhorar a experi\u00eancia do utilizador, sistemas e software."}}} \ No newline at end of file diff --git a/src/s1/config/2.0/purposes/purposes-ro.json b/src/s1/config/2.0/purposes/purposes-ro.json index 472b8b1d..fe1b8cdc 100644 --- a/src/s1/config/2.0/purposes/purposes-ro.json +++ b/src/s1/config/2.0/purposes/purposes-ro.json @@ -1 +1 @@ -{"vendorListVersion":79,"lastUpdated":"2021-02-25T16:36:23Z","purposes":{"1":{"id":1,"name":"Stocarea \u0219i/sau accesarea informa\u021biilor de pe un dispozitiv","description":"Modulele cookie, identificatorii de dispozitive sau alte informa\u021bii pot fi stocate sau accesate de pe dispozitivul dvs. \u00een scopurile prezentate.","descriptionLegal":"Furnizorii pot:\n* stoca \u0219i accesa informa\u021biile de pe dispozitiv, cum ar fi modulele cookie \u0219i identificatorii de dispozitive prezenta\u021bi unui utilizator.\n"},"2":{"id":2,"name":"Selectarea reclamelor de baz\u0103","description":"Reclamele v\u0103 pot fi afi\u0219ate pe baza con\u021binutului pe care \u00eel vizualiza\u021bi, a aplica\u021biei pe care o utiliza\u021bi, loca\u021biei dvs. aproximative sau tipului dispozitivului dvs.","descriptionLegal":"Pentru a realiza o selec\u021bie a reclamelor de baz\u0103 furnizorii pot:\n* utiliza informa\u021bii \u00een timp real despre contextul \u00een care se va afi\u0219a reclama, pentru a prezenta reclama, inclusiv informa\u021bii despre con\u021binut \u0219i dispozitiv, cum ar fi: tipul \u0219i capacit\u0103\u021bile dispozitivului, agentul de utilizator, URL, adresa IP \n* utiliza datele de geoloca\u021bie imprecise ale unui utilizator\n* controla frecven\u021ba reclamelor afi\u0219ate unui utilizator\n* stabili ordinea \u00een care reclamele sunt afi\u0219ate unui utilizator\n* preveni utilizarea reclamei \u00eentr-un context editorial nepotrivit (nesigur pentru marc\u0103)\nFurnizorii nu pot:\n* crea un profil personalizat de reclame utiliz\u00e2nd aceste informa\u021bii pentru selectarea reclamelor viitoare f\u0103r\u0103 un temei legal separat pentru crearea unui profil personalizat de reclame.\nN.B. Imprecis \u00eenseamn\u0103 c\u0103 este permis\u0103 numai la o loca\u021bie aproximativ\u0103 care implic\u0103 cel pu\u021bin o raz\u0103 de 500 metri.\n"},"3":{"id":3,"name":"Crearea unui profil de reclame personalizate","description":"Un profil poate fi construit despre dvs. \u0219i interesele dvs. pentru a afi\u0219a reclamele personalizate care sunt relevante pentru dvs.","descriptionLegal":"Pentru a crea un profil de reclame personalizate, furnizorii pot:\n* Colecta informa\u021bii despre un utilizator, inclusiv activitatea, interesele, vizitele pe site-uri sau aplica\u021bii, informa\u021biile demografice sau loca\u021bia unui utilizator, pentru a crea sau edita un profil de utilizator \u00een vederea utiliz\u0103rii \u00een publicitatea personalizat\u0103.\n* Combina\u021bi aceste informa\u021bii cu alte informa\u021bii colectate anterior, inclusiv de pe site-uri web \u0219i aplica\u021bii, pentru a crea sau edita un profil de utilizator pentru utilizare \u00een publicitatea personalizat\u0103.\n"},"4":{"id":4,"name":"Selectarea reclamelor personalizate","description":"Reclamele personalizate v\u0103 pot fi afi\u0219ate pe baza unui profil despre dvs.","descriptionLegal":"Pentru a selecta reclame personalizate, furnizorii pot:\n* selecta reclame personalizate pe baza unui profil de utilizator sau a altor date istorice ale utilizatorului, inclusiv activitatea anterioar\u0103, interesele, acces\u0103rile site-urilor sau aplica\u021biilor, loca\u021bia sau informa\u021biile demografice ale unui utilizator.\n"},"5":{"id":5,"name":"Crearea unui profil de con\u021binut personalizat","description":"Un profil poate fi construit despre dvs. \u0219i interesele dvs. pentru a afi\u0219a con\u021binutul personalizat care este relevant pentru dvs.","descriptionLegal":"Pentru a crea un profil de con\u021binut personalizat, furnizorii pot:\n* colecta informa\u021bii despre un utilizator, inclusiv activitatea, interesele, informa\u021biile demografice sau loca\u021bia unui utilizator, pentru a crea sau edita un profil de utilizator \u00een vederea utiliz\u0103rii pentru personalizarea con\u021binutului.\n* Combina\u021bi aceste informa\u021bii cu alte informa\u021bii colectate anterior, inclusiv de pe site-uri web \u0219i aplica\u021bii, pentru a crea sau edita un profil de utilizator pentru a fi utilizat la personalizarea con\u021binutului.\n"},"6":{"id":6,"name":"Selectarea con\u021binutului personalizat","description":"Con\u021binutul personalizat v\u0103 poate fi afi\u0219at pe baza unui profil despre dvs.","descriptionLegal":"Pentru a selecta con\u021binut personalizat, furnizorii pot:\n* selecta con\u021binut personalizat pe baza unui profil de utilizator sau a altor date istorice ale utilizatorului, inclusiv activitatea anterioar\u0103, interesele, acces\u0103rile site-urilor sau aplica\u021biilor, loca\u021bia sau informa\u021biile demografice ale unui utilizator.\n"},"7":{"id":7,"name":"M\u0103surarea performan\u021bei reclamelor","description":"Performan\u021ba \u0219i eficien\u021ba reclamelor pe care le vede\u021bi sau cu care interac\u021biona\u021bi pot fi m\u0103surate.","descriptionLegal":"Pentru a m\u0103sura performan\u021ba reclamelor furnizorii pot:\n* m\u0103sura dac\u0103 \u0219i cum au fost furnizate reclamele \u0219i cum a interac\u021bionat un utilizator cu acestea\n* raporta despre reclame, inclusiv despre eficien\u021ba \u0219i performan\u021ba acestora\n* raporta despre utilizatorii care au interac\u021bionat cu reclamele utiliz\u00e2nd date observate \u00een cursul interac\u021biunii utilizatorului cu reclama respectiv\u0103\n* raporta c\u0103tre editori despre reclamele afi\u0219ate pe proprietatea lor\n* m\u0103sura dac\u0103 o reclam\u0103 este difuzat\u0103 \u00eentr-un context editorial adecvat (sigur pentru marc\u0103)\n* stabili procentul din reclam\u0103 care a avut oportunitatea de a fi v\u0103zut \u0219i durata oportunit\u0103\u021bii respective \nFurnizorii nu pot:\n* aplica datele privind informa\u021biile despre audien\u021b\u0103 derivate din panou sau de la un nivel similar la datele de m\u0103surare publicitar\u0103 f\u0103r\u0103 un temei legal separat pentru aplicarea cercet\u0103rii de pia\u021b\u0103 \u00een vederea gener\u0103rii unor informa\u021bii despre audien\u021b\u0103.\n"},"8":{"id":8,"name":"M\u0103surarea performan\u021bei con\u021binutului","description":"Performan\u021ba \u0219i eficien\u021ba con\u021binutului pe care \u00eel vede\u021bi sau cu care interac\u021biona\u021bi pot fi m\u0103surate.","descriptionLegal":"Pentru a m\u0103sura performan\u021ba con\u021binutului, furnizorii pot:\n* m\u0103sura \u0219i raporta despre modul \u00een care con\u021binutul a fost furnizat c\u0103tre utilizatori \u0219i modul \u00een care utilizatorii au interac\u021bionat cu acesta\n* raporta, utiliz\u00e2nd informa\u021bii m\u0103surabile direct sau cunoscute, despre utilizatorii care au interac\u021bionat cu con\u021binutul\nFurnizorii nu pot:\n* m\u0103sura dac\u0103 \u0219i cum au fost furnizate reclamele (inclusiv reclamele native) \u0219i cum a interac\u021bionat un utilizator cu acestea.\n* aplica datele privind informa\u021biile despre audien\u021b\u0103 derivate din panel sau de la un nivel similar la datele de m\u0103surare publicitar\u0103 f\u0103r\u0103 un temei legal separat pentru aplicarea cercet\u0103rii de pia\u021b\u0103 \u00een vederea gener\u0103rii unor informa\u021bii despre audien\u021b\u0103.\n"},"9":{"id":9,"name":"Aplicarea cercet\u0103rilor de pia\u021b\u0103 pentru a genera informa\u021bii despre audien\u021b\u0103","description":"Cercetarea de pia\u021b\u0103 poate fi utilizat\u0103 pentru a afla mai multe informa\u021bii despre publicul care viziteaz\u0103 site-urile/aplica\u021biile \u0219i vizualizeaz\u0103 reclamele.","descriptionLegal":"\u00cen vederea aplic\u0103rii cercet\u0103rilor de pia\u021b\u0103 pentru a genera informa\u021bii despre audien\u021b\u0103, furnizorii pot:\n* raporta la nivel global c\u0103tre agen\u021bii de publicitate sau reprezentan\u021bii acestora cu privire la audien\u021bele ob\u021binute de reclamele lor, prin informa\u021bii derivate din panel \u0219i de la un nivel similar\n* raporta la nivel global c\u0103tre editori despre publicul c\u0103ruia i-a fost difuzat con\u021binutul sau care a interac\u021bionat cu con\u021binutul \u0219i/sau reclamele de pe proprietatea lor prin aplicarea unor informa\u021bii derivate din panel \u0219i \u00een mod similar \n* asocia datele offline cu un utilizator online \u00een scopul cercet\u0103rii de pia\u021b\u0103 pentru a genera informa\u021bii despre audien\u021b\u0103 dac\u0103 furnizorii au declarat c\u0103 potrivesc \u0219i combin\u0103 sursele de date offline (Caracteristica 1)\nFurnizorii nu pot: \n* m\u0103sura performan\u021ba \u0219i eficien\u021ba reclamelor difuzate c\u0103tre un anumit utilizator sau cu care un anumit utilizator a interac\u021bionat, f\u0103r\u0103 un temei legal separat pentru m\u0103surarea performan\u021bei reclamelor.\n* m\u0103sura con\u021binutul difuzat c\u0103tre un utilizator specific \u0219i modul \u00een care acesta a interac\u021bionat cu respectivul con\u021binut, f\u0103r\u0103 un temei legal separat pentru m\u0103surarea performan\u021bei con\u021binutului.\n"},"10":{"id":10,"name":"Dezvoltarea \u0219i \u00eembun\u0103t\u0103\u021birea produselor","description":"Datele dvs. pot fi utilizate pentru a \u00eembun\u0103t\u0103\u021bi sistemele \u0219i software-ul existente \u0219i pentru a dezvolta noi produse.","descriptionLegal":"Pentru a dezvolta produse noi \u0219i pentru a \u00eembun\u0103t\u0103\u021bi produsele, furnizorii pot:\n* utiliza informa\u021biile pentru a-\u0219i \u00eembun\u0103t\u0103\u021bi produsele existente cu noi caracteristici \u0219i pentru a dezvolta noi produse\n* crea modele \u0219i algoritmi noi prin intermediul \u00eenv\u0103\u021b\u0103rii automate\nFurnizorii nu pot:\n* desf\u0103\u0219ura orice alt\u0103 opera\u021biune de prelucrare a datelor permis\u0103 pentru un alt scop \u00een baza acestui scop\n"}},"specialPurposes":{"1":{"id":1,"name":"Asigurarea securit\u0103\u021bii, prevenirea fraudei \u0219i depanare","description":"Datele dvs. pot fi utilizate pentru a monitoriza \u0219i preveni activitatea frauduloas\u0103 \u0219i pentru a asigura func\u021bionarea corespunz\u0103toare \u0219i sigur\u0103 a sistemelor \u0219i proceselor.","descriptionLegal":"Pentru a asigura securitatea, preveni frauda \u0219i depana, furnizori pot:\n* asigura c\u0103 datele sunt transmise \u00een siguran\u021b\u0103 \n* detecta \u0219i preveni activitatea mali\u021bioas\u0103, frauduloas\u0103, invalid\u0103 sau ilegal\u0103\n* asigura func\u021bionarea corect\u0103 \u0219i eficient\u0103 a sistemelor \u0219i proceselor, inclusiv monitoriza \u0219i \u00eembun\u0103t\u0103\u021bi performan\u021ba sistemelor \u0219i proceselor angajate \u00een scopuri permise\nFurnizorii nu pot:\n* desf\u0103\u0219ura nicio alt\u0103 opera\u021biune de prelucrare a datelor permis\u0103 pentru un alt scop \u00een baza acestui scop.\nNot\u0103: Datele colectate \u0219i utilizate pentru asigurarea securit\u0103\u021bii, prevenirea fraudelor \u0219i depanare pot include caracteristici ale dispozitivului trimise automat pentru identificare, date precise de geoloca\u021bie \u0219i date ob\u021binute prin scanarea activ\u0103 a caracteristicilor dispozitivului pentru identificare f\u0103r\u0103 o dezv\u0103luire \u0219i/sau optare separat\u0103.\n"},"2":{"id":2,"name":"Furnizarea tehnic\u0103 a reclamelor sau con\u021binutului","description":"Dispozitivul dvs. poate primi \u0219i trimite informa\u021bii care v\u0103 permit s\u0103 vizualiza\u021bi \u0219i s\u0103 interac\u021biona\u021bi cu reclamele \u0219i con\u021binutul.","descriptionLegal":"Pentru a furniza informa\u021bii \u0219i pentru a r\u0103spunde la solicit\u0103rile tehnice, furnizorii pot:\n* utiliza adresa IP a utilizatorului pentru a furniza o reclam\u0103 pe internet\n* r\u0103spunde la interac\u021biunea unui utilizator cu o reclam\u0103 prin trimiterea utilizatorului c\u0103tre o pagin\u0103 de \u00eent\u00e2mpinare\n* utiliza adresa IP a utilizatorului pentru a furniza con\u021binut pe internet\n* r\u0103spunde la interac\u021biunea unui utilizator cu un con\u021binut prin trimiterea utilizatorului c\u0103tre o pagin\u0103 de \u00eent\u00e2mpinare\n* utiliza informa\u021bii despre tipul \u0219i capacit\u0103\u021bile dispozitivului pentru a furniza reclame sau con\u021binut, de exemplu, pentru a furniza un fi\u0219ier creativ sau video al reclamei cu dimensiunea potrivit\u0103 \u00eentr-un format acceptat de dispozitiv\nFurnizorii nu pot:\n* desf\u0103\u0219ura orice alt\u0103 opera\u021biune de prelucrare a datelor permis\u0103 pentru un alt scop \u00een baza acestui scop\n"}},"features":{"1":{"id":1,"name":"Potrivirea \u0219i combinarea surselor de date offline","description":"Datele din surse de date offline pot fi combinate cu activitatea dvs. online \u00een sprijinul unuia sau mai multor scopuri.","descriptionLegal":"Furnizorii pot: \n* combina datele ob\u021binute offline cu datele colectate online \u00een sprijinul unuia sau mai multor Scopuri sau Scopuri speciale.\n"},"2":{"id":2,"name":"Conectarea mai multor dispozitive","description":"Se poate stabili c\u0103 mai multe dispozitive apar\u021bin dvs. sau re\u0219edin\u021bei dvs. \u00een sprijinul unuia sau mai multor scopuri.","descriptionLegal":"Furnizorii pot:\n* stabili \u00een mod determinist c\u0103 dou\u0103 sau mai multe dispozitive apar\u021bin aceluia\u0219i utilizator sau aceleia\u0219i re\u0219edin\u021be\n* stabili \u00een mod probabilist c\u0103 dou\u0103 sau mai multe dispozitive apar\u021bin aceluia\u0219i utilizator sau aceleia\u0219i re\u0219edin\u021be\n* scana activ caracteristicile dispozitivului pentru identificarea probabilist\u0103 a faptului dac\u0103 utilizatorii le-au permis furnizorilor s\u0103 scaneze activ caracteristicile dispozitivului pentru identificare (Caracteristica special\u0103 2)\n"},"3":{"id":3,"name":"Primirea \u0219i utilizarea caracteristicilor dispozitivului trimise automat pentru identificare","description":"Dispozitivul dvs. poate fi deosebit de alte dispozitive pe baza informa\u021biilor pe care le trimite automat, cum ar fi adresa IP sau tipul de browser.","descriptionLegal":"Furnizorii pot:\n* crea un identificator utiliz\u00e2nd datele colectate automat de pe un dispozitiv pentru caracteristici specifice, de ex. adresa IP, \u0219irul utilizator-agent.\n* utiliza un astfel de identificator pentru a \u00eencerca s\u0103 reidentifice un dispozitiv.\nFurnizorii nu pot:\n* crea un identificator utiliz\u00e2nd datele colectate prin scanarea activ\u0103 a unui dispozitiv pentru caracteristici specifice, de exemplu fontul instalat sau rezolu\u021bia ecranului f\u0103r\u0103 optarea separat\u0103 din partea utilizatorilor pentru scanarea activ\u0103 a caracteristicilor dispozitivului \u00een scopul identific\u0103rii.\n* utiliza un astfel de identificator pentru a reidentifica un dispozitiv.\n"}},"specialFeatures":{"1":{"id":1,"name":"Utilizarea unor date precise de geoloca\u021bie","description":"Datele dvs. de geoloca\u021bie precise pot fi utilizate pentru sus\u021binerea unuia sau mai multor scopuri. Aceasta \u00eenseamn\u0103 c\u0103 loca\u021bia dvs. poate fi exact\u0103 \u00een limita c\u00e2torva metri.","descriptionLegal":"Furnizorii pot:\n* colecta \u0219i prelucra date precise de geoloca\u021bie \u00een sprijinul unuia sau mai multor scopuri.\nN.B. Geoloca\u021bia precis\u0103 \u00eenseamn\u0103 c\u0103 nu exist\u0103 restric\u021bii privind precizia loca\u021biei unui utilizator; acest lucru poate fi exact \u00een limita c\u00e2torva metri.\n"},"2":{"id":2,"name":"Scanarea activ\u0103 a caracteristicilor dispozitivului pentru identificare","description":"Dispozitivul dvs. poate fi identificat pe baza unei scan\u0103ri a combina\u021biei unice de caracteristici ale dispozitivului dvs.","descriptionLegal":"Furnizorii pot:\n* crea un identificator utiliz\u00e2nd datele colectate prin scanarea activ\u0103 a unui dispozitiv pentru caracteristici specifice, de exemplu fonturile instalate sau rezolu\u021bia ecranului \n* utiliza un astfel de identificator pentru a reidentifica un dispozitiv.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Date precise de geoloca\u021bie \u0219i identificarea prin scanarea dispozitivului","description":"Se pot utiliza datele precise de geoloca\u021bie \u0219i informa\u021biile despre caracteristicile dispozitivului."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Reclame de baz\u0103 \u0219i m\u0103surarea reclamelor","description":"Pot fi difuzate reclame de baz\u0103. Se poate m\u0103sura performan\u021ba reclamelor."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Reclame personalizate","description":"Reclamele pot fi personalizate pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine reclamele."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Reclame de baz\u0103 \u0219i m\u0103surarea reclamelor","description":"Pot fi difuzate reclame de baz\u0103. Se poate m\u0103sura performan\u021ba reclamelor. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Reclame de baz\u0103, profil de reclame personalizate \u0219i m\u0103surarea reclamelor","description":"Pot fi difuzate reclame de baz\u0103. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine reclamele. Se poate m\u0103sura performan\u021ba reclamelor."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Afi\u0219area reclamelor personalizate \u0219i m\u0103surarea reclamelor","description":"Reclamele pot fi personalizate pe baza unui profil. Se poate m\u0103sura performan\u021ba reclamelor."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Afi\u0219area reclamelor personalizate, m\u0103surarea reclamelor \u0219i informa\u021bii despre audien\u021b\u0103","description":"Reclamele pot fi personalizate pe baza unui profil. Se poate m\u0103sura performan\u021ba reclamelor. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Reclame personalizate \u0219i m\u0103surarea reclamelor","description":"Reclamele pot fi personalizate pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine reclamele. Se poate m\u0103sura performan\u021ba reclamelor."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Reclame personalizate, m\u0103surarea reclamelor \u0219i informa\u021bii despre audien\u021b\u0103","description":"Reclamele pot fi personalizate pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine reclamele. Se poate m\u0103sura performan\u021ba reclamelor. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Profilul \u0219i afi\u0219area reclamelor personalizate","description":"Reclamele pot fi personalizate pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine reclamele."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Con\u021binut personalizat","description":"Con\u021binutul poate fi personalizat pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine con\u021binutul."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Afi\u0219area con\u021binutului personalizat \u0219i m\u0103sur\u0103tori de con\u021binut","description":"Con\u021binutul poate fi personalizat pe baza unui profil. Se poate m\u0103sura performan\u021ba con\u021binutului."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Afi\u0219area con\u021binutului personalizat, m\u0103sur\u0103tori de con\u021binut \u0219i informa\u021bii despre audien\u021b\u0103","description":"Con\u021binutul poate fi personalizat pe baza unui profil. Se poate m\u0103sura performan\u021ba con\u021binutului. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Con\u021binut personalizat \u0219i m\u0103sur\u0103tori de con\u021binut","description":"Con\u021binutul poate fi personalizat pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine con\u021binutul. Se poate m\u0103sura performan\u021ba con\u021binutului."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Con\u021binut personalizat, m\u0103sur\u0103tori de con\u021binut \u0219i informa\u021bii despre audien\u021b\u0103","description":"Con\u021binutul poate fi personalizat pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine con\u021binutul. Se poate m\u0103sura performan\u021ba con\u021binutului. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Con\u021binut personalizat, m\u0103sur\u0103tori de con\u021binut, informa\u021bii despre audien\u021b\u0103 \u0219i dezvoltarea produselor","description":"Con\u021binutul poate fi personalizat pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine con\u021binutul. Se poate m\u0103sura performan\u021ba con\u021binutului. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul. Datele pot fi utilizate pentru a construi sau \u00eembun\u0103t\u0103\u021bi experien\u021ba utilizatorului, sistemele \u0219i software-ul"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"M\u0103sur\u0103tori ale publicit\u0103\u021bii \u0219i con\u021binutului, \u0219i informa\u021bii despre audien\u021b\u0103","description":"Se poate m\u0103sura performan\u021ba reclamelor \u0219i a con\u021binutului. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"M\u0103sur\u0103tori ale publicit\u0103\u021bii \u0219i con\u021binutului","description":"Se poate m\u0103sura performan\u021ba reclamelor \u0219i a con\u021binutului."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"M\u0103sur\u0103tori de reclame \u0219i informa\u021bii despre audien\u021b\u0103","description":"Se poate m\u0103sura reclama. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"M\u0103sur\u0103tori de reclame \u0219i de con\u021binut, informa\u021bii despre audien\u021b\u0103 \u0219i dezvoltarea produselor","description":"Se poate m\u0103sura performan\u021ba reclamelor \u0219i a con\u021binutului. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul. Datele pot fi utilizate pentru a construi sau \u00eembun\u0103t\u0103\u021bi experien\u021ba utilizatorului, sistemele \u0219i software-ul. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"M\u0103sur\u0103tori de con\u021binut, informa\u021bii despre audien\u021b\u0103 \u0219i dezvoltarea produselor.","description":"Se poate m\u0103sura performan\u021ba con\u021binutului. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul. Datele pot fi utilizate pentru a construi sau \u00eembun\u0103t\u0103\u021bi experien\u021ba utilizatorului, sistemele \u0219i software-ul."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"M\u0103sur\u0103tori de con\u021binut \u0219i dezvoltarea produselor","description":"Se poate m\u0103sura performan\u021ba con\u021binutului. Datele pot fi utilizate pentru a construi sau \u00eembun\u0103t\u0103\u021bi experien\u021ba utilizatorului, sistemele \u0219i software-ul."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Afi\u0219area reclamelor \u0219i con\u021binutului personalizate, m\u0103sur\u0103tori de reclame \u0219i de con\u021binut","description":"Reclamele \u0219i con\u021binutul pot fi personalizate pe baza unui profil. Se poate m\u0103sura performan\u021ba reclamelor \u0219i a con\u021binutului."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Afi\u0219area reclamelor \u0219i con\u021binutului personalizate, m\u0103sur\u0103tori de reclame \u0219i de con\u021binut \u0219i informa\u021bii despre audien\u021b\u0103","description":"Reclamele \u0219i con\u021binutul pot fi personalizate pe baza unui profil. Se poate m\u0103sura performan\u021ba reclamelor \u0219i a con\u021binutului. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul. Datele pot fi utilizate pentru a construi sau \u00eembun\u0103t\u0103\u021bi experien\u021ba utilizatorului, sistemele \u0219i software-ul."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Reclame \u0219i con\u021binut personalizate, m\u0103sur\u0103tori de reclame \u0219i de con\u021binut","description":"Reclamele \u0219i con\u021binutul pot fi personalizate pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine reclamele \u0219i con\u021binutul. Se poate m\u0103sura performan\u021ba reclamelor \u0219i a con\u021binutului."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Reclame \u0219i con\u021binut personalizate, m\u0103sur\u0103tori de reclame \u0219i de con\u021binut \u0219i informa\u021bii despre audien\u021b\u0103","description":"Reclamele \u0219i con\u021binutul pot fi personalizate pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine reclamele \u0219i con\u021binutul. Se poate m\u0103sura performan\u021ba reclamelor \u0219i a con\u021binutului. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Reclame personalizate \u0219i profil de con\u021binut","description":"Pot fi ad\u0103ugate mai multe date pentru personalizarea reclamelor \u0219i con\u021binutului."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Afi\u0219area reclamelor \u0219i con\u021binutului personalizate","description":"Reclamele \u0219i con\u021binutul pot fi personalizate pe baza unui profil."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Reclame de baz\u0103, m\u0103sur\u0103tori de reclame \u0219i de con\u021binut \u0219i informa\u021bii despre audien\u021b\u0103","description":"Pot fi difuzate reclame de baz\u0103. Se poate m\u0103sura performan\u021ba reclamelor \u0219i a con\u021binutului. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Afi\u0219area reclamelor personalizate, con\u021binut personalizat, m\u0103sur\u0103tori de reclame \u0219i de con\u021binut \u0219i informa\u021bii despre audien\u021b\u0103","description":"Reclamele \u0219i con\u021binutul pot fi personalizate pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine con\u021binutul. Se poate m\u0103sura performan\u021ba reclamelor \u0219i a con\u021binutului. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Afi\u0219area reclamelor personalizate, con\u021binut personalizat, m\u0103sur\u0103tori de reclame \u0219i de con\u021binut, informa\u021bii despre audien\u021b\u0103 \u0219i dezvoltarea produselor","description":"Reclamele \u0219i con\u021binutul pot fi personalizate pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine con\u021binutul. Se poate m\u0103sura performan\u021ba reclamelor \u0219i a con\u021binutului. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul. Datele pot fi utilizate pentru a construi sau \u00eembun\u0103t\u0103\u021bi experien\u021ba utilizatorului, sistemele \u0219i software-ul."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Reclame de baz\u0103, con\u021binut personalizat, m\u0103sur\u0103tori de reclame \u0219i de con\u021binut, \u0219i informa\u021bii despre audien\u021b\u0103","description":"Pot fi difuzate reclame de baz\u0103. Con\u021binutul poate fi personalizat pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine con\u021binutul. Se poate m\u0103sura performan\u021ba reclamelor \u0219i a con\u021binutului. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Reclame de baz\u0103, con\u021binut personalizat, m\u0103sur\u0103tori de reclame \u0219i de con\u021binut, informa\u021bii despre audien\u021b\u0103 \u0219i dezvoltarea produselor","description":"Pot fi difuzate reclame de baz\u0103. Con\u021binutul poate fi personalizat pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine con\u021binutul. Se poate m\u0103sura performan\u021ba reclamelor \u0219i a con\u021binutului. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul. Datele pot fi utilizate pentru a construi sau \u00eembun\u0103t\u0103\u021bi experien\u021ba utilizatorului, sistemele \u0219i software-ul."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Reclame de baz\u0103, con\u021binut personalizat, m\u0103sur\u0103tori de con\u021binut \u0219i informa\u021bii despre audien\u021b\u0103","description":"Pot fi difuzate reclame de baz\u0103. Con\u021binutul poate fi personalizat pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine con\u021binutul. Se poate m\u0103sura performan\u021ba reclamelor \u0219i a con\u021binutului. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Reclame de baz\u0103, con\u021binut personalizat, m\u0103sur\u0103tori de con\u021binut, informa\u021bii despre audien\u021b\u0103 \u0219i dezvoltarea produselor","description":"Pot fi difuzate reclame de baz\u0103. Con\u021binutul poate fi personalizat pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine con\u021binutul. Se poate m\u0103sura performan\u021ba con\u021binutului. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul. Datele pot fi utilizate pentru a construi sau \u00eembun\u0103t\u0103\u021bi experien\u021ba utilizatorului, sistemele \u0219i software-ul."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Reclame de baz\u0103, con\u021binut personalizat \u0219i m\u0103sur\u0103tori ale reclamelor","description":"Pot fi difuzate reclame de baz\u0103. Con\u021binutul poate fi personalizat pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine con\u021binutul. Se poate m\u0103sura performan\u021ba reclamelor."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Reclame de baz\u0103, con\u021binut personalizat, m\u0103sur\u0103tori ale reclamelor \u0219i dezvoltarea produselor","description":"Pot fi difuzate reclame de baz\u0103. Con\u021binutul poate fi personalizat pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine con\u021binutul. Se poate m\u0103sura performan\u021ba reclamelor. Datele pot fi utilizate pentru a construi sau \u00eembun\u0103t\u0103\u021bi experien\u021ba utilizatorului, sistemele \u0219i software-ul."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Reclame personalizate, m\u0103sur\u0103tori de reclame \u0219i dezvoltare de produse","description":"Reclamele pot fi personalizate pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine reclamele. Se poate m\u0103sura performan\u021ba reclamelor. Datele pot fi utilizate pentru a construi sau \u00eembun\u0103t\u0103\u021bi experien\u021ba utilizatorului, sistemele \u0219i software-ul."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Reclame personalizate, m\u0103sur\u0103tori de reclame, informa\u021bii despre audien\u021b\u0103 \u0219i dezvoltare de produse","description":"Reclamele pot fi personalizate pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine reclamele. Se poate m\u0103sura performan\u021ba reclamelor. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul. Datele pot fi utilizate pentru a construi sau a \u00eembun\u0103t\u0103\u021bi experien\u021ba utilizatorului, sistemele \u0219i software-ul."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Reclame personalizate, m\u0103sur\u0103tori de reclame \u0219i con\u021binut, informa\u021bii despre audien\u021b\u0103 \u0219i dezvoltare de produse","description":"Reclamele pot fi personalizate pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine reclamele. Se poate m\u0103sura performan\u021ba reclamelor \u0219i a con\u021binutului. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul. Datele pot fi utilizate pentru a construi sau a \u00eembun\u0103t\u0103\u021bi experien\u021ba utilizatorului, sistemele \u0219i software-ul."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Reclame personalizate, afi\u0219area de con\u021binut personalizat, m\u0103sur\u0103tori de reclame \u0219i de con\u021binut, informa\u021bii despre audien\u021b\u0103 \u0219i dezvoltare de produse","description":"Reclamele \u0219i con\u021binutul pot fi personalizate pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine reclamele. Se poate m\u0103sura performan\u021ba reclamelor \u0219i a con\u021binutului. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul. Datele pot fi utilizate pentru a construi sau a \u00eembun\u0103t\u0103\u021bi experien\u021ba utilizatorului, sistemele \u0219i software-ul."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Reclame \u0219i con\u021binut personalizate, m\u0103sur\u0103tori de reclame \u0219i de con\u021binut, informa\u021bii despre audien\u021b\u0103 \u0219i dezvoltare de produse","description":"Reclamele \u0219i con\u021binutul pot fi personalizate pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine reclamele \u0219i con\u021binutul. Se poate m\u0103sura performan\u021ba reclamelor \u0219i a con\u021binutului. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul. Datele pot fi utilizate pentru a construi sau a \u00eembun\u0103t\u0103\u021bi experien\u021ba utilizatorului, sistemele \u0219i software-ul."}}} \ No newline at end of file +{"vendorListVersion":94,"lastUpdated":"2021-06-10T16:44:03Z","purposes":{"1":{"id":1,"name":"Stocarea \u0219i/sau accesarea informa\u021biilor de pe un dispozitiv","description":"Modulele cookie, identificatorii de dispozitive sau alte informa\u021bii pot fi stocate sau accesate de pe dispozitivul dvs. \u00een scopurile prezentate.","descriptionLegal":"Furnizorii pot:\n* stoca \u0219i accesa informa\u021biile de pe dispozitiv, cum ar fi modulele cookie \u0219i identificatorii de dispozitive prezenta\u021bi unui utilizator.\n"},"2":{"id":2,"name":"Selectarea reclamelor de baz\u0103","description":"Reclamele v\u0103 pot fi afi\u0219ate pe baza con\u021binutului pe care \u00eel vizualiza\u021bi, a aplica\u021biei pe care o utiliza\u021bi, loca\u021biei dvs. aproximative sau tipului dispozitivului dvs.","descriptionLegal":"Pentru a realiza o selec\u021bie a reclamelor de baz\u0103 furnizorii pot:\n* utiliza informa\u021bii \u00een timp real despre contextul \u00een care se va afi\u0219a reclama, pentru a prezenta reclama, inclusiv informa\u021bii despre con\u021binut \u0219i dispozitiv, cum ar fi: tipul \u0219i capacit\u0103\u021bile dispozitivului, agentul de utilizator, URL, adresa IP \n* utiliza datele de geoloca\u021bie imprecise ale unui utilizator\n* controla frecven\u021ba reclamelor afi\u0219ate unui utilizator\n* stabili ordinea \u00een care reclamele sunt afi\u0219ate unui utilizator\n* preveni utilizarea reclamei \u00eentr-un context editorial nepotrivit (nesigur pentru marc\u0103)\nFurnizorii nu pot:\n* crea un profil personalizat de reclame utiliz\u00e2nd aceste informa\u021bii pentru selectarea reclamelor viitoare f\u0103r\u0103 un temei legal separat pentru crearea unui profil personalizat de reclame.\nN.B. Imprecis \u00eenseamn\u0103 c\u0103 este permis\u0103 numai la o loca\u021bie aproximativ\u0103 care implic\u0103 cel pu\u021bin o raz\u0103 de 500 metri.\n"},"3":{"id":3,"name":"Crearea unui profil de reclame personalizate","description":"Un profil poate fi construit despre dvs. \u0219i interesele dvs. pentru a afi\u0219a reclamele personalizate care sunt relevante pentru dvs.","descriptionLegal":"Pentru a crea un profil de reclame personalizate, furnizorii pot:\n* Colecta informa\u021bii despre un utilizator, inclusiv activitatea, interesele, vizitele pe site-uri sau aplica\u021bii, informa\u021biile demografice sau loca\u021bia unui utilizator, pentru a crea sau edita un profil de utilizator \u00een vederea utiliz\u0103rii \u00een publicitatea personalizat\u0103.\n* Combina\u021bi aceste informa\u021bii cu alte informa\u021bii colectate anterior, inclusiv de pe site-uri web \u0219i aplica\u021bii, pentru a crea sau edita un profil de utilizator pentru utilizare \u00een publicitatea personalizat\u0103.\n"},"4":{"id":4,"name":"Selectarea reclamelor personalizate","description":"Reclamele personalizate v\u0103 pot fi afi\u0219ate pe baza unui profil despre dvs.","descriptionLegal":"Pentru a selecta reclame personalizate, furnizorii pot:\n* selecta reclame personalizate pe baza unui profil de utilizator sau a altor date istorice ale utilizatorului, inclusiv activitatea anterioar\u0103, interesele, acces\u0103rile site-urilor sau aplica\u021biilor, loca\u021bia sau informa\u021biile demografice ale unui utilizator.\n"},"5":{"id":5,"name":"Crearea unui profil de con\u021binut personalizat","description":"Un profil poate fi construit despre dvs. \u0219i interesele dvs. pentru a afi\u0219a con\u021binutul personalizat care este relevant pentru dvs.","descriptionLegal":"Pentru a crea un profil de con\u021binut personalizat, furnizorii pot:\n* colecta informa\u021bii despre un utilizator, inclusiv activitatea, interesele, informa\u021biile demografice sau loca\u021bia unui utilizator, pentru a crea sau edita un profil de utilizator \u00een vederea utiliz\u0103rii pentru personalizarea con\u021binutului.\n* Combina\u021bi aceste informa\u021bii cu alte informa\u021bii colectate anterior, inclusiv de pe site-uri web \u0219i aplica\u021bii, pentru a crea sau edita un profil de utilizator pentru a fi utilizat la personalizarea con\u021binutului.\n"},"6":{"id":6,"name":"Selectarea con\u021binutului personalizat","description":"Con\u021binutul personalizat v\u0103 poate fi afi\u0219at pe baza unui profil despre dvs.","descriptionLegal":"Pentru a selecta con\u021binut personalizat, furnizorii pot:\n* selecta con\u021binut personalizat pe baza unui profil de utilizator sau a altor date istorice ale utilizatorului, inclusiv activitatea anterioar\u0103, interesele, acces\u0103rile site-urilor sau aplica\u021biilor, loca\u021bia sau informa\u021biile demografice ale unui utilizator.\n"},"7":{"id":7,"name":"M\u0103surarea performan\u021bei reclamelor","description":"Performan\u021ba \u0219i eficien\u021ba reclamelor pe care le vede\u021bi sau cu care interac\u021biona\u021bi pot fi m\u0103surate.","descriptionLegal":"Pentru a m\u0103sura performan\u021ba reclamelor furnizorii pot:\n* m\u0103sura dac\u0103 \u0219i cum au fost furnizate reclamele \u0219i cum a interac\u021bionat un utilizator cu acestea\n* raporta despre reclame, inclusiv despre eficien\u021ba \u0219i performan\u021ba acestora\n* raporta despre utilizatorii care au interac\u021bionat cu reclamele utiliz\u00e2nd date observate \u00een cursul interac\u021biunii utilizatorului cu reclama respectiv\u0103\n* raporta c\u0103tre editori despre reclamele afi\u0219ate pe proprietatea lor\n* m\u0103sura dac\u0103 o reclam\u0103 este difuzat\u0103 \u00eentr-un context editorial adecvat (sigur pentru marc\u0103)\n* stabili procentul din reclam\u0103 care a avut oportunitatea de a fi v\u0103zut \u0219i durata oportunit\u0103\u021bii respective \nFurnizorii nu pot:\n* aplica datele privind informa\u021biile despre audien\u021b\u0103 derivate din panou sau de la un nivel similar la datele de m\u0103surare publicitar\u0103 f\u0103r\u0103 un temei legal separat pentru aplicarea cercet\u0103rii de pia\u021b\u0103 \u00een vederea gener\u0103rii unor informa\u021bii despre audien\u021b\u0103.\n"},"8":{"id":8,"name":"M\u0103surarea performan\u021bei con\u021binutului","description":"Performan\u021ba \u0219i eficien\u021ba con\u021binutului pe care \u00eel vede\u021bi sau cu care interac\u021biona\u021bi pot fi m\u0103surate.","descriptionLegal":"Pentru a m\u0103sura performan\u021ba con\u021binutului, furnizorii pot:\n* m\u0103sura \u0219i raporta despre modul \u00een care con\u021binutul a fost furnizat c\u0103tre utilizatori \u0219i modul \u00een care utilizatorii au interac\u021bionat cu acesta\n* raporta, utiliz\u00e2nd informa\u021bii m\u0103surabile direct sau cunoscute, despre utilizatorii care au interac\u021bionat cu con\u021binutul\nFurnizorii nu pot:\n* m\u0103sura dac\u0103 \u0219i cum au fost furnizate reclamele (inclusiv reclamele native) \u0219i cum a interac\u021bionat un utilizator cu acestea.\n* aplica datele privind informa\u021biile despre audien\u021b\u0103 derivate din panel sau de la un nivel similar la datele de m\u0103surare publicitar\u0103 f\u0103r\u0103 un temei legal separat pentru aplicarea cercet\u0103rii de pia\u021b\u0103 \u00een vederea gener\u0103rii unor informa\u021bii despre audien\u021b\u0103.\n"},"9":{"id":9,"name":"Aplicarea cercet\u0103rilor de pia\u021b\u0103 pentru a genera informa\u021bii despre audien\u021b\u0103","description":"Cercetarea de pia\u021b\u0103 poate fi utilizat\u0103 pentru a afla mai multe informa\u021bii despre publicul care viziteaz\u0103 site-urile/aplica\u021biile \u0219i vizualizeaz\u0103 reclamele.","descriptionLegal":"\u00cen vederea aplic\u0103rii cercet\u0103rilor de pia\u021b\u0103 pentru a genera informa\u021bii despre audien\u021b\u0103, furnizorii pot:\n* raporta la nivel global c\u0103tre agen\u021bii de publicitate sau reprezentan\u021bii acestora cu privire la audien\u021bele ob\u021binute de reclamele lor, prin informa\u021bii derivate din panel \u0219i de la un nivel similar\n* raporta la nivel global c\u0103tre editori despre publicul c\u0103ruia i-a fost difuzat con\u021binutul sau care a interac\u021bionat cu con\u021binutul \u0219i/sau reclamele de pe proprietatea lor prin aplicarea unor informa\u021bii derivate din panel \u0219i \u00een mod similar \n* asocia datele offline cu un utilizator online \u00een scopul cercet\u0103rii de pia\u021b\u0103 pentru a genera informa\u021bii despre audien\u021b\u0103 dac\u0103 furnizorii au declarat c\u0103 potrivesc \u0219i combin\u0103 sursele de date offline (Caracteristica 1)\nFurnizorii nu pot: \n* m\u0103sura performan\u021ba \u0219i eficien\u021ba reclamelor difuzate c\u0103tre un anumit utilizator sau cu care un anumit utilizator a interac\u021bionat, f\u0103r\u0103 un temei legal separat pentru m\u0103surarea performan\u021bei reclamelor.\n* m\u0103sura con\u021binutul difuzat c\u0103tre un utilizator specific \u0219i modul \u00een care acesta a interac\u021bionat cu respectivul con\u021binut, f\u0103r\u0103 un temei legal separat pentru m\u0103surarea performan\u021bei con\u021binutului.\n"},"10":{"id":10,"name":"Dezvoltarea \u0219i \u00eembun\u0103t\u0103\u021birea produselor","description":"Datele dvs. pot fi utilizate pentru a \u00eembun\u0103t\u0103\u021bi sistemele \u0219i software-ul existente \u0219i pentru a dezvolta noi produse.","descriptionLegal":"Pentru a dezvolta produse noi \u0219i pentru a \u00eembun\u0103t\u0103\u021bi produsele, furnizorii pot:\n* utiliza informa\u021biile pentru a-\u0219i \u00eembun\u0103t\u0103\u021bi produsele existente cu noi caracteristici \u0219i pentru a dezvolta noi produse\n* crea modele \u0219i algoritmi noi prin intermediul \u00eenv\u0103\u021b\u0103rii automate\nFurnizorii nu pot:\n* desf\u0103\u0219ura orice alt\u0103 opera\u021biune de prelucrare a datelor permis\u0103 pentru un alt scop \u00een baza acestui scop\n"}},"specialPurposes":{"1":{"id":1,"name":"Asigurarea securit\u0103\u021bii, prevenirea fraudei \u0219i depanare","description":"Datele dvs. pot fi utilizate pentru a monitoriza \u0219i preveni activitatea frauduloas\u0103 \u0219i pentru a asigura func\u021bionarea corespunz\u0103toare \u0219i sigur\u0103 a sistemelor \u0219i proceselor.","descriptionLegal":"Pentru a asigura securitatea, preveni frauda \u0219i depana, furnizori pot:\n* asigura c\u0103 datele sunt transmise \u00een siguran\u021b\u0103 \n* detecta \u0219i preveni activitatea mali\u021bioas\u0103, frauduloas\u0103, invalid\u0103 sau ilegal\u0103\n* asigura func\u021bionarea corect\u0103 \u0219i eficient\u0103 a sistemelor \u0219i proceselor, inclusiv monitoriza \u0219i \u00eembun\u0103t\u0103\u021bi performan\u021ba sistemelor \u0219i proceselor angajate \u00een scopuri permise\nFurnizorii nu pot:\n* desf\u0103\u0219ura nicio alt\u0103 opera\u021biune de prelucrare a datelor permis\u0103 pentru un alt scop \u00een baza acestui scop.\nNot\u0103: Datele colectate \u0219i utilizate pentru asigurarea securit\u0103\u021bii, prevenirea fraudelor \u0219i depanare pot include caracteristici ale dispozitivului trimise automat pentru identificare, date precise de geoloca\u021bie \u0219i date ob\u021binute prin scanarea activ\u0103 a caracteristicilor dispozitivului pentru identificare f\u0103r\u0103 o dezv\u0103luire \u0219i/sau optare separat\u0103.\n"},"2":{"id":2,"name":"Furnizarea tehnic\u0103 a reclamelor sau con\u021binutului","description":"Dispozitivul dvs. poate primi \u0219i trimite informa\u021bii care v\u0103 permit s\u0103 vizualiza\u021bi \u0219i s\u0103 interac\u021biona\u021bi cu reclamele \u0219i con\u021binutul.","descriptionLegal":"Pentru a furniza informa\u021bii \u0219i pentru a r\u0103spunde la solicit\u0103rile tehnice, furnizorii pot:\n* utiliza adresa IP a utilizatorului pentru a furniza o reclam\u0103 pe internet\n* r\u0103spunde la interac\u021biunea unui utilizator cu o reclam\u0103 prin trimiterea utilizatorului c\u0103tre o pagin\u0103 de \u00eent\u00e2mpinare\n* utiliza adresa IP a utilizatorului pentru a furniza con\u021binut pe internet\n* r\u0103spunde la interac\u021biunea unui utilizator cu un con\u021binut prin trimiterea utilizatorului c\u0103tre o pagin\u0103 de \u00eent\u00e2mpinare\n* utiliza informa\u021bii despre tipul \u0219i capacit\u0103\u021bile dispozitivului pentru a furniza reclame sau con\u021binut, de exemplu, pentru a furniza un fi\u0219ier creativ sau video al reclamei cu dimensiunea potrivit\u0103 \u00eentr-un format acceptat de dispozitiv\nFurnizorii nu pot:\n* desf\u0103\u0219ura orice alt\u0103 opera\u021biune de prelucrare a datelor permis\u0103 pentru un alt scop \u00een baza acestui scop\n"}},"features":{"1":{"id":1,"name":"Potrivirea \u0219i combinarea surselor de date offline","description":"Datele din surse de date offline pot fi combinate cu activitatea dvs. online \u00een sprijinul unuia sau mai multor scopuri.","descriptionLegal":"Furnizorii pot: \n* combina datele ob\u021binute offline cu datele colectate online \u00een sprijinul unuia sau mai multor Scopuri sau Scopuri speciale.\n"},"2":{"id":2,"name":"Conectarea mai multor dispozitive","description":"Se poate stabili c\u0103 mai multe dispozitive apar\u021bin dvs. sau re\u0219edin\u021bei dvs. \u00een sprijinul unuia sau mai multor scopuri.","descriptionLegal":"Furnizorii pot:\n* stabili \u00een mod determinist c\u0103 dou\u0103 sau mai multe dispozitive apar\u021bin aceluia\u0219i utilizator sau aceleia\u0219i re\u0219edin\u021be\n* stabili \u00een mod probabilist c\u0103 dou\u0103 sau mai multe dispozitive apar\u021bin aceluia\u0219i utilizator sau aceleia\u0219i re\u0219edin\u021be\n* scana activ caracteristicile dispozitivului pentru identificarea probabilist\u0103 a faptului dac\u0103 utilizatorii le-au permis furnizorilor s\u0103 scaneze activ caracteristicile dispozitivului pentru identificare (Caracteristica special\u0103 2)\n"},"3":{"id":3,"name":"Primirea \u0219i utilizarea caracteristicilor dispozitivului trimise automat pentru identificare","description":"Dispozitivul dvs. poate fi deosebit de alte dispozitive pe baza informa\u021biilor pe care le trimite automat, cum ar fi adresa IP sau tipul de browser.","descriptionLegal":"Furnizorii pot:\n* crea un identificator utiliz\u00e2nd datele colectate automat de pe un dispozitiv pentru caracteristici specifice, de ex. adresa IP, \u0219irul utilizator-agent.\n* utiliza un astfel de identificator pentru a \u00eencerca s\u0103 reidentifice un dispozitiv.\nFurnizorii nu pot:\n* crea un identificator utiliz\u00e2nd datele colectate prin scanarea activ\u0103 a unui dispozitiv pentru caracteristici specifice, de exemplu fontul instalat sau rezolu\u021bia ecranului f\u0103r\u0103 optarea separat\u0103 din partea utilizatorilor pentru scanarea activ\u0103 a caracteristicilor dispozitivului \u00een scopul identific\u0103rii.\n* utiliza un astfel de identificator pentru a reidentifica un dispozitiv.\n"}},"specialFeatures":{"1":{"id":1,"name":"Utilizarea unor date precise de geoloca\u021bie","description":"Datele dvs. de geoloca\u021bie precise pot fi utilizate pentru sus\u021binerea unuia sau mai multor scopuri. Aceasta \u00eenseamn\u0103 c\u0103 loca\u021bia dvs. poate fi exact\u0103 \u00een limita c\u00e2torva metri.","descriptionLegal":"Furnizorii pot:\n* colecta \u0219i prelucra date precise de geoloca\u021bie \u00een sprijinul unuia sau mai multor scopuri.\nN.B. Geoloca\u021bia precis\u0103 \u00eenseamn\u0103 c\u0103 nu exist\u0103 restric\u021bii privind precizia loca\u021biei unui utilizator; acest lucru poate fi exact \u00een limita c\u00e2torva metri.\n"},"2":{"id":2,"name":"Scanarea activ\u0103 a caracteristicilor dispozitivului pentru identificare","description":"Dispozitivul dvs. poate fi identificat pe baza unei scan\u0103ri a combina\u021biei unice de caracteristici ale dispozitivului dvs.","descriptionLegal":"Furnizorii pot:\n* crea un identificator utiliz\u00e2nd datele colectate prin scanarea activ\u0103 a unui dispozitiv pentru caracteristici specifice, de exemplu fonturile instalate sau rezolu\u021bia ecranului \n* utiliza un astfel de identificator pentru a reidentifica un dispozitiv.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Date precise de geoloca\u021bie \u0219i identificarea prin scanarea dispozitivului","description":"Se pot utiliza datele precise de geoloca\u021bie \u0219i informa\u021biile despre caracteristicile dispozitivului."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Reclame de baz\u0103 \u0219i m\u0103surarea reclamelor","description":"Pot fi difuzate reclame de baz\u0103. Se poate m\u0103sura performan\u021ba reclamelor."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Reclame personalizate","description":"Reclamele pot fi personalizate pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine reclamele."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Reclame de baz\u0103 \u0219i m\u0103surarea reclamelor","description":"Pot fi difuzate reclame de baz\u0103. Se poate m\u0103sura performan\u021ba reclamelor. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Reclame de baz\u0103, profil de reclame personalizate \u0219i m\u0103surarea reclamelor","description":"Pot fi difuzate reclame de baz\u0103. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine reclamele. Se poate m\u0103sura performan\u021ba reclamelor."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Afi\u0219area reclamelor personalizate \u0219i m\u0103surarea reclamelor","description":"Reclamele pot fi personalizate pe baza unui profil. Se poate m\u0103sura performan\u021ba reclamelor."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Afi\u0219area reclamelor personalizate, m\u0103surarea reclamelor \u0219i informa\u021bii despre audien\u021b\u0103","description":"Reclamele pot fi personalizate pe baza unui profil. Se poate m\u0103sura performan\u021ba reclamelor. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Reclame personalizate \u0219i m\u0103surarea reclamelor","description":"Reclamele pot fi personalizate pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine reclamele. Se poate m\u0103sura performan\u021ba reclamelor."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Reclame personalizate, m\u0103surarea reclamelor \u0219i informa\u021bii despre audien\u021b\u0103","description":"Reclamele pot fi personalizate pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine reclamele. Se poate m\u0103sura performan\u021ba reclamelor. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Profilul \u0219i afi\u0219area reclamelor personalizate","description":"Reclamele pot fi personalizate pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine reclamele."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Con\u021binut personalizat","description":"Con\u021binutul poate fi personalizat pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine con\u021binutul."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Afi\u0219area con\u021binutului personalizat \u0219i m\u0103sur\u0103tori de con\u021binut","description":"Con\u021binutul poate fi personalizat pe baza unui profil. Se poate m\u0103sura performan\u021ba con\u021binutului."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Afi\u0219area con\u021binutului personalizat, m\u0103sur\u0103tori de con\u021binut \u0219i informa\u021bii despre audien\u021b\u0103","description":"Con\u021binutul poate fi personalizat pe baza unui profil. Se poate m\u0103sura performan\u021ba con\u021binutului. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Con\u021binut personalizat \u0219i m\u0103sur\u0103tori de con\u021binut","description":"Con\u021binutul poate fi personalizat pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine con\u021binutul. Se poate m\u0103sura performan\u021ba con\u021binutului."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Con\u021binut personalizat, m\u0103sur\u0103tori de con\u021binut \u0219i informa\u021bii despre audien\u021b\u0103","description":"Con\u021binutul poate fi personalizat pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine con\u021binutul. Se poate m\u0103sura performan\u021ba con\u021binutului. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Con\u021binut personalizat, m\u0103sur\u0103tori de con\u021binut, informa\u021bii despre audien\u021b\u0103 \u0219i dezvoltarea produselor","description":"Con\u021binutul poate fi personalizat pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine con\u021binutul. Se poate m\u0103sura performan\u021ba con\u021binutului. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul. Datele pot fi utilizate pentru a construi sau \u00eembun\u0103t\u0103\u021bi experien\u021ba utilizatorului, sistemele \u0219i software-ul"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"M\u0103sur\u0103tori ale publicit\u0103\u021bii \u0219i con\u021binutului, \u0219i informa\u021bii despre audien\u021b\u0103","description":"Se poate m\u0103sura performan\u021ba reclamelor \u0219i a con\u021binutului. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"M\u0103sur\u0103tori ale publicit\u0103\u021bii \u0219i con\u021binutului","description":"Se poate m\u0103sura performan\u021ba reclamelor \u0219i a con\u021binutului."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"M\u0103sur\u0103tori de reclame \u0219i informa\u021bii despre audien\u021b\u0103","description":"Se poate m\u0103sura reclama. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"M\u0103sur\u0103tori de reclame \u0219i de con\u021binut, informa\u021bii despre audien\u021b\u0103 \u0219i dezvoltarea produselor","description":"Se poate m\u0103sura performan\u021ba reclamelor \u0219i a con\u021binutului. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul. Datele pot fi utilizate pentru a construi sau \u00eembun\u0103t\u0103\u021bi experien\u021ba utilizatorului, sistemele \u0219i software-ul. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"M\u0103sur\u0103tori de con\u021binut, informa\u021bii despre audien\u021b\u0103 \u0219i dezvoltarea produselor","description":"Se poate m\u0103sura performan\u021ba con\u021binutului. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul. Datele pot fi utilizate pentru a construi sau \u00eembun\u0103t\u0103\u021bi experien\u021ba utilizatorului, sistemele \u0219i software-ul."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"M\u0103sur\u0103tori de con\u021binut \u0219i dezvoltarea produselor","description":"Se poate m\u0103sura performan\u021ba con\u021binutului. Datele pot fi utilizate pentru a construi sau \u00eembun\u0103t\u0103\u021bi experien\u021ba utilizatorului, sistemele \u0219i software-ul."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Afi\u0219area reclamelor \u0219i con\u021binutului personalizate, m\u0103sur\u0103tori de reclame \u0219i de con\u021binut","description":"Reclamele \u0219i con\u021binutul pot fi personalizate pe baza unui profil. Se poate m\u0103sura performan\u021ba reclamelor \u0219i a con\u021binutului."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Afi\u0219area reclamelor \u0219i con\u021binutului personalizate, m\u0103sur\u0103tori de reclame \u0219i de con\u021binut \u0219i informa\u021bii despre audien\u021b\u0103","description":"Reclamele \u0219i con\u021binutul pot fi personalizate pe baza unui profil. Se poate m\u0103sura performan\u021ba reclamelor \u0219i a con\u021binutului. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul. Datele pot fi utilizate pentru a construi sau \u00eembun\u0103t\u0103\u021bi experien\u021ba utilizatorului, sistemele \u0219i software-ul."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Reclame \u0219i con\u021binut personalizate, m\u0103sur\u0103tori de reclame \u0219i de con\u021binut","description":"Reclamele \u0219i con\u021binutul pot fi personalizate pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine reclamele \u0219i con\u021binutul. Se poate m\u0103sura performan\u021ba reclamelor \u0219i a con\u021binutului."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Reclame \u0219i con\u021binut personalizate, m\u0103sur\u0103tori de reclame \u0219i de con\u021binut \u0219i informa\u021bii despre audien\u021b\u0103","description":"Reclamele \u0219i con\u021binutul pot fi personalizate pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine reclamele \u0219i con\u021binutul. Se poate m\u0103sura performan\u021ba reclamelor \u0219i a con\u021binutului. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Reclame personalizate \u0219i profil de con\u021binut","description":"Pot fi ad\u0103ugate mai multe date pentru personalizarea reclamelor \u0219i con\u021binutului."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Afi\u0219area reclamelor \u0219i con\u021binutului personalizate","description":"Reclamele \u0219i con\u021binutul pot fi personalizate pe baza unui profil."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Reclame de baz\u0103, m\u0103sur\u0103tori de reclame \u0219i de con\u021binut \u0219i informa\u021bii despre audien\u021b\u0103","description":"Pot fi difuzate reclame de baz\u0103. Se poate m\u0103sura performan\u021ba reclamelor \u0219i a con\u021binutului. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Afi\u0219area reclamelor personalizate, con\u021binut personalizat, m\u0103sur\u0103tori de reclame \u0219i de con\u021binut \u0219i informa\u021bii despre audien\u021b\u0103","description":"Reclamele \u0219i con\u021binutul pot fi personalizate pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine con\u021binutul. Se poate m\u0103sura performan\u021ba reclamelor \u0219i a con\u021binutului. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Afi\u0219area reclamelor personalizate, con\u021binut personalizat, m\u0103sur\u0103tori de reclame \u0219i de con\u021binut, informa\u021bii despre audien\u021b\u0103 \u0219i dezvoltarea produselor","description":"Reclamele \u0219i con\u021binutul pot fi personalizate pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine con\u021binutul. Se poate m\u0103sura performan\u021ba reclamelor \u0219i a con\u021binutului. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul. Datele pot fi utilizate pentru a construi sau \u00eembun\u0103t\u0103\u021bi experien\u021ba utilizatorului, sistemele \u0219i software-ul."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Reclame de baz\u0103, con\u021binut personalizat, m\u0103sur\u0103tori de reclame \u0219i de con\u021binut, \u0219i informa\u021bii despre audien\u021b\u0103","description":"Pot fi difuzate reclame de baz\u0103. Con\u021binutul poate fi personalizat pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine con\u021binutul. Se poate m\u0103sura performan\u021ba reclamelor \u0219i a con\u021binutului. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Reclame de baz\u0103, con\u021binut personalizat, m\u0103sur\u0103tori de reclame \u0219i de con\u021binut, informa\u021bii despre audien\u021b\u0103 \u0219i dezvoltarea produselor","description":"Pot fi difuzate reclame de baz\u0103. Con\u021binutul poate fi personalizat pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine con\u021binutul. Se poate m\u0103sura performan\u021ba reclamelor \u0219i a con\u021binutului. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul. Datele pot fi utilizate pentru a construi sau \u00eembun\u0103t\u0103\u021bi experien\u021ba utilizatorului, sistemele \u0219i software-ul."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Reclame de baz\u0103, con\u021binut personalizat, m\u0103sur\u0103tori de con\u021binut \u0219i informa\u021bii despre audien\u021b\u0103","description":"Pot fi difuzate reclame de baz\u0103. Con\u021binutul poate fi personalizat pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine con\u021binutul. Se poate m\u0103sura performan\u021ba reclamelor \u0219i a con\u021binutului. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Reclame de baz\u0103, con\u021binut personalizat, m\u0103sur\u0103tori de con\u021binut, informa\u021bii despre audien\u021b\u0103 \u0219i dezvoltarea produselor","description":"Pot fi difuzate reclame de baz\u0103. Con\u021binutul poate fi personalizat pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine con\u021binutul. Se poate m\u0103sura performan\u021ba con\u021binutului. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul. Datele pot fi utilizate pentru a construi sau \u00eembun\u0103t\u0103\u021bi experien\u021ba utilizatorului, sistemele \u0219i software-ul."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Reclame de baz\u0103, con\u021binut personalizat \u0219i m\u0103sur\u0103tori ale reclamelor","description":"Pot fi difuzate reclame de baz\u0103. Con\u021binutul poate fi personalizat pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine con\u021binutul. Se poate m\u0103sura performan\u021ba reclamelor."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Reclame de baz\u0103, con\u021binut personalizat, m\u0103sur\u0103tori ale reclamelor \u0219i dezvoltarea produselor","description":"Pot fi difuzate reclame de baz\u0103. Con\u021binutul poate fi personalizat pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine con\u021binutul. Se poate m\u0103sura performan\u021ba reclamelor. Datele pot fi utilizate pentru a construi sau \u00eembun\u0103t\u0103\u021bi experien\u021ba utilizatorului, sistemele \u0219i software-ul."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Reclame personalizate, m\u0103sur\u0103tori de reclame \u0219i dezvoltare de produse","description":"Reclamele pot fi personalizate pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine reclamele. Se poate m\u0103sura performan\u021ba reclamelor. Datele pot fi utilizate pentru a construi sau \u00eembun\u0103t\u0103\u021bi experien\u021ba utilizatorului, sistemele \u0219i software-ul."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Reclame personalizate, m\u0103sur\u0103tori de reclame, informa\u021bii despre audien\u021b\u0103 \u0219i dezvoltare de produse","description":"Reclamele pot fi personalizate pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine reclamele. Se poate m\u0103sura performan\u021ba reclamelor. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul. Datele pot fi utilizate pentru a construi sau a \u00eembun\u0103t\u0103\u021bi experien\u021ba utilizatorului, sistemele \u0219i software-ul."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Reclame personalizate, m\u0103sur\u0103tori de reclame \u0219i con\u021binut, informa\u021bii despre audien\u021b\u0103 \u0219i dezvoltare de produse","description":"Reclamele pot fi personalizate pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine reclamele. Se poate m\u0103sura performan\u021ba reclamelor \u0219i a con\u021binutului. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul. Datele pot fi utilizate pentru a construi sau a \u00eembun\u0103t\u0103\u021bi experien\u021ba utilizatorului, sistemele \u0219i software-ul."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Reclame personalizate, afi\u0219area de con\u021binut personalizat, m\u0103sur\u0103tori de reclame \u0219i de con\u021binut, informa\u021bii despre audien\u021b\u0103 \u0219i dezvoltare de produse","description":"Reclamele \u0219i con\u021binutul pot fi personalizate pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine reclamele. Se poate m\u0103sura performan\u021ba reclamelor \u0219i a con\u021binutului. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul. Datele pot fi utilizate pentru a construi sau a \u00eembun\u0103t\u0103\u021bi experien\u021ba utilizatorului, sistemele \u0219i software-ul."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Reclame \u0219i con\u021binut personalizate, m\u0103sur\u0103tori de reclame \u0219i de con\u021binut, informa\u021bii despre audien\u021b\u0103 \u0219i dezvoltare de produse","description":"Reclamele \u0219i con\u021binutul pot fi personalizate pe baza unui profil. Pot fi ad\u0103ugate mai multe date pentru a personaliza mai bine reclamele \u0219i con\u021binutul. Se poate m\u0103sura performan\u021ba reclamelor \u0219i a con\u021binutului. Pot fi derivate informa\u021bii despre publicul care a v\u0103zut reclamele \u0219i con\u021binutul. Datele pot fi utilizate pentru a construi sau a \u00eembun\u0103t\u0103\u021bi experien\u021ba utilizatorului, sistemele \u0219i software-ul."}}} \ No newline at end of file diff --git a/src/s1/config/2.0/purposes/purposes-ru.json b/src/s1/config/2.0/purposes/purposes-ru.json index 215a3a91..2c0f8192 100644 --- a/src/s1/config/2.0/purposes/purposes-ru.json +++ b/src/s1/config/2.0/purposes/purposes-ru.json @@ -1 +1 @@ -{"vendorListVersion":79,"lastUpdated":"2021-02-25T16:36:24Z","purposes":{"1":{"id":1,"name":"\u0425\u0440\u0430\u043d\u0435\u043d\u0438\u0435 \u0438 (\u0438\u043b\u0438) \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435","description":"\u0424\u0430\u0439\u043b\u044b cookie, \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u044b \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 \u0438\u043b\u0438 \u0434\u0440\u0443\u0433\u0430\u044f \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043c\u043e\u0433\u0443\u0442 \u0445\u0440\u0430\u043d\u0438\u0442\u044c\u0441\u044f \u0438\u043b\u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u043d\u0430 \u0432\u0430\u0448\u0435\u043c \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435 \u0434\u043b\u044f \u0446\u0435\u043b\u0435\u0439, \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u043d\u044b\u0445 \u0432\u0430\u043c.","descriptionLegal":"\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u0425\u0440\u0430\u043d\u0438\u0442\u044c \u0438 \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u0442\u0430\u043a\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435, \u043a\u0430\u043a \u0444\u0430\u0439\u043b\u044b cookie \u0438 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u044b \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432, \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u043c\u044b\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e.\n"},"2":{"id":2,"name":"\u0412\u044b\u0431\u043e\u0440 \u0431\u0430\u0437\u043e\u0432\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u043c\u043e\u0433\u0443\u0442 \u043f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c\u0441\u044f \u0432\u0430\u043c \u0432 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0438 \u043e\u0442 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u0435\u043c\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u043e\u0433\u043e \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u043f\u0440\u0438\u0431\u043b\u0438\u0437\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0438\u043b\u0438 \u0442\u0438\u043f\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430.","descriptionLegal":"\u0414\u043b\u044f \u0432\u044b\u0431\u043e\u0440\u0430 \u0431\u0430\u0437\u043e\u0432\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u043f\u043e\u043b\u0443\u0447\u0430\u0435\u043c\u0443\u044e \u0432 \u0440\u0435\u0436\u0438\u043c\u0435 \u0440\u0435\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442\u0435, \u0432 \u043a\u043e\u0442\u043e\u0440\u043e\u043c \u0431\u0443\u0434\u0435\u0442 \u043f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c\u0441\u044f \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u043e\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0435, \u0432\u043a\u043b\u044e\u0447\u0430\u044f \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0435 \u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440: \u0442\u0438\u043f \u0438 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0430\u0433\u0435\u043d\u0442, URL-\u0430\u0434\u0440\u0435\u0441, IP-\u0430\u0434\u0440\u0435\u0441 \n* \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u043d\u0435\u0442\u043e\u0447\u043d\u044b\u0435 \u0433\u0435\u043e\u043b\u043e\u043a\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\n* \u0423\u043f\u0440\u0430\u0432\u043b\u044f\u0442\u044c \u0447\u0430\u0441\u0442\u043e\u0442\u043e\u0439 \u043f\u043e\u043a\u0430\u0437\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e.\n* \u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0442\u044c \u043f\u043e\u0440\u044f\u0434\u043e\u043a, \u0432 \u043a\u043e\u0442\u043e\u0440\u043e\u043c \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u043f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u044e\u0442\u0441\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e.\n* \u0417\u0430\u043f\u0440\u0435\u0449\u0430\u0442\u044c \u043f\u043e\u043a\u0430\u0437 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0432 \u043d\u0435\u043f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0435\u043c \u0440\u0435\u0434\u0430\u043a\u0446\u0438\u043e\u043d\u043d\u043e\u043c (\u043d\u0435\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u043c \u0434\u043b\u044f \u0431\u0440\u0435\u043d\u0434\u0430) \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442\u0435\n\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u043d\u0435 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u0421\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043f\u0440\u043e\u0444\u0438\u043b\u044c \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044f \u044d\u0442\u0443 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u0434\u043b\u044f \u0432\u044b\u0431\u043e\u0440\u0430 \u0431\u0443\u0434\u0443\u0449\u0438\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439 \u0431\u0435\u0437 \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0437\u0430\u043a\u043e\u043d\u043d\u043e\u0433\u043e \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u044f \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439.\n\u041f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u0435. \u0422\u0435\u0440\u043c\u0438\u043d \u00ab\u043d\u0435\u0442\u043e\u0447\u043d\u044b\u0439\u00bb \u043e\u0437\u043d\u0430\u0447\u0430\u0435\u0442, \u0447\u0442\u043e \u0434\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u043f\u0440\u0438\u0431\u043b\u0438\u0437\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435, \u0432\u043a\u043b\u044e\u0447\u0430\u044e\u0449\u0435\u0435, \u043f\u043e \u043a\u0440\u0430\u0439\u043d\u0435\u0439 \u043c\u0435\u0440\u0435, \u0440\u0430\u0434\u0438\u0443\u0441 500 \u043c\u0435\u0442\u0440\u043e\u0432.\n"},"3":{"id":3,"name":"\u0421\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439","description":"\u041f\u0440\u043e\u0444\u0438\u043b\u044c \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0441\u043e\u0437\u0434\u0430\u043d \u043e \u0432\u0430\u0441 \u0438 \u0432\u0430\u0448\u0438\u0445 \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u0430\u0445 \u0434\u043b\u044f \u043f\u043e\u043a\u0430\u0437\u0430 \u0432\u0430\u043c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439, \u0438\u043c\u0435\u044e\u0449\u0438\u0445 \u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0435 \u043a \u0432\u0430\u043c.","descriptionLegal":"\u0414\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u0421\u043e\u0431\u0438\u0440\u0430\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435, \u0432\u043a\u043b\u044e\u0447\u0430\u044f \u0435\u0433\u043e \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c, \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u044b, \u043f\u043e\u0441\u0435\u0449\u0435\u043d\u0438\u044f \u0441\u0430\u0439\u0442\u043e\u0432 \u0438\u043b\u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u0434\u0435\u043c\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u0443\u044e \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u0438\u043b\u0438 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435, \u0441 \u0446\u0435\u043b\u044c\u044e \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0438\u043b\u0438 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0434\u043b\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0432 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u0440\u0435\u043a\u043b\u0430\u043c\u0435.\n* \u041e\u0431\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u0435 \u044d\u0442\u0443 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u0441 \u0434\u0440\u0443\u0433\u043e\u0439 \u0440\u0430\u043d\u0435\u0435 \u0441\u043e\u0431\u0440\u0430\u043d\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0435\u0439, \u0432 \u0442\u043e\u043c \u0447\u0438\u0441\u043b\u0435 \u0441 \u0440\u0430\u0437\u043d\u044b\u0445 \u0432\u0435\u0431-\u0441\u0430\u0439\u0442\u043e\u0432 \u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0439, \u0447\u0442\u043e\u0431\u044b \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0438\u043b\u0438 \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043f\u0440\u043e\u0444\u0438\u043b\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0434\u043b\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0432 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u0440\u0435\u043a\u043b\u0430\u043c\u0435."},"4":{"id":4,"name":"\u0412\u044b\u0431\u043e\u0440 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439","description":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u043c\u043e\u0433\u0443\u0442 \u043f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c\u0441\u044f \u0432\u0430\u043c \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u0432\u0430\u0448\u0435\u0433\u043e \u043f\u0440\u043e\u0444\u0438\u043b\u044f.","descriptionLegal":"\u0414\u043b\u044f \u0432\u044b\u0431\u043e\u0440\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u0412\u044b\u0431\u0438\u0440\u0430\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0438\u043b\u0438 \u0434\u0440\u0443\u0433\u0438\u0445 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u0434\u0430\u043d\u043d\u044b\u0445 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f, \u0432\u043a\u043b\u044e\u0447\u0430\u044f \u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0438\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f, \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u044b, \u043f\u043e\u0441\u0435\u0449\u0435\u043d\u0438\u044f \u0441\u0430\u0439\u0442\u043e\u0432 \u0438\u043b\u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0438\u043b\u0438 \u0434\u0435\u043c\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u0443\u044e \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e."},"5":{"id":5,"name":"\u0421\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430","description":"\u041f\u0440\u043e\u0444\u0438\u043b\u044c \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0441\u043e\u0437\u0434\u0430\u043d \u043e \u0432\u0430\u0441 \u0438 \u0432\u0430\u0448\u0438\u0445 \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u0430\u0445 \u0434\u043b\u044f \u043f\u043e\u043a\u0430\u0437\u0430 \u0432\u0430\u043c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u0438\u043c\u0435\u044e\u0449\u0435\u0433\u043e \u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0435 \u043a \u0432\u0430\u043c.","descriptionLegal":"\u0414\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u0421\u043e\u0431\u0438\u0440\u0430\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435, \u0432\u043a\u043b\u044e\u0447\u0430\u044f \u0435\u0433\u043e \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c, \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u044b, \u043f\u043e\u0441\u0435\u0449\u0435\u043d\u0438\u044f \u0441\u0430\u0439\u0442\u043e\u0432 \u0438\u043b\u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u0434\u0435\u043c\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u0443\u044e \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u0438\u043b\u0438 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435, \u0441 \u0446\u0435\u043b\u044c\u044e \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0438\u043b\u0438 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0434\u043b\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430.\n* \u041e\u0431\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u0435 \u044d\u0442\u0443 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u0441 \u0434\u0440\u0443\u0433\u043e\u0439 \u0440\u0430\u043d\u0435\u0435 \u0441\u043e\u0431\u0440\u0430\u043d\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0435\u0439, \u0432 \u0442\u043e\u043c \u0447\u0438\u0441\u043b\u0435 \u0441 \u0440\u0430\u0437\u043d\u044b\u0445 \u0432\u0435\u0431-\u0441\u0430\u0439\u0442\u043e\u0432 \u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0439, \u0447\u0442\u043e\u0431\u044b \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0438\u043b\u0438 \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043f\u0440\u043e\u0444\u0438\u043b\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0434\u043b\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0432 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430."},"6":{"id":6,"name":"\u0412\u044b\u0431\u043e\u0440 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430","description":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c\u0441\u044f \u0432\u0430\u043c \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u0432\u0430\u0448\u0435\u0433\u043e \u043f\u0440\u043e\u0444\u0438\u043b\u044f.","descriptionLegal":"\u0414\u043b\u044f \u0432\u044b\u0431\u043e\u0440\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u0412\u044b\u0431\u0438\u0440\u0430\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043d\u0442\u0435\u043d\u0442 \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0438\u043b\u0438 \u0434\u0440\u0443\u0433\u0438\u0445 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u0434\u0430\u043d\u043d\u044b\u0445 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f, \u0432\u043a\u043b\u044e\u0447\u0430\u044f \u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0438\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f, \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u044b, \u043f\u043e\u0441\u0435\u0449\u0435\u043d\u0438\u044f \u0441\u0430\u0439\u0442\u043e\u0432 \u0438\u043b\u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0438\u043b\u0438 \u0434\u0435\u043c\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u0443\u044e \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e."},"7":{"id":7,"name":"\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b","description":"\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0438 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b, \u043a\u043e\u0442\u043e\u0440\u0443\u044e \u0432\u044b \u0432\u0438\u0434\u0438\u0442\u0435 \u0438\u043b\u0438 \u0441 \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u0432\u044b \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0443\u0435\u0442\u0435.","descriptionLegal":"\u0414\u043b\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0442\u044c \u0444\u0430\u043a\u0442 \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u0438 \u0435\u0433\u043e \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441 \u043d\u0438\u043c\u0438\n* \u041f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0442\u044c \u043e\u0442\u0447\u0435\u0442\u044b \u043e \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f\u0445, \u0432\u043a\u043b\u044e\u0447\u0430\u044f \u0438\u0445 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c \u0438 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c\n* \u041f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0442\u044c \u043e\u0442\u0447\u0435\u0442\u044b \u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u043e\u0432\u0430\u043b\u0438 \u0441 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u043c\u0438 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f\u043c\u0438, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044f \u0434\u0430\u043d\u043d\u044b\u0435, \u043d\u0430\u0431\u043b\u044e\u0434\u0430\u0435\u043c\u044b\u0435 \u0432 \u0445\u043e\u0434\u0435 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0441 \u044d\u0442\u043e\u0439 \u0440\u0435\u043a\u043b\u0430\u043c\u043e\u0439\n* \u041f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0442\u044c \u0438\u0437\u0434\u0430\u0442\u0435\u043b\u044f\u043c \u043e\u0442\u0447\u0435\u0442\u044b \u043e \u0440\u0435\u043a\u043b\u0430\u043c\u0435, \u043f\u043e\u043a\u0430\u0437\u0430\u043d\u043d\u043e\u0439 \u043d\u0430 \u0438\u0445 \u0441\u0430\u0439\u0442\u0430\u0445\n* \u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0442\u044c, \u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0430 \u0432 \u043f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0435\u0439 \u0440\u0435\u0434\u0430\u043a\u0446\u0438\u043e\u043d\u043d\u043e\u0439 \u0441\u0440\u0435\u0434\u0435 (\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0439 \u0434\u043b\u044f \u0431\u0440\u0435\u043d\u0434\u0430)\n* \u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0442\u044c \u043f\u0440\u043e\u0446\u0435\u043d\u0442 \u0440\u0435\u043a\u043b\u0430\u043c\u044b, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0438\u043c\u0435\u043b\u0430 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u0431\u044b\u0442\u044c \u0443\u0432\u0438\u0434\u0435\u043d\u043d\u043e\u0439, \u0438 \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u044d\u0442\u043e\u0439 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \n\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u043d\u0435 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u041f\u0440\u0438\u043c\u0435\u043d\u044f\u0442\u044c \u043f\u0430\u043d\u0435\u043b\u044c\u043d\u044b\u0435 \u0438\u043b\u0438 \u0430\u043d\u0430\u043b\u043e\u0433\u0438\u0447\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435 \u0430\u043d\u0430\u043b\u0438\u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438 \u043a \u0434\u0430\u043d\u043d\u044b\u043c \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0431\u0435\u0437 \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0437\u0430\u043a\u043e\u043d\u043d\u043e\u0433\u043e \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u044f \u0434\u043b\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u0430\u0440\u043a\u0435\u0442\u0438\u043d\u0433\u043e\u0432\u044b\u0445 \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0439 \u0441 \u0446\u0435\u043b\u044c\u044e \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u0430\u043d\u0430\u043b\u0438\u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438."},"8":{"id":8,"name":"\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430","description":"\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0438 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0432\u044b \u0432\u0438\u0434\u0438\u0442\u0435, \u0438\u043b\u0438 \u0441 \u043a\u043e\u0442\u043e\u0440\u044b\u043c \u0432\u044b \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0443\u0435\u0442\u0435.","descriptionLegal":"\u0414\u043b\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0442\u044c \u0438 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0442\u044c \u043e\u0442\u0447\u0435\u0442\u044b \u043e \u0441\u043f\u043e\u0441\u043e\u0431\u0430\u0445 \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u0438 \u0435\u0433\u043e \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441 \u043d\u0438\u043c\n* \u041f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0442\u044c \u043e\u0442\u0447\u0435\u0442\u043d\u043e\u0441\u0442\u044c, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044f \u043d\u0435\u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0435\u043d\u043d\u043e \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u043c\u0443\u044e \u0438\u043b\u0438 \u0438\u0437\u0432\u0435\u0441\u0442\u043d\u0443\u044e \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e, \u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u043e\u0432\u0430\u043b\u0438 \u0441 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u043e\u043c\n\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u043d\u0435 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0442\u044c \u0444\u0430\u043a\u0442 \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439 (\u0432 \u0442\u043e\u043c \u0447\u0438\u0441\u043b\u0435 \u043d\u0430\u0442\u0438\u0432\u043d\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439) \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u0438 \u0435\u0433\u043e \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441 \u043d\u0438\u043c\u0438\n* \u041f\u0440\u0438\u043c\u0435\u043d\u044f\u0442\u044c \u043f\u0430\u043d\u0435\u043b\u044c\u043d\u044b\u0435 \u0438\u043b\u0438 \u0430\u043d\u0430\u043b\u043e\u0433\u0438\u0447\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435 \u0430\u043d\u0430\u043b\u0438\u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438 \u043a \u0434\u0430\u043d\u043d\u044b\u043c \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0431\u0435\u0437 \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0437\u0430\u043a\u043e\u043d\u043d\u043e\u0433\u043e \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u044f \u0434\u043b\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u0430\u0440\u043a\u0435\u0442\u0438\u043d\u0433\u043e\u0432\u044b\u0445 \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0439 \u0441 \u0446\u0435\u043b\u044c\u044e \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u0430\u043d\u0430\u043b\u0438\u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438.\n"},"9":{"id":9,"name":"\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u043c\u0430\u0440\u043a\u0435\u0442\u0438\u043d\u0433\u043e\u0432\u044b\u0445 \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0439 \u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u0430\u043d\u0430\u043b\u0438\u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438","description":"\u041c\u0430\u0440\u043a\u0435\u0442\u0438\u043d\u0433\u043e\u0432\u044b\u0435 \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u044b \u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043f\u043e\u0441\u0435\u0449\u0430\u044e\u0449\u0438\u0445 \u0441\u0430\u0439\u0442\u044b/\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0438 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u044e\u0449\u0438\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u0443.","descriptionLegal":"\u0414\u043b\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u0430\u0440\u043a\u0435\u0442\u0438\u043d\u0433\u043e\u0432\u044b\u0445 \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0439 \u0441 \u0446\u0435\u043b\u044c\u044e \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u0430\u043d\u0430\u043b\u0438\u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u041f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0442\u044c \u0440\u0435\u043a\u043b\u0430\u043c\u043e\u0434\u0430\u0442\u0435\u043b\u044f\u043c \u0438\u043b\u0438 \u0438\u0445 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u044f\u043c \u0441\u0432\u043e\u0434\u043d\u044b\u0435 \u043e\u0442\u0447\u0435\u0442\u044b \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043e\u0445\u0432\u0430\u0442\u044b\u0432\u0430\u0435\u043c\u044b\u0445 \u0438\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u043c\u0438 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f\u043c\u0438, \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043f\u0430\u043d\u0435\u043b\u044c\u043d\u044b\u0445 \u0438 \u0430\u043d\u0430\u043b\u043e\u0433\u0438\u0447\u043d\u044b\u0445 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u043e\u0432.\n* \u041f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0442\u044c \u0438\u0437\u0434\u0430\u0442\u0435\u043b\u044f\u043c \u0441\u0432\u043e\u0434\u043d\u044b\u0435 \u043e\u0442\u0447\u0435\u0442\u044b \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0431\u044b\u043b\u0438 \u043e\u0445\u0432\u0430\u0447\u0435\u043d\u044b \u0438\u043b\u0438 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u043e\u0432\u0430\u043b\u0438 \u0441 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u043e\u043c \u0438 (\u0438\u043b\u0438) \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u043c\u0438 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f\u043c\u0438 \u043d\u0430 \u0438\u0445 \u0440\u0435\u0441\u0443\u0440\u0441\u0430\u0445, \u043f\u0440\u0438\u043c\u0435\u043d\u044f\u044f \u043f\u0430\u043d\u0435\u043b\u044c\u043d\u044b\u0435 \u0438 \u0430\u043d\u0430\u043b\u043e\u0433\u0438\u0447\u043d\u044b\u0435 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \n* \u0421\u0432\u044f\u0437\u044b\u0432\u0430\u0442\u044c \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435 \u0441 \u043e\u043d\u043b\u0430\u0439\u043d-\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c \u0434\u043b\u044f \u0446\u0435\u043b\u0435\u0439 \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u044f \u0440\u044b\u043d\u043a\u0430, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438, \u0435\u0441\u043b\u0438 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u043e\u0431\u044a\u044f\u0432\u0438\u043b\u0438 \u043e \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0441\u0442\u0438 \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043e\u0431\u044a\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u044b\u0445 \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u043e\u0432 \u0434\u0430\u043d\u043d\u044b\u0445 (\u0444\u0443\u043d\u043a\u0446\u0438\u044f 1)\n\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u043d\u0435 \u0432\u043f\u0440\u0430\u0432\u0435: \n* \u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0442\u044c \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c \u0438 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c \u0440\u0435\u043a\u043b\u0430\u043c\u044b, \u043a\u043e\u0442\u043e\u0440\u0443\u044e \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b \u0438\u043b\u0438 \u0441 \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u043e\u0432\u0430\u043b \u043a\u043e\u043d\u043a\u0440\u0435\u0442\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c, \u0431\u0435\u0437 \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0437\u0430\u043a\u043e\u043d\u043d\u043e\u0433\u043e \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u044f \u0434\u043b\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b.\n* \u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0442\u044c, \u043a\u0430\u043a\u043e\u0439 \u043a\u043e\u043d\u0442\u0435\u043d\u0442 \u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u043b\u0441\u044f \u043a\u043e\u043d\u043a\u0440\u0435\u0442\u043d\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e, \u0438 \u043a\u0430\u043a \u043e\u043d \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u043e\u0432\u0430\u043b \u0441 \u043d\u0438\u043c, \u0431\u0435\u0437 \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0437\u0430\u043a\u043e\u043d\u043d\u043e\u0433\u043e \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u044f \u0434\u043b\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430.\n"},"10":{"id":10,"name":"\u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u0438 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u0435 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432","description":"\u0412\u0430\u0448\u0438 \u0434\u0430\u043d\u043d\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0443\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u044f \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0445 \u0441\u0438\u0441\u0442\u0435\u043c \u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0433\u043e \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f, \u0430 \u0442\u0430\u043a\u0436\u0435 \u0434\u043b\u044f \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u043d\u043e\u0432\u044b\u0445 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432.","descriptionLegal":"\u0414\u043b\u044f \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u043d\u043e\u0432\u044b\u0445 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432 \u0438 \u0438\u0445 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u0434\u043b\u044f \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u0441\u0432\u043e\u0438\u0445 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0445 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432 \u043d\u043e\u0432\u044b\u043c\u0438 \u0444\u0443\u043d\u043a\u0446\u0438\u044f\u043c\u0438 \u0438 \u0434\u043b\u044f \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u043d\u043e\u0432\u044b\u0445 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432\n* \u0421\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c \u043d\u043e\u0432\u044b\u0435 \u043c\u043e\u0434\u0435\u043b\u0438 \u0438 \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u044b \u0441 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u043c \u043c\u0430\u0448\u0438\u043d\u043d\u043e\u0433\u043e \u043e\u0431\u0443\u0447\u0435\u043d\u0438\u044f\n\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u043d\u0435 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u041f\u0440\u043e\u0432\u043e\u0434\u0438\u0442\u044c \u043b\u044e\u0431\u0443\u044e \u0434\u0440\u0443\u0433\u0443\u044e \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044e \u043f\u043e \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0435 \u0434\u0430\u043d\u043d\u044b\u0445, \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u043d\u0443\u044e \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0438 \u0434\u0440\u0443\u0433\u043e\u0439 \u0446\u0435\u043b\u0438, \u0432 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u0438 \u0441 \u044d\u0442\u043e\u0439 \u0446\u0435\u043b\u044c\u044e\n"}},"specialPurposes":{"1":{"id":1,"name":"\u041e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u0435 \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438, \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0449\u0435\u043d\u0438\u0435 \u043c\u043e\u0448\u0435\u043d\u043d\u0438\u0447\u0435\u0441\u0442\u0432\u0430 \u0438 \u0443\u0441\u0442\u0440\u0430\u043d\u0435\u043d\u0438\u0435 \u0434\u0435\u0444\u0435\u043a\u0442\u043e\u0432","description":"\u0412\u0430\u0448\u0438 \u0434\u0430\u043d\u043d\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u043c\u043e\u043d\u0438\u0442\u043e\u0440\u0438\u043d\u0433\u0430 \u0438 \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0449\u0435\u043d\u0438\u044f \u043c\u043e\u0448\u0435\u043d\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0439, \u0430 \u0442\u0430\u043a\u0436\u0435 \u0434\u043b\u044f \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f \u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e\u0439 \u0438 \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0439 \u0440\u0430\u0431\u043e\u0442\u044b \u0441\u0438\u0441\u0442\u0435\u043c \u0438 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0432.","descriptionLegal":"\u0414\u043b\u044f \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438, \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0449\u0435\u043d\u0438\u044f \u043c\u043e\u0448\u0435\u043d\u043d\u0438\u0447\u0435\u0441\u0442\u0432\u0430 \u0438 \u0443\u0441\u0442\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0434\u0435\u0444\u0435\u043a\u0442\u043e\u0432 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u041e\u0431\u0435\u0441\u043f\u0435\u0447\u0438\u0432\u0430\u0442\u044c \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u0443\u044e \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0443 \u0434\u0430\u043d\u043d\u044b\u0445 \n* \u041e\u0431\u043d\u0430\u0440\u0443\u0436\u0438\u0432\u0430\u0442\u044c \u0438 \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0449\u0430\u0442\u044c \u0432\u0440\u0435\u0434\u043e\u043d\u043e\u0441\u043d\u044b\u0435, \u043c\u043e\u0448\u0435\u043d\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0435, \u043d\u0435\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0438\u043b\u0438 \u043d\u0435\u0437\u0430\u043a\u043e\u043d\u043d\u044b\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f.\n* \u041e\u0431\u0435\u0441\u043f\u0435\u0447\u0438\u0432\u0430\u0442\u044c \u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u0443\u044e \u0438 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u0443\u044e \u0440\u0430\u0431\u043e\u0442\u0443 \u0441\u0438\u0441\u0442\u0435\u043c \u0438 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0432, \u0432 \u0442\u043e\u043c \u0447\u0438\u0441\u043b\u0435 \u0434\u043b\u044f \u043c\u043e\u043d\u0438\u0442\u043e\u0440\u0438\u043d\u0433\u0430 \u0438 \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0441\u0438\u0441\u0442\u0435\u043c \u0438 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0432, \u0437\u0430\u0434\u0435\u0439\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u0432 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u043d\u044b\u0445 \u0446\u0435\u043b\u044f\u0445\n\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u043d\u0435 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u041f\u0440\u043e\u0432\u043e\u0434\u0438\u0442\u044c \u043b\u044e\u0431\u0443\u044e \u0434\u0440\u0443\u0433\u0443\u044e \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044e \u043f\u043e \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0435 \u0434\u0430\u043d\u043d\u044b\u0445, \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u043d\u0443\u044e \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0438 \u0434\u0440\u0443\u0433\u043e\u0439 \u0446\u0435\u043b\u0438, \u0432 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u0438 \u0441 \u044d\u0442\u043e\u0439 \u0446\u0435\u043b\u044c\u044e.\n\u041f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u0435: \u0414\u0430\u043d\u043d\u044b\u0435, \u0441\u043e\u0431\u0438\u0440\u0430\u0435\u043c\u044b\u0435 \u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u044b\u0435 \u0434\u043b\u044f \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438, \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0449\u0435\u043d\u0438\u044f \u043c\u043e\u0448\u0435\u043d\u043d\u0438\u0447\u0435\u0441\u0442\u0432\u0430 \u0438 \u0443\u0441\u0442\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0434\u0435\u0444\u0435\u043a\u0442\u043e\u0432, \u043c\u043e\u0433\u0443\u0442 \u0432\u043a\u043b\u044e\u0447\u0430\u0442\u044c \u0432 \u0441\u0435\u0431\u044f \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u044f\u0435\u043c\u044b\u0435 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 \u0434\u043b\u044f \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438, \u0442\u043e\u0447\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435 \u0433\u0435\u043e\u043b\u043e\u043a\u0430\u0446\u0438\u0438 \u0438 \u0434\u0430\u043d\u043d\u044b\u0435, \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u044b\u0435 \u043f\u0443\u0442\u0435\u043c \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0433\u043e \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 \u0434\u043b\u044f \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438 \u0431\u0435\u0437 \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0440\u0430\u0441\u043a\u0440\u044b\u0442\u0438\u044f \u0438 (\u0438\u043b\u0438) \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438.\n"},"2":{"id":2,"name":"\u0422\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0430\u044f \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438\u043b\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430","description":"\u0412\u0430\u0448\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0438 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u044f\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e, \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u044e\u0449\u0443\u044e \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u0442\u044c \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442, \u0430 \u0442\u0430\u043a\u0436\u0435 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u043e\u0432\u0430\u0442\u044c \u0441 \u043d\u0438\u043c\u0438.","descriptionLegal":"\u0414\u043b\u044f \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0438 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u0438 \u043e\u0442\u0432\u0435\u0442\u0430 \u043d\u0430 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0437\u0430\u043f\u0440\u043e\u0441\u044b \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c IP-\u0430\u0434\u0440\u0435\u0441 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0434\u043b\u044f \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0447\u0435\u0440\u0435\u0437 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\n* \u0420\u0435\u0430\u0433\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043d\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0441 \u0440\u0435\u043a\u043b\u0430\u043c\u043e\u0439, \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u044f\u044f \u0435\u0433\u043e \u043d\u0430 \u0446\u0435\u043b\u0435\u0432\u0443\u044e \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443\n* \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c IP-\u0430\u0434\u0440\u0435\u0441 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0434\u043b\u044f \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0447\u0435\u0440\u0435\u0437 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\n* \u0420\u0435\u0430\u0433\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043d\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0441 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u043e\u043c, \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u044f\u044f \u0435\u0433\u043e \u043d\u0430 \u0446\u0435\u043b\u0435\u0432\u0443\u044e \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443\n* \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e \u0442\u0438\u043f\u0435 \u0438 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044f\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0434\u043b\u044f \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438\u043b\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u0434\u043b\u044f \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u043e\u0433\u043e \u043a\u0440\u0435\u0430\u0442\u0438\u0432\u0430 \u043d\u0443\u0436\u043d\u043e\u0433\u043e \u0440\u0430\u0437\u043c\u0435\u0440\u0430 \u0438\u043b\u0438 \u0432\u0438\u0434\u0435\u043e\u0444\u0430\u0439\u043b\u0430 \u0432 \u0444\u043e\u0440\u043c\u0430\u0442\u0435, \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u043c\u043e\u043c \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e\u043c\n\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u043d\u0435 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u041f\u0440\u043e\u0432\u043e\u0434\u0438\u0442\u044c \u043b\u044e\u0431\u0443\u044e \u0434\u0440\u0443\u0433\u0443\u044e \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044e \u043f\u043e \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0435 \u0434\u0430\u043d\u043d\u044b\u0445, \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u043d\u0443\u044e \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0438 \u0434\u0440\u0443\u0433\u043e\u0439 \u0446\u0435\u043b\u0438, \u0432 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u0438 \u0441 \u044d\u0442\u043e\u0439 \u0446\u0435\u043b\u044c\u044e\n"}},"features":{"1":{"id":1,"name":"\u0421\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0438 \u043e\u0431\u044a\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u043e\u0432 \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u044b\u0445 \u0434\u0430\u043d\u043d\u044b\u0445","description":"\u0414\u0430\u043d\u043d\u044b\u0435 \u0438\u0437 \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u044b\u0445 \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u043e\u0432 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043e\u0431\u044a\u0435\u0434\u0438\u043d\u0435\u043d\u044b \u0441 \u0434\u0430\u043d\u043d\u044b\u043c\u0438 \u0432\u0430\u0448\u0435\u0439 \u043e\u043d\u043b\u0430\u0439\u043d-\u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0434\u043b\u044f \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0438 \u043e\u0434\u043d\u043e\u0439 \u0438\u043b\u0438 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u0446\u0435\u043b\u0435\u0439.","descriptionLegal":"\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u0432\u043f\u0440\u0430\u0432\u0435: \n* \u041e\u0431\u044a\u0435\u0434\u0438\u043d\u044f\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0435, \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u044b\u0435 \u0432 \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u043e\u043c \u0440\u0435\u0436\u0438\u043c\u0435, \u0441 \u0434\u0430\u043d\u043d\u044b\u043c\u0438, \u0441\u043e\u0431\u0440\u0430\u043d\u043d\u044b\u043c\u0438 \u0432 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0435, \u0434\u043b\u044f \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0438 \u043e\u0434\u043d\u043e\u0439 \u0438\u043b\u0438 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u0446\u0435\u043b\u0435\u0439 \u0438\u043b\u0438 \u0421\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0445 \u0446\u0435\u043b\u0435\u0439.\n"},"2":{"id":2,"name":"\u0421\u0432\u044f\u0437\u044b\u0432\u0430\u043d\u0438\u0435 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432","description":"\u0420\u0430\u0437\u043b\u0438\u0447\u043d\u044b\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u044b \u043a\u0430\u043a \u043f\u0440\u0438\u043d\u0430\u0434\u043b\u0435\u0436\u0430\u0449\u0438\u0435 \u0432\u0430\u043c \u0438\u043b\u0438 \u0432\u0430\u0448\u0435\u0439 \u0441\u0435\u043c\u044c\u0435 \u0432 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 \u043e\u0434\u043d\u043e\u0439 \u0438\u043b\u0438 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u0446\u0435\u043b\u0435\u0439.","descriptionLegal":"\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u0414\u0435\u0442\u0435\u0440\u043c\u0438\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0442\u044c, \u0447\u0442\u043e \u0434\u0432\u0430 \u0438\u043b\u0438 \u0431\u043e\u043b\u0435\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 \u043f\u0440\u0438\u043d\u0430\u0434\u043b\u0435\u0436\u0430\u0442 \u043e\u0434\u043d\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u0438\u043b\u0438 \u0433\u0440\u0443\u043f\u043f\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439\n* \u0412 \u0432\u0435\u0440\u043e\u044f\u0442\u043d\u043e\u0441\u0442\u043d\u043e\u043c \u0441\u043c\u044b\u0441\u043b\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0442\u044c, \u0447\u0442\u043e \u0434\u0432\u0430 \u0438\u043b\u0438 \u0431\u043e\u043b\u0435\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 \u043f\u0440\u0438\u043d\u0430\u0434\u043b\u0435\u0436\u0430\u0442 \u043e\u0434\u043d\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u0438\u043b\u0438 \u0433\u0440\u0443\u043f\u043f\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439\n* \u0410\u043a\u0442\u0438\u0432\u043d\u043e \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 \u0434\u043b\u044f \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438 \u0432 \u0432\u0435\u0440\u043e\u044f\u0442\u043d\u043e\u0441\u0442\u043d\u043e\u043c \u0441\u043c\u044b\u0441\u043b\u0435, \u0435\u0441\u043b\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438 \u0440\u0430\u0437\u0440\u0435\u0448\u0438\u043b\u0438 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0430\u043c \u0430\u043a\u0442\u0438\u0432\u043d\u043e \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 \u0434\u043b\u044f \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438 (\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u0430\u044f \u0444\u0443\u043d\u043a\u0446\u0438\u044f 2)\n"},"3":{"id":3,"name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u044f\u0435\u043c\u044b\u0445 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0434\u043b\u044f \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438","description":"\u0412\u0430\u0448\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e \u043c\u043e\u0436\u043d\u043e \u043e\u0442\u043b\u0438\u0447\u0438\u0442\u044c \u043e\u0442 \u0434\u0440\u0443\u0433\u0438\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438, \u043a\u043e\u0442\u043e\u0440\u0443\u044e \u043e\u043d\u043e \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u044f\u0435\u0442, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, IP-\u0430\u0434\u0440\u0435\u0441 \u0438\u043b\u0438 \u0442\u0438\u043f \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0430.","descriptionLegal":"\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u0421\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044f \u0434\u0430\u043d\u043d\u044b\u0435, \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0441\u043e\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u0441 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0434\u043b\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0445 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440 IP-\u0430\u0434\u0440\u0435\u0441, \u0441\u0442\u0440\u043e\u043a\u0430 \u0430\u0433\u0435\u043d\u0442\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f.\n* \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0442\u0430\u043a\u043e\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0434\u043b\u044f \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e\u0439 \u043f\u043e\u043f\u044b\u0442\u043a\u0438 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430.\n\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u043d\u0435 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u0421\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0441 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u043c \u0434\u0430\u043d\u043d\u044b\u0445, \u0441\u043e\u0431\u0440\u0430\u043d\u043d\u044b\u0445 \u043f\u0440\u0438 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u043c \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0434\u043b\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0445 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u043e\u0433\u043e \u0448\u0440\u0438\u0444\u0442\u0430 \u0438\u043b\u0438 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u044f \u044d\u043a\u0440\u0430\u043d\u0430, \u0431\u0435\u0437 \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043d\u0430 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0435 \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0434\u043b\u044f \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438.\n* \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0442\u0430\u043a\u043e\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0434\u043b\u044f \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430.\n"}},"specialFeatures":{"1":{"id":1,"name":"\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u0442\u043e\u0447\u043d\u044b\u0445 \u0434\u0430\u043d\u043d\u044b\u0445 \u0433\u0435\u043e\u043b\u043e\u043a\u0430\u0446\u0438\u0438","description":"\u0412\u0430\u0448\u0438 \u0442\u043e\u0447\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435 \u0433\u0435\u043e\u043b\u043e\u043a\u0430\u0446\u0438\u0438 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u044b \u0434\u043b\u044f \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0438 \u043e\u0434\u043d\u043e\u0439 \u0438\u043b\u0438 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u0446\u0435\u043b\u0435\u0439. \u042d\u0442\u043e \u043e\u0437\u043d\u0430\u0447\u0430\u0435\u0442, \u0447\u0442\u043e \u0432\u0430\u0448\u0435 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043e \u0441 \u0442\u043e\u0447\u043d\u043e\u0441\u0442\u044c\u044e \u0434\u043e \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u043c\u0435\u0442\u0440\u043e\u0432.","descriptionLegal":"\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u0421\u043e\u0431\u0438\u0440\u0430\u0442\u044c \u0438 \u043e\u0431\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u0442\u044c \u0442\u043e\u0447\u043d\u044b\u0435 \u0433\u0435\u043e\u043b\u043e\u043a\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435 \u0434\u043b\u044f \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0438 \u043e\u0434\u043d\u043e\u0439 \u0438\u043b\u0438 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u0446\u0435\u043b\u0435\u0439.\n\u041f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u0435. \u0422\u043e\u0447\u043d\u0430\u044f \u0433\u0435\u043e\u043b\u043e\u043a\u0430\u0446\u0438\u044f \u043e\u0437\u043d\u0430\u0447\u0430\u0435\u0442, \u0447\u0442\u043e \u043d\u0435\u0442 \u043d\u0438\u043a\u0430\u043a\u0438\u0445 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0439 \u043d\u0430 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u0442\u043e\u0447\u043d\u043e\u0433\u043e \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f; \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u043c\u043e\u0436\u0435\u0442 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0442\u044c\u0441\u044f \u0441 \u0442\u043e\u0447\u043d\u043e\u0441\u0442\u044c\u044e \u0434\u043e \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u043c\u0435\u0442\u0440\u043e\u0432."},"2":{"id":2,"name":"\u0410\u043a\u0442\u0438\u0432\u043d\u043e\u0435 \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0434\u043b\u044f \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438","description":"\u0412\u0430\u0448\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0443\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u043e\u0439 \u043a\u043e\u043c\u0431\u0438\u043d\u0430\u0446\u0438\u0438 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430.","descriptionLegal":"\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u0421\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044f \u0434\u0430\u043d\u043d\u044b\u0435, \u0441\u043e\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u043f\u0440\u0438 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u043c \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0434\u043b\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0445 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044b\u0445 \u0448\u0440\u0438\u0444\u0442\u043e\u0432 \u0438\u043b\u0438 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u044f \u044d\u043a\u0440\u0430\u043d\u0430. \n* \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0442\u0430\u043a\u043e\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0434\u043b\u044f \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"\u0422\u043e\u0447\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435 \u0433\u0435\u043e\u043b\u043e\u043a\u0430\u0446\u0438\u0438 \u0438 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f \u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u043e\u043c \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430","description":"\u041c\u043e\u0436\u043d\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0442\u043e\u0447\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435 \u0433\u0435\u043e\u043b\u043e\u043a\u0430\u0446\u0438\u0438 \u0438 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0430\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"\u0411\u0430\u0437\u043e\u0432\u044b\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b","description":"\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0430 \u0431\u0430\u0437\u043e\u0432\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"\u0411\u0430\u0437\u043e\u0432\u044b\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b","description":"\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0430 \u0431\u0430\u0437\u043e\u0432\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"\u0411\u0430\u0437\u043e\u0432\u044b\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f, \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043f\u0440\u043e\u0444\u0438\u043b\u044c \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439 \u0438 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b","description":"\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0430 \u0431\u0430\u0437\u043e\u0432\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"\u041f\u043e\u043a\u0430\u0437 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439 \u0438 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"\u041f\u043e\u043a\u0430\u0437 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"\u0421\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0438 \u043f\u043e\u043a\u0430\u0437 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043d\u0442\u0435\u043d\u0442","description":"\u041a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"\u041f\u043e\u043a\u0430\u0437 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0438 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430","description":"\u041a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"\u041f\u043e\u043a\u0430\u0437 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0438 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438","description":"\u041a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043d\u0442\u0435\u043d\u0442 \u0438 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430","description":"\u041a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043d\u0442\u0435\u043d\u0442, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0438 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438","description":"\u041a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043d\u0442\u0435\u043d\u0442, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432","description":"\u041a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442. \u0414\u0430\u043d\u043d\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0438\u043b\u0438 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c, \u0441\u0438\u0441\u0442\u0435\u043c \u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0433\u043e \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u0430 \u0442\u0430\u043a\u0436\u0435 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438","description":"\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430","description":"\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430"},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438","description":"\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432","description":"\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442. \u0414\u0430\u043d\u043d\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0438\u043b\u0438 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c, \u0441\u0438\u0441\u0442\u0435\u043c \u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0433\u043e \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432.","description":"\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442. \u0414\u0430\u043d\u043d\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0438\u043b\u0438 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c, \u0441\u0438\u0441\u0442\u0435\u043c \u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0433\u043e \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432","description":"\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u0414\u0430\u043d\u043d\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0438\u043b\u0438 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c, \u0441\u0438\u0441\u0442\u0435\u043c \u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0433\u043e \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"\u041f\u043e\u043a\u0430\u0437 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"\u041f\u043e\u043a\u0430\u0437 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u0430 \u0442\u0430\u043a\u0436\u0435 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442. \u0414\u0430\u043d\u043d\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0438\u043b\u0438 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c, \u0441\u0438\u0441\u0442\u0435\u043c \u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0433\u043e \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u0430 \u0442\u0430\u043a\u0436\u0435 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043f\u0440\u043e\u0444\u0438\u043b\u044c \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430","description":"\u0414\u043b\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"\u041f\u043e\u043a\u0430\u0437 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"\u0411\u0430\u0437\u043e\u0432\u044b\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u0430 \u0442\u0430\u043a\u0436\u0435 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438","description":"\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0430 \u0431\u0430\u0437\u043e\u0432\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"\u041f\u043e\u043a\u0430\u0437 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439, \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043d\u0442\u0435\u043d\u0442, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u0430 \u0442\u0430\u043a\u0436\u0435 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"\u041f\u043e\u043a\u0430\u0437 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439, \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043d\u0442\u0435\u043d\u0442, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442. \u0414\u0430\u043d\u043d\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0438\u043b\u0438 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c, \u0441\u0438\u0441\u0442\u0435\u043c \u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0433\u043e \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"\u0411\u0430\u0437\u043e\u0432\u044b\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f, \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043d\u0442\u0435\u043d\u0442, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u0430 \u0442\u0430\u043a\u0436\u0435 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438","description":"\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0430 \u0431\u0430\u0437\u043e\u0432\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439. \u041a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"\u0411\u0430\u0437\u043e\u0432\u044b\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f, \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043d\u0442\u0435\u043d\u0442, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432","description":"\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0430 \u0431\u0430\u0437\u043e\u0432\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439. \u041a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442. \u0414\u0430\u043d\u043d\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0438\u043b\u0438 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c, \u0441\u0438\u0441\u0442\u0435\u043c \u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0433\u043e \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"\u0411\u0430\u0437\u043e\u0432\u044b\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f, \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043d\u0442\u0435\u043d\u0442, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0438 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438","description":"\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0430 \u0431\u0430\u0437\u043e\u0432\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439. \u041a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"\u0411\u0430\u0437\u043e\u0432\u044b\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f, \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043d\u0442\u0435\u043d\u0442, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432","description":"\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0430 \u0431\u0430\u0437\u043e\u0432\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439. \u041a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442. \u0414\u0430\u043d\u043d\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0438\u043b\u0438 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c, \u0441\u0438\u0441\u0442\u0435\u043c \u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0433\u043e \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"\u0411\u0430\u0437\u043e\u0432\u044b\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f, \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043d\u0442\u0435\u043d\u0442 \u0438 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b","description":"\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0430 \u0431\u0430\u0437\u043e\u0432\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439. \u041a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"\u0411\u0430\u0437\u043e\u0432\u044b\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f, \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043d\u0442\u0435\u043d\u0442, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432","description":"\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0430 \u0431\u0430\u0437\u043e\u0432\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439. \u041a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b. \u0414\u0430\u043d\u043d\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0438\u043b\u0438 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c, \u0441\u0438\u0441\u0442\u0435\u043c \u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0433\u043e \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u0440\u0435\u043a\u043b\u0430\u043c\u0430, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b. \u0414\u0430\u043d\u043d\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0438\u043b\u0438 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c, \u0441\u0438\u0441\u0442\u0435\u043c \u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0433\u043e \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u0440\u0435\u043a\u043b\u0430\u043c\u0430, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b, \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442. \u0414\u0430\u043d\u043d\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0438\u043b\u0438 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c, \u0441\u0438\u0441\u0442\u0435\u043c \u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0433\u043e \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u0440\u0435\u043a\u043b\u0430\u043c\u0430, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442. \u0414\u0430\u043d\u043d\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0438\u043b\u0438 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c, \u0441\u0438\u0441\u0442\u0435\u043c \u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0433\u043e \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u0440\u0435\u043a\u043b\u0430\u043c\u0430, \u043f\u043e\u043a\u0430\u0437 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442. \u0414\u0430\u043d\u043d\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0438\u043b\u0438 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c, \u0441\u0438\u0441\u0442\u0435\u043c \u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0433\u043e \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u0440\u0435\u043a\u043b\u0430\u043c\u0430 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442. \u0414\u0430\u043d\u043d\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0438\u043b\u0438 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c, \u0441\u0438\u0441\u0442\u0435\u043c \u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0433\u043e \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f."}}} \ No newline at end of file +{"vendorListVersion":94,"lastUpdated":"2021-06-10T16:44:04Z","purposes":{"1":{"id":1,"name":"\u0425\u0440\u0430\u043d\u0435\u043d\u0438\u0435 \u0438 (\u0438\u043b\u0438) \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435","description":"\u0424\u0430\u0439\u043b\u044b cookie, \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u044b \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 \u0438\u043b\u0438 \u0434\u0440\u0443\u0433\u0430\u044f \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043c\u043e\u0433\u0443\u0442 \u0445\u0440\u0430\u043d\u0438\u0442\u044c\u0441\u044f \u0438\u043b\u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u043d\u0430 \u0432\u0430\u0448\u0435\u043c \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435 \u0434\u043b\u044f \u0446\u0435\u043b\u0435\u0439, \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u043d\u044b\u0445 \u0432\u0430\u043c.","descriptionLegal":"\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u0425\u0440\u0430\u043d\u0438\u0442\u044c \u0438 \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u0442\u0430\u043a\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435, \u043a\u0430\u043a \u0444\u0430\u0439\u043b\u044b cookie \u0438 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u044b \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432, \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u043c\u044b\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e.\n"},"2":{"id":2,"name":"\u0412\u044b\u0431\u043e\u0440 \u0431\u0430\u0437\u043e\u0432\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u043c\u043e\u0433\u0443\u0442 \u043f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c\u0441\u044f \u0432\u0430\u043c \u0432 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0438 \u043e\u0442 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u0435\u043c\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u043e\u0433\u043e \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u043f\u0440\u0438\u0431\u043b\u0438\u0437\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0438\u043b\u0438 \u0442\u0438\u043f\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430.","descriptionLegal":"\u0414\u043b\u044f \u0432\u044b\u0431\u043e\u0440\u0430 \u0431\u0430\u0437\u043e\u0432\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u043f\u043e\u043b\u0443\u0447\u0430\u0435\u043c\u0443\u044e \u0432 \u0440\u0435\u0436\u0438\u043c\u0435 \u0440\u0435\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442\u0435, \u0432 \u043a\u043e\u0442\u043e\u0440\u043e\u043c \u0431\u0443\u0434\u0435\u0442 \u043f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c\u0441\u044f \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u043e\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0435, \u0432\u043a\u043b\u044e\u0447\u0430\u044f \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0435 \u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440: \u0442\u0438\u043f \u0438 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0430\u0433\u0435\u043d\u0442, URL-\u0430\u0434\u0440\u0435\u0441, IP-\u0430\u0434\u0440\u0435\u0441 \n* \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u043d\u0435\u0442\u043e\u0447\u043d\u044b\u0435 \u0433\u0435\u043e\u043b\u043e\u043a\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\n* \u0423\u043f\u0440\u0430\u0432\u043b\u044f\u0442\u044c \u0447\u0430\u0441\u0442\u043e\u0442\u043e\u0439 \u043f\u043e\u043a\u0430\u0437\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e.\n* \u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0442\u044c \u043f\u043e\u0440\u044f\u0434\u043e\u043a, \u0432 \u043a\u043e\u0442\u043e\u0440\u043e\u043c \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u043f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u044e\u0442\u0441\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e.\n* \u0417\u0430\u043f\u0440\u0435\u0449\u0430\u0442\u044c \u043f\u043e\u043a\u0430\u0437 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0432 \u043d\u0435\u043f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0435\u043c \u0440\u0435\u0434\u0430\u043a\u0446\u0438\u043e\u043d\u043d\u043e\u043c (\u043d\u0435\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u043c \u0434\u043b\u044f \u0431\u0440\u0435\u043d\u0434\u0430) \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442\u0435\n\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u043d\u0435 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u0421\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043f\u0440\u043e\u0444\u0438\u043b\u044c \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044f \u044d\u0442\u0443 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u0434\u043b\u044f \u0432\u044b\u0431\u043e\u0440\u0430 \u0431\u0443\u0434\u0443\u0449\u0438\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439 \u0431\u0435\u0437 \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0437\u0430\u043a\u043e\u043d\u043d\u043e\u0433\u043e \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u044f \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439.\n\u041f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u0435. \u0422\u0435\u0440\u043c\u0438\u043d \u00ab\u043d\u0435\u0442\u043e\u0447\u043d\u044b\u0439\u00bb \u043e\u0437\u043d\u0430\u0447\u0430\u0435\u0442, \u0447\u0442\u043e \u0434\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u043f\u0440\u0438\u0431\u043b\u0438\u0437\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435, \u0432\u043a\u043b\u044e\u0447\u0430\u044e\u0449\u0435\u0435, \u043f\u043e \u043a\u0440\u0430\u0439\u043d\u0435\u0439 \u043c\u0435\u0440\u0435, \u0440\u0430\u0434\u0438\u0443\u0441 500 \u043c\u0435\u0442\u0440\u043e\u0432.\n"},"3":{"id":3,"name":"\u0421\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439","description":"\u041f\u0440\u043e\u0444\u0438\u043b\u044c \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0441\u043e\u0437\u0434\u0430\u043d \u043e \u0432\u0430\u0441 \u0438 \u0432\u0430\u0448\u0438\u0445 \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u0430\u0445 \u0434\u043b\u044f \u043f\u043e\u043a\u0430\u0437\u0430 \u0432\u0430\u043c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439, \u0438\u043c\u0435\u044e\u0449\u0438\u0445 \u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0435 \u043a \u0432\u0430\u043c.","descriptionLegal":"\u0414\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u0421\u043e\u0431\u0438\u0440\u0430\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435, \u0432\u043a\u043b\u044e\u0447\u0430\u044f \u0435\u0433\u043e \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c, \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u044b, \u043f\u043e\u0441\u0435\u0449\u0435\u043d\u0438\u044f \u0441\u0430\u0439\u0442\u043e\u0432 \u0438\u043b\u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u0434\u0435\u043c\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u0443\u044e \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u0438\u043b\u0438 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435, \u0441 \u0446\u0435\u043b\u044c\u044e \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0438\u043b\u0438 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0434\u043b\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0432 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u0440\u0435\u043a\u043b\u0430\u043c\u0435.\n* \u041e\u0431\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u0435 \u044d\u0442\u0443 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u0441 \u0434\u0440\u0443\u0433\u043e\u0439 \u0440\u0430\u043d\u0435\u0435 \u0441\u043e\u0431\u0440\u0430\u043d\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0435\u0439, \u0432 \u0442\u043e\u043c \u0447\u0438\u0441\u043b\u0435 \u0441 \u0440\u0430\u0437\u043d\u044b\u0445 \u0432\u0435\u0431-\u0441\u0430\u0439\u0442\u043e\u0432 \u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0439, \u0447\u0442\u043e\u0431\u044b \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0438\u043b\u0438 \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043f\u0440\u043e\u0444\u0438\u043b\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0434\u043b\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0432 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u0440\u0435\u043a\u043b\u0430\u043c\u0435."},"4":{"id":4,"name":"\u0412\u044b\u0431\u043e\u0440 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439","description":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u043c\u043e\u0433\u0443\u0442 \u043f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c\u0441\u044f \u0432\u0430\u043c \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u0432\u0430\u0448\u0435\u0433\u043e \u043f\u0440\u043e\u0444\u0438\u043b\u044f.","descriptionLegal":"\u0414\u043b\u044f \u0432\u044b\u0431\u043e\u0440\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u0412\u044b\u0431\u0438\u0440\u0430\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0438\u043b\u0438 \u0434\u0440\u0443\u0433\u0438\u0445 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u0434\u0430\u043d\u043d\u044b\u0445 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f, \u0432\u043a\u043b\u044e\u0447\u0430\u044f \u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0438\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f, \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u044b, \u043f\u043e\u0441\u0435\u0449\u0435\u043d\u0438\u044f \u0441\u0430\u0439\u0442\u043e\u0432 \u0438\u043b\u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0438\u043b\u0438 \u0434\u0435\u043c\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u0443\u044e \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e."},"5":{"id":5,"name":"\u0421\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430","description":"\u041f\u0440\u043e\u0444\u0438\u043b\u044c \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0441\u043e\u0437\u0434\u0430\u043d \u043e \u0432\u0430\u0441 \u0438 \u0432\u0430\u0448\u0438\u0445 \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u0430\u0445 \u0434\u043b\u044f \u043f\u043e\u043a\u0430\u0437\u0430 \u0432\u0430\u043c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u0438\u043c\u0435\u044e\u0449\u0435\u0433\u043e \u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0435 \u043a \u0432\u0430\u043c.","descriptionLegal":"\u0414\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u0421\u043e\u0431\u0438\u0440\u0430\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435, \u0432\u043a\u043b\u044e\u0447\u0430\u044f \u0435\u0433\u043e \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c, \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u044b, \u043f\u043e\u0441\u0435\u0449\u0435\u043d\u0438\u044f \u0441\u0430\u0439\u0442\u043e\u0432 \u0438\u043b\u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u0434\u0435\u043c\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u0443\u044e \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u0438\u043b\u0438 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435, \u0441 \u0446\u0435\u043b\u044c\u044e \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0438\u043b\u0438 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0434\u043b\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430.\n* \u041e\u0431\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u0435 \u044d\u0442\u0443 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u0441 \u0434\u0440\u0443\u0433\u043e\u0439 \u0440\u0430\u043d\u0435\u0435 \u0441\u043e\u0431\u0440\u0430\u043d\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0435\u0439, \u0432 \u0442\u043e\u043c \u0447\u0438\u0441\u043b\u0435 \u0441 \u0440\u0430\u0437\u043d\u044b\u0445 \u0432\u0435\u0431-\u0441\u0430\u0439\u0442\u043e\u0432 \u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0439, \u0447\u0442\u043e\u0431\u044b \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0438\u043b\u0438 \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043f\u0440\u043e\u0444\u0438\u043b\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0434\u043b\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0432 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430."},"6":{"id":6,"name":"\u0412\u044b\u0431\u043e\u0440 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430","description":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c\u0441\u044f \u0432\u0430\u043c \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u0432\u0430\u0448\u0435\u0433\u043e \u043f\u0440\u043e\u0444\u0438\u043b\u044f.","descriptionLegal":"\u0414\u043b\u044f \u0432\u044b\u0431\u043e\u0440\u0430 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u0412\u044b\u0431\u0438\u0440\u0430\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043d\u0442\u0435\u043d\u0442 \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0438\u043b\u0438 \u0434\u0440\u0443\u0433\u0438\u0445 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u0434\u0430\u043d\u043d\u044b\u0445 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f, \u0432\u043a\u043b\u044e\u0447\u0430\u044f \u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0438\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f, \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u044b, \u043f\u043e\u0441\u0435\u0449\u0435\u043d\u0438\u044f \u0441\u0430\u0439\u0442\u043e\u0432 \u0438\u043b\u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0438\u043b\u0438 \u0434\u0435\u043c\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u0443\u044e \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e."},"7":{"id":7,"name":"\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b","description":"\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0438 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b, \u043a\u043e\u0442\u043e\u0440\u0443\u044e \u0432\u044b \u0432\u0438\u0434\u0438\u0442\u0435 \u0438\u043b\u0438 \u0441 \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u0432\u044b \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0443\u0435\u0442\u0435.","descriptionLegal":"\u0414\u043b\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0442\u044c \u0444\u0430\u043a\u0442 \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u0438 \u0435\u0433\u043e \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441 \u043d\u0438\u043c\u0438\n* \u041f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0442\u044c \u043e\u0442\u0447\u0435\u0442\u044b \u043e \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f\u0445, \u0432\u043a\u043b\u044e\u0447\u0430\u044f \u0438\u0445 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c \u0438 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c\n* \u041f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0442\u044c \u043e\u0442\u0447\u0435\u0442\u044b \u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u043e\u0432\u0430\u043b\u0438 \u0441 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u043c\u0438 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f\u043c\u0438, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044f \u0434\u0430\u043d\u043d\u044b\u0435, \u043d\u0430\u0431\u043b\u044e\u0434\u0430\u0435\u043c\u044b\u0435 \u0432 \u0445\u043e\u0434\u0435 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0441 \u044d\u0442\u043e\u0439 \u0440\u0435\u043a\u043b\u0430\u043c\u043e\u0439\n* \u041f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0442\u044c \u0438\u0437\u0434\u0430\u0442\u0435\u043b\u044f\u043c \u043e\u0442\u0447\u0435\u0442\u044b \u043e \u0440\u0435\u043a\u043b\u0430\u043c\u0435, \u043f\u043e\u043a\u0430\u0437\u0430\u043d\u043d\u043e\u0439 \u043d\u0430 \u0438\u0445 \u0441\u0430\u0439\u0442\u0430\u0445\n* \u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0442\u044c, \u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0430 \u0432 \u043f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0435\u0439 \u0440\u0435\u0434\u0430\u043a\u0446\u0438\u043e\u043d\u043d\u043e\u0439 \u0441\u0440\u0435\u0434\u0435 (\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0439 \u0434\u043b\u044f \u0431\u0440\u0435\u043d\u0434\u0430)\n* \u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0442\u044c \u043f\u0440\u043e\u0446\u0435\u043d\u0442 \u0440\u0435\u043a\u043b\u0430\u043c\u044b, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0438\u043c\u0435\u043b\u0430 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u0431\u044b\u0442\u044c \u0443\u0432\u0438\u0434\u0435\u043d\u043d\u043e\u0439, \u0438 \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u044d\u0442\u043e\u0439 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \n\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u043d\u0435 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u041f\u0440\u0438\u043c\u0435\u043d\u044f\u0442\u044c \u043f\u0430\u043d\u0435\u043b\u044c\u043d\u044b\u0435 \u0438\u043b\u0438 \u0430\u043d\u0430\u043b\u043e\u0433\u0438\u0447\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435 \u0430\u043d\u0430\u043b\u0438\u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438 \u043a \u0434\u0430\u043d\u043d\u044b\u043c \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0431\u0435\u0437 \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0437\u0430\u043a\u043e\u043d\u043d\u043e\u0433\u043e \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u044f \u0434\u043b\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u0430\u0440\u043a\u0435\u0442\u0438\u043d\u0433\u043e\u0432\u044b\u0445 \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0439 \u0441 \u0446\u0435\u043b\u044c\u044e \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u0430\u043d\u0430\u043b\u0438\u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438."},"8":{"id":8,"name":"\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430","description":"\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0438 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0432\u044b \u0432\u0438\u0434\u0438\u0442\u0435, \u0438\u043b\u0438 \u0441 \u043a\u043e\u0442\u043e\u0440\u044b\u043c \u0432\u044b \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0443\u0435\u0442\u0435.","descriptionLegal":"\u0414\u043b\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0442\u044c \u0438 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0442\u044c \u043e\u0442\u0447\u0435\u0442\u044b \u043e \u0441\u043f\u043e\u0441\u043e\u0431\u0430\u0445 \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u0438 \u0435\u0433\u043e \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441 \u043d\u0438\u043c\n* \u041f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0442\u044c \u043e\u0442\u0447\u0435\u0442\u043d\u043e\u0441\u0442\u044c, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044f \u043d\u0435\u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0435\u043d\u043d\u043e \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u043c\u0443\u044e \u0438\u043b\u0438 \u0438\u0437\u0432\u0435\u0441\u0442\u043d\u0443\u044e \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e, \u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u043e\u0432\u0430\u043b\u0438 \u0441 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u043e\u043c\n\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u043d\u0435 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0442\u044c \u0444\u0430\u043a\u0442 \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439 (\u0432 \u0442\u043e\u043c \u0447\u0438\u0441\u043b\u0435 \u043d\u0430\u0442\u0438\u0432\u043d\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439) \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u0438 \u0435\u0433\u043e \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441 \u043d\u0438\u043c\u0438\n* \u041f\u0440\u0438\u043c\u0435\u043d\u044f\u0442\u044c \u043f\u0430\u043d\u0435\u043b\u044c\u043d\u044b\u0435 \u0438\u043b\u0438 \u0430\u043d\u0430\u043b\u043e\u0433\u0438\u0447\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435 \u0430\u043d\u0430\u043b\u0438\u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438 \u043a \u0434\u0430\u043d\u043d\u044b\u043c \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0431\u0435\u0437 \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0437\u0430\u043a\u043e\u043d\u043d\u043e\u0433\u043e \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u044f \u0434\u043b\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u0430\u0440\u043a\u0435\u0442\u0438\u043d\u0433\u043e\u0432\u044b\u0445 \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0439 \u0441 \u0446\u0435\u043b\u044c\u044e \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u0430\u043d\u0430\u043b\u0438\u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438.\n"},"9":{"id":9,"name":"\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u043c\u0430\u0440\u043a\u0435\u0442\u0438\u043d\u0433\u043e\u0432\u044b\u0445 \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0439 \u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u0430\u043d\u0430\u043b\u0438\u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438","description":"\u041c\u0430\u0440\u043a\u0435\u0442\u0438\u043d\u0433\u043e\u0432\u044b\u0435 \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u044b \u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043f\u043e\u0441\u0435\u0449\u0430\u044e\u0449\u0438\u0445 \u0441\u0430\u0439\u0442\u044b/\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0438 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u044e\u0449\u0438\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u0443.","descriptionLegal":"\u0414\u043b\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u0430\u0440\u043a\u0435\u0442\u0438\u043d\u0433\u043e\u0432\u044b\u0445 \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0439 \u0441 \u0446\u0435\u043b\u044c\u044e \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u0430\u043d\u0430\u043b\u0438\u0437\u0430 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u041f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0442\u044c \u0440\u0435\u043a\u043b\u0430\u043c\u043e\u0434\u0430\u0442\u0435\u043b\u044f\u043c \u0438\u043b\u0438 \u0438\u0445 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u044f\u043c \u0441\u0432\u043e\u0434\u043d\u044b\u0435 \u043e\u0442\u0447\u0435\u0442\u044b \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043e\u0445\u0432\u0430\u0442\u044b\u0432\u0430\u0435\u043c\u044b\u0445 \u0438\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u043c\u0438 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f\u043c\u0438, \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043f\u0430\u043d\u0435\u043b\u044c\u043d\u044b\u0445 \u0438 \u0430\u043d\u0430\u043b\u043e\u0433\u0438\u0447\u043d\u044b\u0445 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u043e\u0432.\n* \u041f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0442\u044c \u0438\u0437\u0434\u0430\u0442\u0435\u043b\u044f\u043c \u0441\u0432\u043e\u0434\u043d\u044b\u0435 \u043e\u0442\u0447\u0435\u0442\u044b \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0431\u044b\u043b\u0438 \u043e\u0445\u0432\u0430\u0447\u0435\u043d\u044b \u0438\u043b\u0438 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u043e\u0432\u0430\u043b\u0438 \u0441 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u043e\u043c \u0438 (\u0438\u043b\u0438) \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u043c\u0438 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f\u043c\u0438 \u043d\u0430 \u0438\u0445 \u0440\u0435\u0441\u0443\u0440\u0441\u0430\u0445, \u043f\u0440\u0438\u043c\u0435\u043d\u044f\u044f \u043f\u0430\u043d\u0435\u043b\u044c\u043d\u044b\u0435 \u0438 \u0430\u043d\u0430\u043b\u043e\u0433\u0438\u0447\u043d\u044b\u0435 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \n* \u0421\u0432\u044f\u0437\u044b\u0432\u0430\u0442\u044c \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435 \u0441 \u043e\u043d\u043b\u0430\u0439\u043d-\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c \u0434\u043b\u044f \u0446\u0435\u043b\u0435\u0439 \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u044f \u0440\u044b\u043d\u043a\u0430, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438, \u0435\u0441\u043b\u0438 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u043e\u0431\u044a\u044f\u0432\u0438\u043b\u0438 \u043e \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0441\u0442\u0438 \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043e\u0431\u044a\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u044b\u0445 \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u043e\u0432 \u0434\u0430\u043d\u043d\u044b\u0445 (\u0444\u0443\u043d\u043a\u0446\u0438\u044f 1)\n\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u043d\u0435 \u0432\u043f\u0440\u0430\u0432\u0435: \n* \u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0442\u044c \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c \u0438 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c \u0440\u0435\u043a\u043b\u0430\u043c\u044b, \u043a\u043e\u0442\u043e\u0440\u0443\u044e \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b \u0438\u043b\u0438 \u0441 \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u043e\u0432\u0430\u043b \u043a\u043e\u043d\u043a\u0440\u0435\u0442\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c, \u0431\u0435\u0437 \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0437\u0430\u043a\u043e\u043d\u043d\u043e\u0433\u043e \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u044f \u0434\u043b\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b.\n* \u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0442\u044c, \u043a\u0430\u043a\u043e\u0439 \u043a\u043e\u043d\u0442\u0435\u043d\u0442 \u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u043b\u0441\u044f \u043a\u043e\u043d\u043a\u0440\u0435\u0442\u043d\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e, \u0438 \u043a\u0430\u043a \u043e\u043d \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u043e\u0432\u0430\u043b \u0441 \u043d\u0438\u043c, \u0431\u0435\u0437 \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0437\u0430\u043a\u043e\u043d\u043d\u043e\u0433\u043e \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u044f \u0434\u043b\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430.\n"},"10":{"id":10,"name":"\u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u0438 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u0435 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432","description":"\u0412\u0430\u0448\u0438 \u0434\u0430\u043d\u043d\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0443\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u044f \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0445 \u0441\u0438\u0441\u0442\u0435\u043c \u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0433\u043e \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f, \u0430 \u0442\u0430\u043a\u0436\u0435 \u0434\u043b\u044f \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u043d\u043e\u0432\u044b\u0445 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432.","descriptionLegal":"\u0414\u043b\u044f \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u043d\u043e\u0432\u044b\u0445 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432 \u0438 \u0438\u0445 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u0434\u043b\u044f \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u0441\u0432\u043e\u0438\u0445 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0445 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432 \u043d\u043e\u0432\u044b\u043c\u0438 \u0444\u0443\u043d\u043a\u0446\u0438\u044f\u043c\u0438 \u0438 \u0434\u043b\u044f \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u043d\u043e\u0432\u044b\u0445 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432\n* \u0421\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c \u043d\u043e\u0432\u044b\u0435 \u043c\u043e\u0434\u0435\u043b\u0438 \u0438 \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u044b \u0441 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u043c \u043c\u0430\u0448\u0438\u043d\u043d\u043e\u0433\u043e \u043e\u0431\u0443\u0447\u0435\u043d\u0438\u044f\n\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u043d\u0435 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u041f\u0440\u043e\u0432\u043e\u0434\u0438\u0442\u044c \u043b\u044e\u0431\u0443\u044e \u0434\u0440\u0443\u0433\u0443\u044e \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044e \u043f\u043e \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0435 \u0434\u0430\u043d\u043d\u044b\u0445, \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u043d\u0443\u044e \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0438 \u0434\u0440\u0443\u0433\u043e\u0439 \u0446\u0435\u043b\u0438, \u0432 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u0438 \u0441 \u044d\u0442\u043e\u0439 \u0446\u0435\u043b\u044c\u044e\n"}},"specialPurposes":{"1":{"id":1,"name":"\u041e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u0435 \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438, \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0449\u0435\u043d\u0438\u0435 \u043c\u043e\u0448\u0435\u043d\u043d\u0438\u0447\u0435\u0441\u0442\u0432\u0430 \u0438 \u0443\u0441\u0442\u0440\u0430\u043d\u0435\u043d\u0438\u0435 \u0434\u0435\u0444\u0435\u043a\u0442\u043e\u0432","description":"\u0412\u0430\u0448\u0438 \u0434\u0430\u043d\u043d\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u043c\u043e\u043d\u0438\u0442\u043e\u0440\u0438\u043d\u0433\u0430 \u0438 \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0449\u0435\u043d\u0438\u044f \u043c\u043e\u0448\u0435\u043d\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0439, \u0430 \u0442\u0430\u043a\u0436\u0435 \u0434\u043b\u044f \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f \u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e\u0439 \u0438 \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0439 \u0440\u0430\u0431\u043e\u0442\u044b \u0441\u0438\u0441\u0442\u0435\u043c \u0438 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0432.","descriptionLegal":"\u0414\u043b\u044f \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438, \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0449\u0435\u043d\u0438\u044f \u043c\u043e\u0448\u0435\u043d\u043d\u0438\u0447\u0435\u0441\u0442\u0432\u0430 \u0438 \u0443\u0441\u0442\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0434\u0435\u0444\u0435\u043a\u0442\u043e\u0432 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u041e\u0431\u0435\u0441\u043f\u0435\u0447\u0438\u0432\u0430\u0442\u044c \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u0443\u044e \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0443 \u0434\u0430\u043d\u043d\u044b\u0445 \n* \u041e\u0431\u043d\u0430\u0440\u0443\u0436\u0438\u0432\u0430\u0442\u044c \u0438 \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0449\u0430\u0442\u044c \u0432\u0440\u0435\u0434\u043e\u043d\u043e\u0441\u043d\u044b\u0435, \u043c\u043e\u0448\u0435\u043d\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0435, \u043d\u0435\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0438\u043b\u0438 \u043d\u0435\u0437\u0430\u043a\u043e\u043d\u043d\u044b\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f.\n* \u041e\u0431\u0435\u0441\u043f\u0435\u0447\u0438\u0432\u0430\u0442\u044c \u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u0443\u044e \u0438 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u0443\u044e \u0440\u0430\u0431\u043e\u0442\u0443 \u0441\u0438\u0441\u0442\u0435\u043c \u0438 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0432, \u0432 \u0442\u043e\u043c \u0447\u0438\u0441\u043b\u0435 \u0434\u043b\u044f \u043c\u043e\u043d\u0438\u0442\u043e\u0440\u0438\u043d\u0433\u0430 \u0438 \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0441\u0438\u0441\u0442\u0435\u043c \u0438 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0432, \u0437\u0430\u0434\u0435\u0439\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u0432 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u043d\u044b\u0445 \u0446\u0435\u043b\u044f\u0445\n\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u043d\u0435 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u041f\u0440\u043e\u0432\u043e\u0434\u0438\u0442\u044c \u043b\u044e\u0431\u0443\u044e \u0434\u0440\u0443\u0433\u0443\u044e \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044e \u043f\u043e \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0435 \u0434\u0430\u043d\u043d\u044b\u0445, \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u043d\u0443\u044e \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0438 \u0434\u0440\u0443\u0433\u043e\u0439 \u0446\u0435\u043b\u0438, \u0432 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u0438 \u0441 \u044d\u0442\u043e\u0439 \u0446\u0435\u043b\u044c\u044e.\n\u041f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u0435: \u0414\u0430\u043d\u043d\u044b\u0435, \u0441\u043e\u0431\u0438\u0440\u0430\u0435\u043c\u044b\u0435 \u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u044b\u0435 \u0434\u043b\u044f \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438, \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0449\u0435\u043d\u0438\u044f \u043c\u043e\u0448\u0435\u043d\u043d\u0438\u0447\u0435\u0441\u0442\u0432\u0430 \u0438 \u0443\u0441\u0442\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0434\u0435\u0444\u0435\u043a\u0442\u043e\u0432, \u043c\u043e\u0433\u0443\u0442 \u0432\u043a\u043b\u044e\u0447\u0430\u0442\u044c \u0432 \u0441\u0435\u0431\u044f \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u044f\u0435\u043c\u044b\u0435 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 \u0434\u043b\u044f \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438, \u0442\u043e\u0447\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435 \u0433\u0435\u043e\u043b\u043e\u043a\u0430\u0446\u0438\u0438 \u0438 \u0434\u0430\u043d\u043d\u044b\u0435, \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u044b\u0435 \u043f\u0443\u0442\u0435\u043c \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0433\u043e \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 \u0434\u043b\u044f \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438 \u0431\u0435\u0437 \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0440\u0430\u0441\u043a\u0440\u044b\u0442\u0438\u044f \u0438 (\u0438\u043b\u0438) \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438.\n"},"2":{"id":2,"name":"\u0422\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0430\u044f \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0430 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438\u043b\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430","description":"\u0412\u0430\u0448\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0438 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u044f\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e, \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u044e\u0449\u0443\u044e \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u0442\u044c \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442, \u0430 \u0442\u0430\u043a\u0436\u0435 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u043e\u0432\u0430\u0442\u044c \u0441 \u043d\u0438\u043c\u0438.","descriptionLegal":"\u0414\u043b\u044f \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0438 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u0438 \u043e\u0442\u0432\u0435\u0442\u0430 \u043d\u0430 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0437\u0430\u043f\u0440\u043e\u0441\u044b \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c IP-\u0430\u0434\u0440\u0435\u0441 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0434\u043b\u044f \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0447\u0435\u0440\u0435\u0437 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\n* \u0420\u0435\u0430\u0433\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043d\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0441 \u0440\u0435\u043a\u043b\u0430\u043c\u043e\u0439, \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u044f\u044f \u0435\u0433\u043e \u043d\u0430 \u0446\u0435\u043b\u0435\u0432\u0443\u044e \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443\n* \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c IP-\u0430\u0434\u0440\u0435\u0441 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0434\u043b\u044f \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0447\u0435\u0440\u0435\u0437 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\n* \u0420\u0435\u0430\u0433\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043d\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0441 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u043e\u043c, \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u044f\u044f \u0435\u0433\u043e \u043d\u0430 \u0446\u0435\u043b\u0435\u0432\u0443\u044e \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443\n* \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e \u0442\u0438\u043f\u0435 \u0438 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044f\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0434\u043b\u044f \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438\u043b\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u0434\u043b\u044f \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u043e\u0433\u043e \u043a\u0440\u0435\u0430\u0442\u0438\u0432\u0430 \u043d\u0443\u0436\u043d\u043e\u0433\u043e \u0440\u0430\u0437\u043c\u0435\u0440\u0430 \u0438\u043b\u0438 \u0432\u0438\u0434\u0435\u043e\u0444\u0430\u0439\u043b\u0430 \u0432 \u0444\u043e\u0440\u043c\u0430\u0442\u0435, \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u043c\u043e\u043c \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e\u043c\n\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u043d\u0435 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u041f\u0440\u043e\u0432\u043e\u0434\u0438\u0442\u044c \u043b\u044e\u0431\u0443\u044e \u0434\u0440\u0443\u0433\u0443\u044e \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044e \u043f\u043e \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0435 \u0434\u0430\u043d\u043d\u044b\u0445, \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u043d\u0443\u044e \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0438 \u0434\u0440\u0443\u0433\u043e\u0439 \u0446\u0435\u043b\u0438, \u0432 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u0438 \u0441 \u044d\u0442\u043e\u0439 \u0446\u0435\u043b\u044c\u044e\n"}},"features":{"1":{"id":1,"name":"\u0421\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0438 \u043e\u0431\u044a\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u043e\u0432 \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u044b\u0445 \u0434\u0430\u043d\u043d\u044b\u0445","description":"\u0414\u0430\u043d\u043d\u044b\u0435 \u0438\u0437 \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u044b\u0445 \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u043e\u0432 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043e\u0431\u044a\u0435\u0434\u0438\u043d\u0435\u043d\u044b \u0441 \u0434\u0430\u043d\u043d\u044b\u043c\u0438 \u0432\u0430\u0448\u0435\u0439 \u043e\u043d\u043b\u0430\u0439\u043d-\u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0434\u043b\u044f \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0438 \u043e\u0434\u043d\u043e\u0439 \u0438\u043b\u0438 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u0446\u0435\u043b\u0435\u0439.","descriptionLegal":"\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u0432\u043f\u0440\u0430\u0432\u0435: \n* \u041e\u0431\u044a\u0435\u0434\u0438\u043d\u044f\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0435, \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u044b\u0435 \u0432 \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u043e\u043c \u0440\u0435\u0436\u0438\u043c\u0435, \u0441 \u0434\u0430\u043d\u043d\u044b\u043c\u0438, \u0441\u043e\u0431\u0440\u0430\u043d\u043d\u044b\u043c\u0438 \u0432 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0435, \u0434\u043b\u044f \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0438 \u043e\u0434\u043d\u043e\u0439 \u0438\u043b\u0438 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u0446\u0435\u043b\u0435\u0439 \u0438\u043b\u0438 \u0421\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0445 \u0446\u0435\u043b\u0435\u0439.\n"},"2":{"id":2,"name":"\u0421\u0432\u044f\u0437\u044b\u0432\u0430\u043d\u0438\u0435 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432","description":"\u0420\u0430\u0437\u043b\u0438\u0447\u043d\u044b\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u044b \u043a\u0430\u043a \u043f\u0440\u0438\u043d\u0430\u0434\u043b\u0435\u0436\u0430\u0449\u0438\u0435 \u0432\u0430\u043c \u0438\u043b\u0438 \u0432\u0430\u0448\u0435\u0439 \u0441\u0435\u043c\u044c\u0435 \u0432 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 \u043e\u0434\u043d\u043e\u0439 \u0438\u043b\u0438 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u0446\u0435\u043b\u0435\u0439.","descriptionLegal":"\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u0414\u0435\u0442\u0435\u0440\u043c\u0438\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0442\u044c, \u0447\u0442\u043e \u0434\u0432\u0430 \u0438\u043b\u0438 \u0431\u043e\u043b\u0435\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 \u043f\u0440\u0438\u043d\u0430\u0434\u043b\u0435\u0436\u0430\u0442 \u043e\u0434\u043d\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u0438\u043b\u0438 \u0433\u0440\u0443\u043f\u043f\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439\n* \u0412 \u0432\u0435\u0440\u043e\u044f\u0442\u043d\u043e\u0441\u0442\u043d\u043e\u043c \u0441\u043c\u044b\u0441\u043b\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0442\u044c, \u0447\u0442\u043e \u0434\u0432\u0430 \u0438\u043b\u0438 \u0431\u043e\u043b\u0435\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 \u043f\u0440\u0438\u043d\u0430\u0434\u043b\u0435\u0436\u0430\u0442 \u043e\u0434\u043d\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u0438\u043b\u0438 \u0433\u0440\u0443\u043f\u043f\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439\n* \u0410\u043a\u0442\u0438\u0432\u043d\u043e \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 \u0434\u043b\u044f \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438 \u0432 \u0432\u0435\u0440\u043e\u044f\u0442\u043d\u043e\u0441\u0442\u043d\u043e\u043c \u0441\u043c\u044b\u0441\u043b\u0435, \u0435\u0441\u043b\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438 \u0440\u0430\u0437\u0440\u0435\u0448\u0438\u043b\u0438 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0430\u043c \u0430\u043a\u0442\u0438\u0432\u043d\u043e \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 \u0434\u043b\u044f \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438 (\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u0430\u044f \u0444\u0443\u043d\u043a\u0446\u0438\u044f 2)\n"},"3":{"id":3,"name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u044f\u0435\u043c\u044b\u0445 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0434\u043b\u044f \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438","description":"\u0412\u0430\u0448\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e \u043c\u043e\u0436\u043d\u043e \u043e\u0442\u043b\u0438\u0447\u0438\u0442\u044c \u043e\u0442 \u0434\u0440\u0443\u0433\u0438\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438, \u043a\u043e\u0442\u043e\u0440\u0443\u044e \u043e\u043d\u043e \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u044f\u0435\u0442, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, IP-\u0430\u0434\u0440\u0435\u0441 \u0438\u043b\u0438 \u0442\u0438\u043f \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0430.","descriptionLegal":"\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u0421\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044f \u0434\u0430\u043d\u043d\u044b\u0435, \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0441\u043e\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u0441 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0434\u043b\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0445 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440 IP-\u0430\u0434\u0440\u0435\u0441, \u0441\u0442\u0440\u043e\u043a\u0430 \u0430\u0433\u0435\u043d\u0442\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f.\n* \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0442\u0430\u043a\u043e\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0434\u043b\u044f \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e\u0439 \u043f\u043e\u043f\u044b\u0442\u043a\u0438 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430.\n\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u043d\u0435 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u0421\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0441 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u043c \u0434\u0430\u043d\u043d\u044b\u0445, \u0441\u043e\u0431\u0440\u0430\u043d\u043d\u044b\u0445 \u043f\u0440\u0438 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u043c \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0434\u043b\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0445 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u043e\u0433\u043e \u0448\u0440\u0438\u0444\u0442\u0430 \u0438\u043b\u0438 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u044f \u044d\u043a\u0440\u0430\u043d\u0430, \u0431\u0435\u0437 \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043d\u0430 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0435 \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0434\u043b\u044f \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438.\n* \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0442\u0430\u043a\u043e\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0434\u043b\u044f \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430.\n"}},"specialFeatures":{"1":{"id":1,"name":"\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u0442\u043e\u0447\u043d\u044b\u0445 \u0434\u0430\u043d\u043d\u044b\u0445 \u0433\u0435\u043e\u043b\u043e\u043a\u0430\u0446\u0438\u0438","description":"\u0412\u0430\u0448\u0438 \u0442\u043e\u0447\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435 \u0433\u0435\u043e\u043b\u043e\u043a\u0430\u0446\u0438\u0438 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u044b \u0434\u043b\u044f \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0438 \u043e\u0434\u043d\u043e\u0439 \u0438\u043b\u0438 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u0446\u0435\u043b\u0435\u0439. \u042d\u0442\u043e \u043e\u0437\u043d\u0430\u0447\u0430\u0435\u0442, \u0447\u0442\u043e \u0432\u0430\u0448\u0435 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043e \u0441 \u0442\u043e\u0447\u043d\u043e\u0441\u0442\u044c\u044e \u0434\u043e \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u043c\u0435\u0442\u0440\u043e\u0432.","descriptionLegal":"\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u0421\u043e\u0431\u0438\u0440\u0430\u0442\u044c \u0438 \u043e\u0431\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u0442\u044c \u0442\u043e\u0447\u043d\u044b\u0435 \u0433\u0435\u043e\u043b\u043e\u043a\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435 \u0434\u043b\u044f \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0438 \u043e\u0434\u043d\u043e\u0439 \u0438\u043b\u0438 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u0446\u0435\u043b\u0435\u0439.\n\u041f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u0435. \u0422\u043e\u0447\u043d\u0430\u044f \u0433\u0435\u043e\u043b\u043e\u043a\u0430\u0446\u0438\u044f \u043e\u0437\u043d\u0430\u0447\u0430\u0435\u0442, \u0447\u0442\u043e \u043d\u0435\u0442 \u043d\u0438\u043a\u0430\u043a\u0438\u0445 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0439 \u043d\u0430 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u0442\u043e\u0447\u043d\u043e\u0433\u043e \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f; \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u043c\u043e\u0436\u0435\u0442 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0442\u044c\u0441\u044f \u0441 \u0442\u043e\u0447\u043d\u043e\u0441\u0442\u044c\u044e \u0434\u043e \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u043c\u0435\u0442\u0440\u043e\u0432."},"2":{"id":2,"name":"\u0410\u043a\u0442\u0438\u0432\u043d\u043e\u0435 \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0434\u043b\u044f \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438","description":"\u0412\u0430\u0448\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0443\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u043e\u0439 \u043a\u043e\u043c\u0431\u0438\u043d\u0430\u0446\u0438\u0438 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430.","descriptionLegal":"\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u0432\u043f\u0440\u0430\u0432\u0435:\n* \u0421\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044f \u0434\u0430\u043d\u043d\u044b\u0435, \u0441\u043e\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u043f\u0440\u0438 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u043c \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0434\u043b\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0445 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044b\u0445 \u0448\u0440\u0438\u0444\u0442\u043e\u0432 \u0438\u043b\u0438 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u044f \u044d\u043a\u0440\u0430\u043d\u0430. \n* \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0442\u0430\u043a\u043e\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0434\u043b\u044f \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"\u0422\u043e\u0447\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435 \u0433\u0435\u043e\u043b\u043e\u043a\u0430\u0446\u0438\u0438 \u0438 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f \u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u043e\u043c \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430","description":"\u041c\u043e\u0436\u043d\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0442\u043e\u0447\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435 \u0433\u0435\u043e\u043b\u043e\u043a\u0430\u0446\u0438\u0438 \u0438 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0430\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"\u0411\u0430\u0437\u043e\u0432\u044b\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b","description":"\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0430 \u0431\u0430\u0437\u043e\u0432\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"\u0411\u0430\u0437\u043e\u0432\u044b\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b","description":"\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0430 \u0431\u0430\u0437\u043e\u0432\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"\u0411\u0430\u0437\u043e\u0432\u044b\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f, \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043f\u0440\u043e\u0444\u0438\u043b\u044c \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439 \u0438 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b","description":"\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0430 \u0431\u0430\u0437\u043e\u0432\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"\u041f\u043e\u043a\u0430\u0437 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439 \u0438 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"\u041f\u043e\u043a\u0430\u0437 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"\u0421\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0438 \u043f\u043e\u043a\u0430\u0437 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043d\u0442\u0435\u043d\u0442","description":"\u041a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"\u041f\u043e\u043a\u0430\u0437 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0438 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430","description":"\u041a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"\u041f\u043e\u043a\u0430\u0437 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0438 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438","description":"\u041a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043d\u0442\u0435\u043d\u0442 \u0438 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430","description":"\u041a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043d\u0442\u0435\u043d\u0442, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0438 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438","description":"\u041a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043d\u0442\u0435\u043d\u0442, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432","description":"\u041a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442. \u0414\u0430\u043d\u043d\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0438\u043b\u0438 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c, \u0441\u0438\u0441\u0442\u0435\u043c \u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0433\u043e \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u0430 \u0442\u0430\u043a\u0436\u0435 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438","description":"\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430","description":"\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430"},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438","description":"\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432","description":"\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442. \u0414\u0430\u043d\u043d\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0438\u043b\u0438 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c, \u0441\u0438\u0441\u0442\u0435\u043c \u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0433\u043e \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432","description":"\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442. \u0414\u0430\u043d\u043d\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0438\u043b\u0438 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c, \u0441\u0438\u0441\u0442\u0435\u043c \u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0433\u043e \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432","description":"\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u0414\u0430\u043d\u043d\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0438\u043b\u0438 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c, \u0441\u0438\u0441\u0442\u0435\u043c \u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0433\u043e \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"\u041f\u043e\u043a\u0430\u0437 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"\u041f\u043e\u043a\u0430\u0437 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u0430 \u0442\u0430\u043a\u0436\u0435 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442. \u0414\u0430\u043d\u043d\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0438\u043b\u0438 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c, \u0441\u0438\u0441\u0442\u0435\u043c \u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0433\u043e \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u0430 \u0442\u0430\u043a\u0436\u0435 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043f\u0440\u043e\u0444\u0438\u043b\u044c \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430","description":"\u0414\u043b\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"\u041f\u043e\u043a\u0430\u0437 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"\u0411\u0430\u0437\u043e\u0432\u044b\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u0430 \u0442\u0430\u043a\u0436\u0435 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438","description":"\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0430 \u0431\u0430\u0437\u043e\u0432\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"\u041f\u043e\u043a\u0430\u0437 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439, \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043d\u0442\u0435\u043d\u0442, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u0430 \u0442\u0430\u043a\u0436\u0435 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"\u041f\u043e\u043a\u0430\u0437 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439, \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043d\u0442\u0435\u043d\u0442, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442. \u0414\u0430\u043d\u043d\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0438\u043b\u0438 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c, \u0441\u0438\u0441\u0442\u0435\u043c \u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0433\u043e \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"\u0411\u0430\u0437\u043e\u0432\u044b\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f, \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043d\u0442\u0435\u043d\u0442, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u0430 \u0442\u0430\u043a\u0436\u0435 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438","description":"\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0430 \u0431\u0430\u0437\u043e\u0432\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439. \u041a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"\u0411\u0430\u0437\u043e\u0432\u044b\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f, \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043d\u0442\u0435\u043d\u0442, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432","description":"\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0430 \u0431\u0430\u0437\u043e\u0432\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439. \u041a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442. \u0414\u0430\u043d\u043d\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0438\u043b\u0438 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c, \u0441\u0438\u0441\u0442\u0435\u043c \u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0433\u043e \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"\u0411\u0430\u0437\u043e\u0432\u044b\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f, \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043d\u0442\u0435\u043d\u0442, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0438 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438","description":"\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0430 \u0431\u0430\u0437\u043e\u0432\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439. \u041a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"\u0411\u0430\u0437\u043e\u0432\u044b\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f, \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043d\u0442\u0435\u043d\u0442, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432","description":"\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0430 \u0431\u0430\u0437\u043e\u0432\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439. \u041a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442. \u0414\u0430\u043d\u043d\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0438\u043b\u0438 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c, \u0441\u0438\u0441\u0442\u0435\u043c \u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0433\u043e \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"\u0411\u0430\u0437\u043e\u0432\u044b\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f, \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043d\u0442\u0435\u043d\u0442 \u0438 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b","description":"\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0430 \u0431\u0430\u0437\u043e\u0432\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439. \u041a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"\u0411\u0430\u0437\u043e\u0432\u044b\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f, \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043d\u0442\u0435\u043d\u0442, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432","description":"\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0430 \u0431\u0430\u0437\u043e\u0432\u044b\u0445 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439. \u041a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b. \u0414\u0430\u043d\u043d\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0438\u043b\u0438 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c, \u0441\u0438\u0441\u0442\u0435\u043c \u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0433\u043e \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u0440\u0435\u043a\u043b\u0430\u043c\u0430, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b. \u0414\u0430\u043d\u043d\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0438\u043b\u0438 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c, \u0441\u0438\u0441\u0442\u0435\u043c \u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0433\u043e \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u0440\u0435\u043a\u043b\u0430\u043c\u0430, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b, \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442. \u0414\u0430\u043d\u043d\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0438\u043b\u0438 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c, \u0441\u0438\u0441\u0442\u0435\u043c \u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0433\u043e \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u0440\u0435\u043a\u043b\u0430\u043c\u0430, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442. \u0414\u0430\u043d\u043d\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0438\u043b\u0438 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c, \u0441\u0438\u0441\u0442\u0435\u043c \u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0433\u043e \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u0440\u0435\u043a\u043b\u0430\u043c\u0430, \u043f\u043e\u043a\u0430\u0437 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442. \u0414\u0430\u043d\u043d\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0438\u043b\u0438 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c, \u0441\u0438\u0441\u0442\u0435\u043c \u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0433\u043e \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u0440\u0435\u043a\u043b\u0430\u043c\u0430 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432","description":"\u0420\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f. \u0414\u043b\u044f \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442. \u0414\u0430\u043d\u043d\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0438\u043b\u0438 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c, \u0441\u0438\u0441\u0442\u0435\u043c \u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0433\u043e \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f."}}} \ No newline at end of file diff --git a/src/s1/config/2.0/purposes/purposes-sk.json b/src/s1/config/2.0/purposes/purposes-sk.json index da52970d..e92f8f84 100644 --- a/src/s1/config/2.0/purposes/purposes-sk.json +++ b/src/s1/config/2.0/purposes/purposes-sk.json @@ -1 +1 @@ -{"vendorListVersion":79,"lastUpdated":"2021-02-25T16:36:25Z","purposes":{"1":{"id":1,"name":"Uchov\u00e1vanie a/alebo pr\u00edstup k inform\u00e1ci\u00e1m na zariaden\u00ed","description":"S\u00fabory cookie, identifik\u00e1tory zariaden\u00ed alebo in\u00e9 inform\u00e1cie m\u00f4\u017eu by\u0165 uchov\u00e1van\u00e9 alebo pr\u00edstupn\u00e9 na va\u0161om zariaden\u00ed na \u00fa\u010dely, ktor\u00e9 v\u00e1m boli predlo\u017een\u00e9.","descriptionLegal":"Dod\u00e1vatelia m\u00f4\u017eu:\n* uchov\u00e1va\u0165 inform\u00e1cie na zariaden\u00ed, ako s\u00fa s\u00fabory cookie a identifik\u00e1tory zariadenia, ktor\u00e9 sa pou\u017e\u00edvate\u013eovi zobrazuj\u00fa, a pristupova\u0165 k nim.\n"},"2":{"id":2,"name":"V\u00fdber z\u00e1kladn\u00fdch rekl\u00e1m","description":"Reklamy sa m\u00f4\u017eu zobrazova\u0165 na z\u00e1klade obsahu, ktor\u00fd si prezer\u00e1te, aplik\u00e1cie, ktor\u00fa pou\u017e\u00edvate, pribli\u017enej polohy alebo typu v\u00e1\u0161ho zariadenia.","descriptionLegal":"Na z\u00e1kladn\u00fd v\u00fdber reklamy dod\u00e1vatelia m\u00f4\u017eu:\n* pou\u017e\u00edva\u0165 v re\u00e1lnom \u010dase inform\u00e1cie o kontexte, v ktorom sa bude reklama zobrazova\u0165, na zobrazenie reklamy vr\u00e1tane inform\u00e1ci\u00ed o obsahu a zariaden\u00ed, ako je napr\u00edklad: typ zariadenia a mo\u017enosti, pou\u017e\u00edvate\u013esk\u00fd agent, adresa URL, adresa IP, \n* pou\u017e\u00edva\u0165 \u00fadaje o presnej geografickej polohe pou\u017e\u00edvate\u013ea,\n* regulova\u0165 frekvenciu rekl\u00e1m zobrazovan\u00fdch pou\u017e\u00edvate\u013eovi,\n* usporiada\u0165 poradie, v ktorom sa reklamy zobrazuj\u00fa pou\u017e\u00edvate\u013eovi,\n* zabr\u00e1ni\u0165 zobrazovaniu reklamy v nevhodnom redak\u010dnom kontexte (nebezpe\u010dnom pre zna\u010dku).\nDod\u00e1vatelia nem\u00f4\u017eu:\n* vytvori\u0165 prisp\u00f4soben\u00fd profil rekl\u00e1m pomocou t\u00fdchto inform\u00e1ci\u00ed na v\u00fdber bud\u00facich rekl\u00e1m bez osobitn\u00e9ho pr\u00e1vneho z\u00e1kladu na vytvorenie prisp\u00f4soben\u00e9ho profilu rekl\u00e1m.\nPozn\u00e1mka: Nepresn\u00e9 znamen\u00e1, \u017ee je povolen\u00e1 iba pribli\u017en\u00e1 poloha zah\u0155\u0148aj\u00faca najmenej polomer 500 metrov.\n"},"3":{"id":3,"name":"Vytvorenie profilu personalizovan\u00fdch rekl\u00e1m","description":"Je mo\u017en\u00e9 vytvori\u0165 o v\u00e1s a va\u0161ich z\u00e1ujmoch profil, aby sme v\u00e1m mohli zobrazova\u0165 personalizovan\u00e9 reklamy, ktor\u00e9 s\u00fa pre v\u00e1s relevantn\u00e9.","descriptionLegal":"Na vytvorenie profilu personalizovan\u00fdch rekl\u00e1m dod\u00e1vatelia m\u00f4\u017eu:\n* z\u00edskava\u0165 inform\u00e1cie o pou\u017e\u00edvate\u013eovi vr\u00e1tane aktivity pou\u017e\u00edvate\u013ea, z\u00e1ujmov, n\u00e1v\u0161tev str\u00e1nok alebo aplik\u00e1ci\u00ed, demografick\u00fdch \u00fadajov alebo umiestnenia na vytvorenie alebo \u00fapravu profilu pou\u017e\u00edvate\u013ea na pou\u017eitie v personalizovanej reklame.\n* Skombinujte tieto inform\u00e1cie s \u010fal\u0161\u00edmi predt\u00fdm zhroma\u017eden\u00fdmi inform\u00e1ciami, a to aj z in\u00fdch webov a aplik\u00e1ci\u00ed, aby ste vytvorili alebo upravili profil pou\u017e\u00edvate\u013ea na pou\u017eitie v prisp\u00f4sobenej reklame."},"4":{"id":4,"name":"V\u00fdber personalizovan\u00fdch rekl\u00e1m","description":"Personalizovan\u00e9 reklamy sa m\u00f4\u017eu zobrazi\u0165 na z\u00e1klade profilu o v\u00e1s.","descriptionLegal":"Na v\u00fdber personalizovan\u00fdch rekl\u00e1m dod\u00e1vatelia m\u00f4\u017eu:\n* vybra\u0165 personalizovan\u00e9 reklamy na z\u00e1klade profilu pou\u017e\u00edvate\u013ea alebo in\u00fdch historick\u00fdch \u00fadajov o pou\u017e\u00edvate\u013eovi vr\u00e1tane predch\u00e1dzaj\u00facej aktivity pou\u017e\u00edvate\u013ea, z\u00e1ujmov, n\u00e1v\u0161tev str\u00e1nok alebo aplik\u00e1ci\u00ed, umiestnenia alebo demografick\u00fdch inform\u00e1ci\u00ed."},"5":{"id":5,"name":"Vytvorenie profilu personalizovan\u00e9ho obsahu","description":"Je mo\u017en\u00e9 vytvori\u0165 o v\u00e1s a va\u0161ich z\u00e1ujmoch profil, aby sme v\u00e1m mohli zobrazova\u0165 personalizovan\u00fd obsah, ktor\u00fd je pre v\u00e1s relevantn\u00fd.","descriptionLegal":"Na vytvorenie personalizovan\u00e9ho profilu obsahu dod\u00e1vatelia m\u00f4\u017eu:\n* z\u00edskava\u0165 inform\u00e1cie o pou\u017e\u00edvate\u013eovi vr\u00e1tane aktivity pou\u017e\u00edvate\u013ea, z\u00e1ujmov, n\u00e1v\u0161tev str\u00e1nok alebo aplik\u00e1ci\u00ed, demografick\u00fdch inform\u00e1ci\u00ed alebo umiestnenia na vytvorenie alebo \u00fapravu profilu pou\u017e\u00edvate\u013ea na personaliz\u00e1ciu obsahu.\n* Skombinujte tieto inform\u00e1cie s \u010fal\u0161\u00edmi predt\u00fdm zhroma\u017eden\u00fdmi inform\u00e1ciami, a to aj z in\u00fdch webov a aplik\u00e1ci\u00ed, aby ste vytvorili alebo upravili profil pou\u017e\u00edvate\u013ea na pou\u017eitie pri prisp\u00f4soben\u00ed obsahu."},"6":{"id":6,"name":"V\u00fdber personalizovan\u00e9ho obsahu","description":"Personalizovan\u00fd obsah sa m\u00f4\u017ee zobrazi\u0165 na z\u00e1klade profilu o v\u00e1s.","descriptionLegal":"Na v\u00fdber personalizovan\u00e9ho obsahu dod\u00e1vatelia m\u00f4\u017eu:\n* vybra\u0165 personalizovan\u00fd obsah na z\u00e1klade profilu pou\u017e\u00edvate\u013ea alebo in\u00fdch historick\u00fdch \u00fadajov o pou\u017e\u00edvate\u013eovi vr\u00e1tane predch\u00e1dzaj\u00facej aktivity pou\u017e\u00edvate\u013ea, z\u00e1ujmov, n\u00e1v\u0161tev str\u00e1nok alebo aplik\u00e1ci\u00ed, umiestnenia alebo demografick\u00fdch inform\u00e1ci\u00ed."},"7":{"id":7,"name":"Hodnotenie v\u00fdkonnosti reklamy","description":"Je mo\u017en\u00e9 hodnoti\u0165 v\u00fdkonnos\u0165 a \u00fa\u010dinnos\u0165 rekl\u00e1m, ktor\u00e9 vid\u00edte alebo na ktor\u00e9 reagujete.","descriptionLegal":"Na hodnotenie v\u00fdkonnosti reklamy dod\u00e1vatelia m\u00f4\u017eu:\n* hodnoti\u0165, \u010di a ako boli reklamy doru\u010den\u00e9 pou\u017e\u00edvate\u013eovi a \u010di na \u0148u reagoval,\n* poskytova\u0165 v\u00fdkazy o reklam\u00e1ch vr\u00e1tane ich \u00fa\u010dinnosti a v\u00fdkonnosti,\n* poskytova\u0165 v\u00fdkazy o pou\u017e\u00edvate\u013eoch, ktor\u00ed reagovali na reklamy s pou\u017eit\u00edm \u00fadajov pozorovan\u00fdch po\u010das interakcie pou\u017e\u00edvate\u013ea s touto reklamou,\n* poskytova\u0165 vydavate\u013eom v\u00fdkazy o reklam\u00e1ch zobrazen\u00fdch na ich lokalite,\n* vyhodnoti\u0165, \u010di sa reklama zobrazuje vo vhodnom kontexte redak\u010dn\u00e9ho prostredia (bezpe\u010dnom pre zna\u010dku),\n* ur\u010di\u0165 percento, v akom mala reklama mo\u017enos\u0165 by\u0165 viden\u00e1 a trvanie tejto pr\u00edle\u017eitosti. \nDod\u00e1vatelia nem\u00f4\u017eu:\n* pou\u017e\u00edva\u0165 \u00fadaje z panela alebo podobne odvoden\u00e9 \u00fadaje o cie\u013eovej skupine na \u00fadaje z hodnotenia reklamy bez osobitn\u00e9ho pr\u00e1vneho z\u00e1kladu na uplatnenie prieskumu trhu s cie\u013eom vytvori\u0165 preh\u013ead o cie\u013eovej skupine."},"8":{"id":8,"name":"Hodnotenie v\u00fdkonnosti obsahu","description":"Je mo\u017en\u00e9 hodnoti\u0165 v\u00fdkonnos\u0165 a \u00fa\u010dinnos\u0165 obsahu, ktor\u00fd vid\u00edte alebo na ktor\u00fd reagujete.","descriptionLegal":"Na hodnotenie v\u00fdkonnosti obsahu dod\u00e1vatelia m\u00f4\u017eu:\n* hodnoti\u0165 a vykazova\u0165, ako bol obsah doru\u010den\u00fd pou\u017e\u00edvate\u013eom a ako na\u0148 reagovali,\n* poskytova\u0165 v\u00fdkazy pomocou priamo merate\u013en\u00fdch alebo zn\u00e1mych inform\u00e1ci\u00ed o pou\u017e\u00edvate\u013eoch, ktor\u00ed na obsah reagovali.\nDod\u00e1vatelia nem\u00f4\u017eu:\n* hodnoti\u0165, \u010di a ak\u00fdm sp\u00f4sobom boli reklamy (vr\u00e1tane nat\u00edvnych rekl\u00e1m) doru\u010den\u00e9 pou\u017e\u00edvate\u013eom a ako na ne reagovali,\n* pou\u017e\u00edva\u0165 \u00fadaje z panela alebo podobne odvoden\u00e9 \u00fadaje o cie\u013eovej skupine na \u00fadaje z hodnotenia reklamy bez osobitn\u00e9ho pr\u00e1vneho z\u00e1kladu na uplatnenie prieskumu trhu s cie\u013eom vytvori\u0165 preh\u013ead o cie\u013eovej skupine."},"9":{"id":9,"name":"Pou\u017e\u00edvanie prieskumu trhu na vytv\u00e1ranie \u00fadajov o cie\u013eovej skupine","description":"Prieskum trhu sa m\u00f4\u017ee pou\u017ei\u0165 na z\u00edskanie \u010fal\u0161\u00edch inform\u00e1ci\u00ed o cie\u013eovej skupine, ktor\u00e1 nav\u0161tevuje str\u00e1nky alebo aplik\u00e1cie a zobrazuje reklamy.","descriptionLegal":"Na pou\u017e\u00edvanie prieskumu trhu na vytv\u00e1ranie \u00fadajov o cie\u013eovej skupine dod\u00e1vatelia m\u00f4\u017eu:\n* poskytova\u0165 s\u00fahrnn\u00e9 v\u00fdkazy inzerentom alebo ich z\u00e1stupcom o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00fdch ich reklamy oslovili, prostredn\u00edctvom panelov\u00fdch a podobne odvoden\u00fdch preh\u013eadov,\n* poskytova\u0165 s\u00fahrnn\u00e9 v\u00fdkazy pre vydavate\u013eov o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00fdm sa zobrazil obsah a/alebo reklama alebo na ktor\u00e9 reagovali na ich lokalite, a to s pou\u017eit\u00edm panelov\u00fdch a podobne odvoden\u00fdch preh\u013eadov, \n* priradi\u0165 offline \u00fadaje k online pou\u017e\u00edvate\u013eovi na \u00fa\u010dely prieskumu trhu, aby sa vytv\u00e1rali preh\u013eady o cie\u013eovej skupine, ak dod\u00e1vatelia vyhl\u00e1sili, \u017ee sp\u00e1jaj\u00fa a kombinuj\u00fa zdroje \u00fadajov offline (funkcia 1).\nDod\u00e1vatelia nem\u00f4\u017eu: \n* bez osobitn\u00e9ho pr\u00e1vneho z\u00e1kladu na hodnotenie v\u00fdkonnosti reklamy hodnoti\u0165 v\u00fdkonnos\u0165 a \u00fa\u010dinnos\u0165 rekl\u00e1m, ktor\u00e9 boli zobrazen\u00e9 konkr\u00e9tnemu pou\u017e\u00edvate\u013eovi alebo na ktor\u00e9 tento pou\u017e\u00edvate\u013e reagoval,\n* bez osobitn\u00e9ho pr\u00e1vneho z\u00e1kladu na hodnotenie v\u00fdkonnosti obsahu hodnoti\u0165, ktor\u00fd obsah bol konkr\u00e9tnemu pou\u017e\u00edvate\u013eovi zobrazen\u00fd alebo ako na\u0148 reagoval."},"10":{"id":10,"name":"Rozv\u00edjanie a zlep\u0161ovanie produktov","description":"Va\u0161e \u00fadaje m\u00f4\u017eu by\u0165 pou\u017eit\u00e9 na zlep\u0161enie s\u00fa\u010dasn\u00fdch syst\u00e9mov a softv\u00e9ru a na v\u00fdvoj nov\u00fdch produktov.","descriptionLegal":"Na v\u00fdvoj nov\u00fdch produktov a zlep\u0161enie produktov m\u00f4\u017eu dod\u00e1vatelia:\n* pou\u017ei\u0165 inform\u00e1cie na zlep\u0161enie svojich s\u00fa\u010dasn\u00fdch produktov pomocou nov\u00fdch funkci\u00ed a na v\u00fdvoj nov\u00fdch produktov,\n* vytvori\u0165 nov\u00e9 modely a algoritmy pomocou strojov\u00e9ho u\u010denia.\nDod\u00e1vatelia nem\u00f4\u017eu:\n* vykon\u00e1va\u0165 \u017eiadnu in\u00fa oper\u00e1ciu sprac\u00favania \u00fadajov povolen\u00fa na in\u00fd \u00fa\u010del pod\u013ea tohto \u00fa\u010delu."}},"specialPurposes":{"1":{"id":1,"name":"Zaru\u010denie bezpe\u010dnosti, predch\u00e1dzanie podvodom a odstra\u0148ovanie ch\u00fdb","description":"Va\u0161e \u00fadaje m\u00f4\u017eu by\u0165 pou\u017eit\u00e9 na monitorovanie a predch\u00e1dzanie podvodn\u00fdm \u010dinnostiam a zabezpe\u010denie toho, \u017ee syst\u00e9my a procesy bud\u00fa fungova\u0165 spr\u00e1vne a bezpe\u010dne.","descriptionLegal":"Na zaru\u010denie bezpe\u010dnosti, predch\u00e1dzanie podvodom a odstra\u0148ovanie ch\u00fdb dod\u00e1vatelia m\u00f4\u017eu:\n* zabezpe\u010di\u0165, \u017ee \u00fadaje bud\u00fa pren\u00e1\u0161an\u00e9 bezpe\u010dne, \n* odhali\u0165 a zabr\u00e1ni\u0165 \u0161kodlivej, podvodnej, neplatnej alebo nez\u00e1konnej \u010dinnosti,\n* zabezpe\u010di\u0165 spr\u00e1vnu a efekt\u00edvnu prev\u00e1dzku syst\u00e9mov a procesov vr\u00e1tane monitorovania a zlep\u0161ovania v\u00fdkonnosti syst\u00e9mov a procesov vyu\u017e\u00edvan\u00fdch na povolen\u00e9 \u00fa\u010dely.\nDod\u00e1vatelia nem\u00f4\u017eu:\n* vykon\u00e1va\u0165 \u017eiadnu in\u00fa oper\u00e1ciu sprac\u00favania \u00fadajov povolen\u00fa na in\u00fd \u00fa\u010del pod\u013ea tohto \u00fa\u010delu.\nPozn\u00e1mka: Zhroma\u017eden\u00e9 a pou\u017eit\u00e9 \u00fadaje na zaistenie bezpe\u010dnosti, predch\u00e1dzanie podvodom a ladenie m\u00f4\u017eu zah\u0155\u0148a\u0165 automaticky odosielan\u00e9 charakteristiky zariadenia na identifik\u00e1ciu, presn\u00e9 \u00fadaje o geografickej polohe a \u00fadaje z\u00edskan\u00e9 akt\u00edvnym skenovan\u00edm charakterist\u00edk zariadenia na identifik\u00e1ciu bez osobitn\u00e9ho zverejnenia a/alebo prihl\u00e1senia.\n"},"2":{"id":2,"name":"Technick\u00e9 doru\u010dovanie rekl\u00e1m alebo obsahu","description":"Va\u0161e zariadenie m\u00f4\u017ee prij\u00edma\u0165 a odosiela\u0165 inform\u00e1cie, ktor\u00e9 v\u00e1m umo\u017e\u0148uj\u00fa vidie\u0165 a komunikova\u0165 s reklamami a obsahom.","descriptionLegal":"Na poskytovanie inform\u00e1ci\u00ed a odpovedanie na technick\u00e9 po\u017eiadavky dod\u00e1vatelia m\u00f4\u017eu:\n* pou\u017e\u00edva\u0165 IP adresu pou\u017e\u00edvate\u013ea na doru\u010denie reklamy cez internet,\n* odpoveda\u0165 na interakciu pou\u017e\u00edvate\u013ea s reklamou odoslan\u00edm pou\u017e\u00edvate\u013ea na \u00favodn\u00fa str\u00e1nku,\n* pou\u017e\u00edva\u0165 IP adresu pou\u017e\u00edvate\u013ea na doru\u010denie obsahu cez internet,\n* odpoveda\u0165 na interakciu pou\u017e\u00edvate\u013ea s obsahom odoslan\u00edm pou\u017e\u00edvate\u013ea na \u00favodn\u00fa str\u00e1nku,\n* pou\u017e\u00edva\u0165 inform\u00e1cie o type zariadenia a mo\u017enostiach zobrazovania rekl\u00e1m alebo obsahu, napr\u00edklad na poskytnutie spr\u00e1vnej ve\u013ekosti reklamnej kreat\u00edvnosti alebo vhodn\u00e9ho form\u00e1tu videos\u00faboru, ktor\u00fd je podporovan\u00fd zariaden\u00edm.\nDod\u00e1vatelia nem\u00f4\u017eu:\n* vykon\u00e1va\u0165 \u017eiadnu in\u00fa oper\u00e1ciu sprac\u00favania \u00fadajov povolen\u00fa na in\u00fd \u00fa\u010del ako pod\u013ea tohto \u00fa\u010delu.\n"}},"features":{"1":{"id":1,"name":"Porovn\u00e1va\u0165 a kombinova\u0165 offline zdroje \u00fadajov","description":"\u00dadaje z offline zdrojov \u00fadajov mo\u017eno kombinova\u0165 s va\u0161ou online aktivitou na podporu jedn\u00e9ho alebo viacer\u00fdch \u00fa\u010delov.","descriptionLegal":"Dod\u00e1vatelia m\u00f4\u017eu: \n* kombinova\u0165 z\u00edskan\u00e9 \u00fadaje offline s \u00fadajmi zozbieran\u00fdmi online na podporu jedn\u00e9ho alebo viacer\u00fdch \u00fa\u010delov alebo osobitn\u00fdch \u00fa\u010delov.\n"},"2":{"id":2,"name":"Prepojenie r\u00f4znych zariaden\u00ed","description":"Na podporu jedn\u00e9ho alebo viacer\u00fdch \u00fa\u010delov mo\u017eno ur\u010di\u0165, \u017ee r\u00f4zne zariadenia m\u00f4\u017eu patri\u0165 k v\u00e1m alebo va\u0161ej dom\u00e1cnosti.","descriptionLegal":"Dod\u00e1vatelia m\u00f4\u017eu:\n* deterministicky ur\u010di\u0165, \u010di dve alebo viac zariaden\u00ed patria tomu ist\u00e9mu pou\u017e\u00edvate\u013eovi alebo dom\u00e1cnosti,\n* pravdepodobnostne ur\u010di\u0165, \u010di dve alebo viac zariaden\u00ed patria tomu ist\u00e9mu pou\u017e\u00edvate\u013eovi alebo dom\u00e1cnosti,\n* akt\u00edvne skenova\u0165 charakteristiky zariadenia na identifik\u00e1ciu pravdepodobnostnej identifik\u00e1cie, ak pou\u017e\u00edvatelia umo\u017enili dod\u00e1vate\u013eom akt\u00edvne skenova\u0165 charakteristiky zariadenia na identifik\u00e1ciu (\u0161peci\u00e1lna funkcia 2).\n"},"3":{"id":3,"name":"Prij\u00edmanie a pou\u017e\u00edvanie automaticky odosielan\u00fdch charakterist\u00edk zariadenia na identifik\u00e1ciu","description":"Va\u0161e zariadenie mo\u017eno odl\u00ed\u0161i\u0165 od in\u00fdch zariaden\u00ed na z\u00e1klade inform\u00e1ci\u00ed, ktor\u00e9 automaticky odosiela, napr\u00edklad IP adresy alebo typu prehliada\u010da.","descriptionLegal":"Dod\u00e1vatelia m\u00f4\u017eu:\n* vytvori\u0165 identifik\u00e1tor pomocou \u00fadajov, ktor\u00e9 sa automaticky zbieraj\u00fa zo zariadenia, pre konkr\u00e9tne charakteristiky, napr. IP adresa, re\u0165azec pou\u017e\u00edvate\u013esk\u00e9ho agenta,\n* pou\u017e\u00edva\u0165 tak\u00fdto identifik\u00e1tor v snahe znova identifikova\u0165 zariadenie.\nDod\u00e1vatelia nem\u00f4\u017eu:\n* vytvori\u0165 identifik\u00e1tor pomocou \u00fadajov z\u00edskan\u00fdch prostredn\u00edctvom akt\u00edvneho skenovania zariadenia s oh\u013eadom na \u0161pecifick\u00e9 funkcie, napr. nain\u0161talovan\u00e9 p\u00edsma alebo rozl\u00ed\u0161enie obrazovky, bez toho, aby si pou\u017e\u00edvate\u013e osobitne vybral akt\u00edvne skenovanie charakterist\u00edk zariadenia na identifik\u00e1ciu,\n* pou\u017e\u00edva\u0165 tak\u00fdto identifik\u00e1tor na identifik\u00e1ciu zariadenia.\n"}},"specialFeatures":{"1":{"id":1,"name":"Pou\u017e\u00edvanie presn\u00fdch \u00fadajov o geografickej polohe","description":"Va\u0161e presn\u00e9 \u00fadaje o geografickej polohe mo\u017eno pou\u017ei\u0165 na podporu jedn\u00e9ho alebo viacer\u00fdch \u00fa\u010delov. To znamen\u00e1, \u017ee va\u0161a poloha m\u00f4\u017ee by\u0165 presn\u00e1 do nieko\u013ek\u00fdch metrov.","descriptionLegal":"Dod\u00e1vatelia m\u00f4\u017eu:\n* z\u00edskava\u0165 a sprac\u00fava\u0165 presn\u00e9 \u00fadaje o geografickej polohe na podporu jedn\u00e9ho alebo viacer\u00fdch \u00fa\u010delov.\nPozn\u00e1mka: Pou\u017e\u00edvanie presn\u00fdch \u00fadajov o geografickej polohe znamen\u00e1, \u017ee neexistuj\u00fa \u017eiadne obmedzenia t\u00fdkaj\u00face sa presnosti umiestnenia pou\u017e\u00edvate\u013ea. To m\u00f4\u017ee by\u0165 presn\u00e9 do nieko\u013ek\u00fdch metrov.\n"},"2":{"id":2,"name":"Akt\u00edvne skenovanie charakterist\u00edk zariadenia na identifik\u00e1ciu","description":"Va\u0161e zariadenie mo\u017eno identifikova\u0165 na z\u00e1klade skenovania jedine\u010dnej kombin\u00e1cie vlastnost\u00ed v\u00e1\u0161ho zariadenia.","descriptionLegal":"Dod\u00e1vatelia m\u00f4\u017eu:\n* vytvori\u0165 identifik\u00e1tor pomocou \u00fadajov z\u00edskan\u00fdch prostredn\u00edctvom akt\u00edvneho skenovania zariadenia s oh\u013eadom na \u0161pecifick\u00e9 funkcie, napr. nain\u0161talovan\u00e9 p\u00edsma alebo rozl\u00ed\u0161enie obrazovky. \n* Pou\u017e\u00edva\u0165 tak\u00fdto identifik\u00e1tor na identifik\u00e1ciu zariadenia.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Presn\u00e9 \u00fadaje o geografickej polohe a identifik\u00e1cia prostredn\u00edctvom skenovania zariadenia","description":"M\u00f4\u017eu by\u0165 pou\u017eit\u00e9 presn\u00e9 \u00fadaje o geografickej polohe a inform\u00e1cie o vlastnostiach zariadenia."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Z\u00e1kladn\u00e9 reklamy a meranie rekl\u00e1m","description":"M\u00f4\u017eu sa zobrazova\u0165 z\u00e1kladn\u00e9 reklamy. V\u00fdkonnos\u0165 reklamy je mo\u017en\u00e9 mera\u0165."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Personalizovan\u00e9 reklamy","description":"Reklamy mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu rekl\u00e1m je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Z\u00e1kladn\u00e9 reklamy a meranie rekl\u00e1m","description":"M\u00f4\u017eu sa zobrazova\u0165 z\u00e1kladn\u00e9 reklamy. V\u00fdkonnos\u0165 reklamy je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Z\u00e1kladn\u00e9 reklamy, personalizovan\u00fd profil rekl\u00e1m a meranie rekl\u00e1m","description":"M\u00f4\u017eu sa zobrazova\u0165 z\u00e1kladn\u00e9 reklamy. Na lep\u0161iu personaliz\u00e1ciu rekl\u00e1m je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 reklamy je mo\u017en\u00e9 mera\u0165."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Zobrazovanie personalizovan\u00fdch rekl\u00e1m a meranie rekl\u00e1m","description":"Reklamy mo\u017eno personalizova\u0165 na z\u00e1klade profilu. V\u00fdkonnos\u0165 reklamy je mo\u017en\u00e9 mera\u0165."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Zobrazovanie personalizovan\u00fdch rekl\u00e1m, meranie reklamy a preh\u013eady cie\u013eov\u00fdch skup\u00edn","description":"Reklamy mo\u017eno personalizova\u0165 na z\u00e1klade profilu. V\u00fdkonnos\u0165 reklamy je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Personalizovan\u00e9 reklamy a meranie reklamy","description":"Reklamy mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu rekl\u00e1m je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 reklamy je mo\u017en\u00e9 mera\u0165."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Personalizovan\u00e9 reklamy, meranie reklamy a preh\u013eady cie\u013eov\u00fdch skup\u00edn","description":"Reklamy mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu rekl\u00e1m je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 reklamy je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Profil a zobrazovanie personalizovan\u00fdch rekl\u00e1m","description":"Reklamy mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu rekl\u00e1m je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Personalizovan\u00fd obsah","description":"Obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu obsahu je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Zobrazovanie personalizovan\u00e9ho obsahu a meranie obsahu","description":"Obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. V\u00fdkonnos\u0165 obsahu je mo\u017en\u00e9 mera\u0165."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Zobrazovanie personalizovan\u00e9ho obsahu, meranie obsahu a preh\u013eady cie\u013eov\u00fdch skup\u00edn","description":"Obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. V\u00fdkonnos\u0165 obsahu je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Personalizovan\u00fd obsah a meranie obsahu","description":"Obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu obsahu je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 obsahu je mo\u017en\u00e9 mera\u0165."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Personalizovan\u00fd obsah, meranie obsahu a preh\u013eady cie\u013eov\u00fdch skup\u00edn","description":"Obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu obsahu je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 obsahu je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Personalizovan\u00fd obsah, meranie obsahu, preh\u013eady cie\u013eov\u00fdch skup\u00edn a v\u00fdvoj produktov","description":"Obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu obsahu je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 obsahu je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah. \u00dadaje mo\u017eno pou\u017ei\u0165 na vytvorenie alebo zlep\u0161enie sk\u00fasenost\u00ed pou\u017e\u00edvate\u013eov, syst\u00e9mov a softv\u00e9ru"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Meranie reklamy a obsahu a preh\u013eady cie\u013eov\u00fdch skup\u00edn","description":"V\u00fdkonnos\u0165 reklamy a obsahu je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Meranie reklamy a obsahu","description":"V\u00fdkonnos\u0165 reklamy a obsahu je mo\u017en\u00e9 mera\u0165."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Meranie reklamy a vytv\u00e1ranie \u00fadajov o cie\u013eovej skupine","description":"Reklamu je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Meranie reklamy a obsahu, preh\u013eady cie\u013eov\u00fdch skup\u00edn a v\u00fdvoj produktov","description":"V\u00fdkonnos\u0165 reklamy a obsahu je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah. \u00dadaje mo\u017eno pou\u017ei\u0165 na vytvorenie alebo zlep\u0161enie sk\u00fasenost\u00ed pou\u017e\u00edvate\u013eov, syst\u00e9mov a softv\u00e9ru. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Meranie obsahu, preh\u013eady cie\u013eov\u00fdch skup\u00edn a v\u00fdvoj produktov.","description":"V\u00fdkonnos\u0165 obsahu je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah. \u00dadaje mo\u017eno pou\u017ei\u0165 na vytvorenie alebo zlep\u0161enie sk\u00fasenost\u00ed pou\u017e\u00edvate\u013eov, syst\u00e9mov a softv\u00e9ru."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Meranie obsahu a v\u00fdvoj produktov","description":"V\u00fdkonnos\u0165 obsahu je mo\u017en\u00e9 mera\u0165. \u00dadaje mo\u017eno pou\u017ei\u0165 na vytvorenie alebo zlep\u0161enie sk\u00fasenost\u00ed pou\u017e\u00edvate\u013eov, syst\u00e9mov a softv\u00e9ru."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Zobrazovanie personalizovan\u00fdch rekl\u00e1m a obsahu, meranie rekl\u00e1m a obsahu","description":"Reklamy a obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. V\u00fdkonnos\u0165 reklamy a obsahu je mo\u017en\u00e9 mera\u0165."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Zobrazovanie personalizovan\u00fdch rekl\u00e1m a obsahu, meranie rekl\u00e1m a obsahu a preh\u013eady cie\u013eov\u00fdch skup\u00edn","description":"Reklamy a obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. V\u00fdkonnos\u0165 reklamy a obsahu je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah. \u00dadaje mo\u017eno pou\u017ei\u0165 na vytvorenie alebo zlep\u0161enie sk\u00fasenost\u00ed pou\u017e\u00edvate\u013eov, syst\u00e9mov a softv\u00e9ru."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Personalizovan\u00e9 reklamy a obsah, meranie rekl\u00e1m a obsahu","description":"Reklamy a obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu rekl\u00e1m a obsahu je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 reklamy a obsahu je mo\u017en\u00e9 mera\u0165."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Personalizovan\u00e9 reklamy a obsah, meranie rekl\u00e1m a obsahu a preh\u013eady cie\u013eov\u00fdch skup\u00edn","description":"Reklamy a obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu rekl\u00e1m a obsahu je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 reklamy a obsahu je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Personalizovan\u00e9 reklamy a profil obsahu","description":"Na personaliz\u00e1ciu rekl\u00e1m a obsahu je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Zobrazovanie personalizovan\u00fdch rekl\u00e1m a obsahu","description":"Reklamy a obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Z\u00e1kladn\u00e9 reklamy, meranie reklamy a obsahu a preh\u013eady cie\u013eov\u00fdch skup\u00edn","description":"M\u00f4\u017eu sa zobrazova\u0165 z\u00e1kladn\u00e9 reklamy. V\u00fdkonnos\u0165 reklamy a obsahu je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Zobrazovanie personalizovan\u00fdch rekl\u00e1m, personalizovan\u00fd obsah, meranie rekl\u00e1m a obsahu a preh\u013eady cie\u013eov\u00fdch skup\u00edn","description":"Reklamy a obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu obsahu je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 reklamy a obsahu je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Zobrazovanie personalizovan\u00fdch rekl\u00e1m, personalizovan\u00fd obsah, meranie reklamy a obsahu, preh\u013eady cie\u013eov\u00fdch skup\u00edn a v\u00fdvoj produktov","description":"Reklamy a obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu obsahu je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 reklamy a obsahu je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah. \u00dadaje mo\u017eno pou\u017ei\u0165 na vytvorenie alebo zlep\u0161enie sk\u00fasenost\u00ed pou\u017e\u00edvate\u013eov, syst\u00e9mov a softv\u00e9ru."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Z\u00e1kladn\u00e9 reklamy, personalizovan\u00fd obsah, meranie reklamy a obsahu a preh\u013eady cie\u013eov\u00fdch skup\u00edn","description":"M\u00f4\u017eu sa zobrazova\u0165 z\u00e1kladn\u00e9 reklamy. Obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu obsahu je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 reklamy a obsahu je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Z\u00e1kladn\u00e9 reklamy, personalizovan\u00fd obsah, meranie reklamy a obsahu, preh\u013eady cie\u013eov\u00fdch skup\u00edn a v\u00fdvoj produktov","description":"M\u00f4\u017eu sa zobrazova\u0165 z\u00e1kladn\u00e9 reklamy. Obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu obsahu je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 reklamy a obsahu je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah. \u00dadaje mo\u017eno pou\u017ei\u0165 na vytvorenie alebo zlep\u0161enie sk\u00fasenost\u00ed pou\u017e\u00edvate\u013eov, syst\u00e9mov a softv\u00e9ru."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Z\u00e1kladn\u00e9 reklamy, personalizovan\u00fd obsah, meranie obsahu a preh\u013eady cie\u013eov\u00fdch skup\u00edn","description":"M\u00f4\u017eu sa zobrazova\u0165 z\u00e1kladn\u00e9 reklamy. Obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu obsahu je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 reklamy a obsahu je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Z\u00e1kladn\u00e9 reklamy, personalizovan\u00fd obsah, meranie obsahu, preh\u013eady cie\u013eov\u00fdch skup\u00edn a v\u00fdvoj produktov","description":"M\u00f4\u017eu sa zobrazova\u0165 z\u00e1kladn\u00e9 reklamy. Obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu obsahu je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 obsahu je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah. \u00dadaje mo\u017eno pou\u017ei\u0165 na vytvorenie alebo zlep\u0161enie sk\u00fasenost\u00ed pou\u017e\u00edvate\u013eov, syst\u00e9mov a softv\u00e9ru."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Z\u00e1kladn\u00e9 reklamy, personalizovan\u00fd obsah a meranie reklamy","description":"M\u00f4\u017eu sa zobrazova\u0165 z\u00e1kladn\u00e9 reklamy. Obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu obsahu je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 reklamy je mo\u017en\u00e9 mera\u0165."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Z\u00e1kladn\u00e9 reklamy, personalizovan\u00fd obsah, meranie reklamy a v\u00fdvoj produktov","description":"M\u00f4\u017eu sa zobrazova\u0165 z\u00e1kladn\u00e9 reklamy. Obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu obsahu je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 reklamy je mo\u017en\u00e9 mera\u0165. \u00dadaje mo\u017eno pou\u017ei\u0165 na vytvorenie alebo zlep\u0161enie sk\u00fasenost\u00ed pou\u017e\u00edvate\u013eov, syst\u00e9mov a softv\u00e9ru."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Personalizovan\u00e9 reklamy, meranie reklamy a v\u00fdvoj produktov","description":"Reklamy mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu rekl\u00e1m je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 reklamy je mo\u017en\u00e9 mera\u0165. \u00dadaje mo\u017eno pou\u017ei\u0165 na vytvorenie alebo zlep\u0161enie sk\u00fasenost\u00ed pou\u017e\u00edvate\u013eov, syst\u00e9mov a softv\u00e9ru."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Personalizovan\u00e9 reklamy, meranie rekl\u00e1m, \u0161tatistiky cie\u013eov\u00fdch skup\u00edn a v\u00fdvoj produktov","description":"Reklamy mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu rekl\u00e1m je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 reklamy je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 \u0161tatistiky o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah. \u00dadaje mo\u017eno pou\u017ei\u0165 na vytvorenie alebo zlep\u0161enie u\u017e\u00edvate\u013eskej sk\u00fasenosti, syst\u00e9mov a softv\u00e9ru."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Personalizovan\u00e9 reklamy, meranie reklamy a obsahu, \u0161tatistiky cie\u013eov\u00fdch skup\u00edn a v\u00fdvoj produktov","description":"Reklamy mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu rekl\u00e1m je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 reklamy a obsahu je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 \u0161tatistiky o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah. \u00dadaje mo\u017eno pou\u017ei\u0165 na vytvorenie alebo zlep\u0161enie sk\u00fasenost\u00ed pou\u017e\u00edvate\u013eov, syst\u00e9mov a softv\u00e9ru."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Personalizovan\u00e9 reklamy a zobrazovanie personalizovan\u00e9ho obsahu, meranie reklamy a obsahu, \u0161tatistiky cie\u013eov\u00fdch skup\u00edn a v\u00fdvoj produktov","description":"Reklamy a obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu rekl\u00e1m je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 reklamy a obsahu je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 \u0161tatistiky o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah. \u00dadaje mo\u017eno pou\u017ei\u0165 na vytvorenie alebo zlep\u0161enie sk\u00fasenost\u00ed pou\u017e\u00edvate\u013eov, syst\u00e9mov a softv\u00e9ru."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Personalizovan\u00e9 reklamy a obsah, meranie reklamy a obsahu, \u0161tatistiky cie\u013eov\u00fdch skup\u00edn a v\u00fdvoj produktov","description":"Reklamy a obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu rekl\u00e1m a obsahu je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 reklamy a obsahu je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 \u0161tatistiky o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah. \u00dadaje mo\u017eno pou\u017ei\u0165 na vytvorenie alebo zlep\u0161enie sk\u00fasenost\u00ed pou\u017e\u00edvate\u013eov, syst\u00e9mov a softv\u00e9ru."}}} \ No newline at end of file +{"vendorListVersion":94,"lastUpdated":"2021-06-10T16:44:05Z","purposes":{"1":{"id":1,"name":"Uchov\u00e1vanie a/alebo pr\u00edstup k inform\u00e1ci\u00e1m na zariaden\u00ed","description":"S\u00fabory cookie, identifik\u00e1tory zariaden\u00ed alebo in\u00e9 inform\u00e1cie m\u00f4\u017eu by\u0165 uchov\u00e1van\u00e9 alebo pr\u00edstupn\u00e9 na va\u0161om zariaden\u00ed na \u00fa\u010dely, ktor\u00e9 v\u00e1m boli predlo\u017een\u00e9.","descriptionLegal":"Dod\u00e1vatelia m\u00f4\u017eu:\n* uchov\u00e1va\u0165 inform\u00e1cie na zariaden\u00ed, ako s\u00fa s\u00fabory cookie a identifik\u00e1tory zariadenia, ktor\u00e9 sa pou\u017e\u00edvate\u013eovi zobrazuj\u00fa, a pristupova\u0165 k nim.\n"},"2":{"id":2,"name":"V\u00fdber z\u00e1kladn\u00fdch rekl\u00e1m","description":"Reklamy sa m\u00f4\u017eu zobrazova\u0165 na z\u00e1klade obsahu, ktor\u00fd si prezer\u00e1te, aplik\u00e1cie, ktor\u00fa pou\u017e\u00edvate, pribli\u017enej polohy alebo typu v\u00e1\u0161ho zariadenia.","descriptionLegal":"Na z\u00e1kladn\u00fd v\u00fdber reklamy dod\u00e1vatelia m\u00f4\u017eu:\n* pou\u017e\u00edva\u0165 v re\u00e1lnom \u010dase inform\u00e1cie o kontexte, v ktorom sa bude reklama zobrazova\u0165, na zobrazenie reklamy vr\u00e1tane inform\u00e1ci\u00ed o obsahu a zariaden\u00ed, ako je napr\u00edklad: typ zariadenia a mo\u017enosti, pou\u017e\u00edvate\u013esk\u00fd agent, adresa URL, adresa IP, \n* pou\u017e\u00edva\u0165 \u00fadaje o presnej geografickej polohe pou\u017e\u00edvate\u013ea,\n* regulova\u0165 frekvenciu rekl\u00e1m zobrazovan\u00fdch pou\u017e\u00edvate\u013eovi,\n* usporiada\u0165 poradie, v ktorom sa reklamy zobrazuj\u00fa pou\u017e\u00edvate\u013eovi,\n* zabr\u00e1ni\u0165 zobrazovaniu reklamy v nevhodnom redak\u010dnom kontexte (nebezpe\u010dnom pre zna\u010dku).\nDod\u00e1vatelia nem\u00f4\u017eu:\n* vytvori\u0165 prisp\u00f4soben\u00fd profil rekl\u00e1m pomocou t\u00fdchto inform\u00e1ci\u00ed na v\u00fdber bud\u00facich rekl\u00e1m bez osobitn\u00e9ho pr\u00e1vneho z\u00e1kladu na vytvorenie prisp\u00f4soben\u00e9ho profilu rekl\u00e1m.\nPozn\u00e1mka: Nepresn\u00e9 znamen\u00e1, \u017ee je povolen\u00e1 iba pribli\u017en\u00e1 poloha zah\u0155\u0148aj\u00faca najmenej polomer 500 metrov.\n"},"3":{"id":3,"name":"Vytvorenie profilu personalizovan\u00fdch rekl\u00e1m","description":"Je mo\u017en\u00e9 vytvori\u0165 o v\u00e1s a va\u0161ich z\u00e1ujmoch profil, aby sme v\u00e1m mohli zobrazova\u0165 personalizovan\u00e9 reklamy, ktor\u00e9 s\u00fa pre v\u00e1s relevantn\u00e9.","descriptionLegal":"Na vytvorenie profilu personalizovan\u00fdch rekl\u00e1m dod\u00e1vatelia m\u00f4\u017eu:\n* z\u00edskava\u0165 inform\u00e1cie o pou\u017e\u00edvate\u013eovi vr\u00e1tane aktivity pou\u017e\u00edvate\u013ea, z\u00e1ujmov, n\u00e1v\u0161tev str\u00e1nok alebo aplik\u00e1ci\u00ed, demografick\u00fdch \u00fadajov alebo umiestnenia na vytvorenie alebo \u00fapravu profilu pou\u017e\u00edvate\u013ea na pou\u017eitie v personalizovanej reklame.\n* Skombinujte tieto inform\u00e1cie s \u010fal\u0161\u00edmi predt\u00fdm zhroma\u017eden\u00fdmi inform\u00e1ciami, a to aj z in\u00fdch webov a aplik\u00e1ci\u00ed, aby ste vytvorili alebo upravili profil pou\u017e\u00edvate\u013ea na pou\u017eitie v prisp\u00f4sobenej reklame."},"4":{"id":4,"name":"V\u00fdber personalizovan\u00fdch rekl\u00e1m","description":"Personalizovan\u00e9 reklamy sa m\u00f4\u017eu zobrazi\u0165 na z\u00e1klade profilu o v\u00e1s.","descriptionLegal":"Na v\u00fdber personalizovan\u00fdch rekl\u00e1m dod\u00e1vatelia m\u00f4\u017eu:\n* vybra\u0165 personalizovan\u00e9 reklamy na z\u00e1klade profilu pou\u017e\u00edvate\u013ea alebo in\u00fdch historick\u00fdch \u00fadajov o pou\u017e\u00edvate\u013eovi vr\u00e1tane predch\u00e1dzaj\u00facej aktivity pou\u017e\u00edvate\u013ea, z\u00e1ujmov, n\u00e1v\u0161tev str\u00e1nok alebo aplik\u00e1ci\u00ed, umiestnenia alebo demografick\u00fdch inform\u00e1ci\u00ed."},"5":{"id":5,"name":"Vytvorenie profilu personalizovan\u00e9ho obsahu","description":"Je mo\u017en\u00e9 vytvori\u0165 o v\u00e1s a va\u0161ich z\u00e1ujmoch profil, aby sme v\u00e1m mohli zobrazova\u0165 personalizovan\u00fd obsah, ktor\u00fd je pre v\u00e1s relevantn\u00fd.","descriptionLegal":"Na vytvorenie personalizovan\u00e9ho profilu obsahu dod\u00e1vatelia m\u00f4\u017eu:\n* z\u00edskava\u0165 inform\u00e1cie o pou\u017e\u00edvate\u013eovi vr\u00e1tane aktivity pou\u017e\u00edvate\u013ea, z\u00e1ujmov, n\u00e1v\u0161tev str\u00e1nok alebo aplik\u00e1ci\u00ed, demografick\u00fdch inform\u00e1ci\u00ed alebo umiestnenia na vytvorenie alebo \u00fapravu profilu pou\u017e\u00edvate\u013ea na personaliz\u00e1ciu obsahu.\n* Skombinujte tieto inform\u00e1cie s \u010fal\u0161\u00edmi predt\u00fdm zhroma\u017eden\u00fdmi inform\u00e1ciami, a to aj z in\u00fdch webov a aplik\u00e1ci\u00ed, aby ste vytvorili alebo upravili profil pou\u017e\u00edvate\u013ea na pou\u017eitie pri prisp\u00f4soben\u00ed obsahu."},"6":{"id":6,"name":"V\u00fdber personalizovan\u00e9ho obsahu","description":"Personalizovan\u00fd obsah sa m\u00f4\u017ee zobrazi\u0165 na z\u00e1klade profilu o v\u00e1s.","descriptionLegal":"Na v\u00fdber personalizovan\u00e9ho obsahu dod\u00e1vatelia m\u00f4\u017eu:\n* vybra\u0165 personalizovan\u00fd obsah na z\u00e1klade profilu pou\u017e\u00edvate\u013ea alebo in\u00fdch historick\u00fdch \u00fadajov o pou\u017e\u00edvate\u013eovi vr\u00e1tane predch\u00e1dzaj\u00facej aktivity pou\u017e\u00edvate\u013ea, z\u00e1ujmov, n\u00e1v\u0161tev str\u00e1nok alebo aplik\u00e1ci\u00ed, umiestnenia alebo demografick\u00fdch inform\u00e1ci\u00ed."},"7":{"id":7,"name":"Hodnotenie v\u00fdkonnosti reklamy","description":"Je mo\u017en\u00e9 hodnoti\u0165 v\u00fdkonnos\u0165 a \u00fa\u010dinnos\u0165 rekl\u00e1m, ktor\u00e9 vid\u00edte alebo na ktor\u00e9 reagujete.","descriptionLegal":"Na hodnotenie v\u00fdkonnosti reklamy dod\u00e1vatelia m\u00f4\u017eu:\n* hodnoti\u0165, \u010di a ako boli reklamy doru\u010den\u00e9 pou\u017e\u00edvate\u013eovi a \u010di na \u0148u reagoval,\n* poskytova\u0165 v\u00fdkazy o reklam\u00e1ch vr\u00e1tane ich \u00fa\u010dinnosti a v\u00fdkonnosti,\n* poskytova\u0165 v\u00fdkazy o pou\u017e\u00edvate\u013eoch, ktor\u00ed reagovali na reklamy s pou\u017eit\u00edm \u00fadajov pozorovan\u00fdch po\u010das interakcie pou\u017e\u00edvate\u013ea s touto reklamou,\n* poskytova\u0165 vydavate\u013eom v\u00fdkazy o reklam\u00e1ch zobrazen\u00fdch na ich lokalite,\n* vyhodnoti\u0165, \u010di sa reklama zobrazuje vo vhodnom kontexte redak\u010dn\u00e9ho prostredia (bezpe\u010dnom pre zna\u010dku),\n* ur\u010di\u0165 percento, v akom mala reklama mo\u017enos\u0165 by\u0165 viden\u00e1 a trvanie tejto pr\u00edle\u017eitosti. \nDod\u00e1vatelia nem\u00f4\u017eu:\n* pou\u017e\u00edva\u0165 \u00fadaje z panela alebo podobne odvoden\u00e9 \u00fadaje o cie\u013eovej skupine na \u00fadaje z hodnotenia reklamy bez osobitn\u00e9ho pr\u00e1vneho z\u00e1kladu na uplatnenie prieskumu trhu s cie\u013eom vytvori\u0165 preh\u013ead o cie\u013eovej skupine."},"8":{"id":8,"name":"Hodnotenie v\u00fdkonnosti obsahu","description":"Je mo\u017en\u00e9 hodnoti\u0165 v\u00fdkonnos\u0165 a \u00fa\u010dinnos\u0165 obsahu, ktor\u00fd vid\u00edte alebo na ktor\u00fd reagujete.","descriptionLegal":"Na hodnotenie v\u00fdkonnosti obsahu dod\u00e1vatelia m\u00f4\u017eu:\n* hodnoti\u0165 a vykazova\u0165, ako bol obsah doru\u010den\u00fd pou\u017e\u00edvate\u013eom a ako na\u0148 reagovali,\n* poskytova\u0165 v\u00fdkazy pomocou priamo merate\u013en\u00fdch alebo zn\u00e1mych inform\u00e1ci\u00ed o pou\u017e\u00edvate\u013eoch, ktor\u00ed na obsah reagovali.\nDod\u00e1vatelia nem\u00f4\u017eu:\n* hodnoti\u0165, \u010di a ak\u00fdm sp\u00f4sobom boli reklamy (vr\u00e1tane nat\u00edvnych rekl\u00e1m) doru\u010den\u00e9 pou\u017e\u00edvate\u013eom a ako na ne reagovali,\n* pou\u017e\u00edva\u0165 \u00fadaje z panela alebo podobne odvoden\u00e9 \u00fadaje o cie\u013eovej skupine na \u00fadaje z hodnotenia reklamy bez osobitn\u00e9ho pr\u00e1vneho z\u00e1kladu na uplatnenie prieskumu trhu s cie\u013eom vytvori\u0165 preh\u013ead o cie\u013eovej skupine."},"9":{"id":9,"name":"Pou\u017e\u00edvanie prieskumu trhu na vytv\u00e1ranie \u00fadajov o cie\u013eovej skupine","description":"Prieskum trhu sa m\u00f4\u017ee pou\u017ei\u0165 na z\u00edskanie \u010fal\u0161\u00edch inform\u00e1ci\u00ed o cie\u013eovej skupine, ktor\u00e1 nav\u0161tevuje str\u00e1nky alebo aplik\u00e1cie a zobrazuje reklamy.","descriptionLegal":"Na pou\u017e\u00edvanie prieskumu trhu na vytv\u00e1ranie \u00fadajov o cie\u013eovej skupine dod\u00e1vatelia m\u00f4\u017eu:\n* poskytova\u0165 s\u00fahrnn\u00e9 v\u00fdkazy inzerentom alebo ich z\u00e1stupcom o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00fdch ich reklamy oslovili, prostredn\u00edctvom panelov\u00fdch a podobne odvoden\u00fdch preh\u013eadov,\n* poskytova\u0165 s\u00fahrnn\u00e9 v\u00fdkazy pre vydavate\u013eov o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00fdm sa zobrazil obsah a/alebo reklama alebo na ktor\u00e9 reagovali na ich lokalite, a to s pou\u017eit\u00edm panelov\u00fdch a podobne odvoden\u00fdch preh\u013eadov, \n* priradi\u0165 offline \u00fadaje k online pou\u017e\u00edvate\u013eovi na \u00fa\u010dely prieskumu trhu, aby sa vytv\u00e1rali preh\u013eady o cie\u013eovej skupine, ak dod\u00e1vatelia vyhl\u00e1sili, \u017ee sp\u00e1jaj\u00fa a kombinuj\u00fa zdroje \u00fadajov offline (funkcia 1).\nDod\u00e1vatelia nem\u00f4\u017eu: \n* bez osobitn\u00e9ho pr\u00e1vneho z\u00e1kladu na hodnotenie v\u00fdkonnosti reklamy hodnoti\u0165 v\u00fdkonnos\u0165 a \u00fa\u010dinnos\u0165 rekl\u00e1m, ktor\u00e9 boli zobrazen\u00e9 konkr\u00e9tnemu pou\u017e\u00edvate\u013eovi alebo na ktor\u00e9 tento pou\u017e\u00edvate\u013e reagoval,\n* bez osobitn\u00e9ho pr\u00e1vneho z\u00e1kladu na hodnotenie v\u00fdkonnosti obsahu hodnoti\u0165, ktor\u00fd obsah bol konkr\u00e9tnemu pou\u017e\u00edvate\u013eovi zobrazen\u00fd alebo ako na\u0148 reagoval."},"10":{"id":10,"name":"Rozv\u00edjanie a zlep\u0161ovanie produktov","description":"Va\u0161e \u00fadaje m\u00f4\u017eu by\u0165 pou\u017eit\u00e9 na zlep\u0161enie s\u00fa\u010dasn\u00fdch syst\u00e9mov a softv\u00e9ru a na v\u00fdvoj nov\u00fdch produktov.","descriptionLegal":"Na v\u00fdvoj nov\u00fdch produktov a zlep\u0161enie produktov m\u00f4\u017eu dod\u00e1vatelia:\n* pou\u017ei\u0165 inform\u00e1cie na zlep\u0161enie svojich s\u00fa\u010dasn\u00fdch produktov pomocou nov\u00fdch funkci\u00ed a na v\u00fdvoj nov\u00fdch produktov,\n* vytvori\u0165 nov\u00e9 modely a algoritmy pomocou strojov\u00e9ho u\u010denia.\nDod\u00e1vatelia nem\u00f4\u017eu:\n* vykon\u00e1va\u0165 \u017eiadnu in\u00fa oper\u00e1ciu sprac\u00favania \u00fadajov povolen\u00fa na in\u00fd \u00fa\u010del pod\u013ea tohto \u00fa\u010delu."}},"specialPurposes":{"1":{"id":1,"name":"Zaru\u010denie bezpe\u010dnosti, predch\u00e1dzanie podvodom a odstra\u0148ovanie ch\u00fdb","description":"Va\u0161e \u00fadaje m\u00f4\u017eu by\u0165 pou\u017eit\u00e9 na monitorovanie a predch\u00e1dzanie podvodn\u00fdm \u010dinnostiam a zabezpe\u010denie toho, \u017ee syst\u00e9my a procesy bud\u00fa fungova\u0165 spr\u00e1vne a bezpe\u010dne.","descriptionLegal":"Na zaru\u010denie bezpe\u010dnosti, predch\u00e1dzanie podvodom a odstra\u0148ovanie ch\u00fdb dod\u00e1vatelia m\u00f4\u017eu:\n* zabezpe\u010di\u0165, \u017ee \u00fadaje bud\u00fa pren\u00e1\u0161an\u00e9 bezpe\u010dne, \n* odhali\u0165 a zabr\u00e1ni\u0165 \u0161kodlivej, podvodnej, neplatnej alebo nez\u00e1konnej \u010dinnosti,\n* zabezpe\u010di\u0165 spr\u00e1vnu a efekt\u00edvnu prev\u00e1dzku syst\u00e9mov a procesov vr\u00e1tane monitorovania a zlep\u0161ovania v\u00fdkonnosti syst\u00e9mov a procesov vyu\u017e\u00edvan\u00fdch na povolen\u00e9 \u00fa\u010dely.\nDod\u00e1vatelia nem\u00f4\u017eu:\n* vykon\u00e1va\u0165 \u017eiadnu in\u00fa oper\u00e1ciu sprac\u00favania \u00fadajov povolen\u00fa na in\u00fd \u00fa\u010del pod\u013ea tohto \u00fa\u010delu.\nPozn\u00e1mka: Zhroma\u017eden\u00e9 a pou\u017eit\u00e9 \u00fadaje na zaistenie bezpe\u010dnosti, predch\u00e1dzanie podvodom a ladenie m\u00f4\u017eu zah\u0155\u0148a\u0165 automaticky odosielan\u00e9 charakteristiky zariadenia na identifik\u00e1ciu, presn\u00e9 \u00fadaje o geografickej polohe a \u00fadaje z\u00edskan\u00e9 akt\u00edvnym skenovan\u00edm charakterist\u00edk zariadenia na identifik\u00e1ciu bez osobitn\u00e9ho zverejnenia a/alebo prihl\u00e1senia.\n"},"2":{"id":2,"name":"Technick\u00e9 doru\u010dovanie rekl\u00e1m alebo obsahu","description":"Va\u0161e zariadenie m\u00f4\u017ee prij\u00edma\u0165 a odosiela\u0165 inform\u00e1cie, ktor\u00e9 v\u00e1m umo\u017e\u0148uj\u00fa vidie\u0165 a komunikova\u0165 s reklamami a obsahom.","descriptionLegal":"Na poskytovanie inform\u00e1ci\u00ed a odpovedanie na technick\u00e9 po\u017eiadavky dod\u00e1vatelia m\u00f4\u017eu:\n* pou\u017e\u00edva\u0165 IP adresu pou\u017e\u00edvate\u013ea na doru\u010denie reklamy cez internet,\n* odpoveda\u0165 na interakciu pou\u017e\u00edvate\u013ea s reklamou odoslan\u00edm pou\u017e\u00edvate\u013ea na \u00favodn\u00fa str\u00e1nku,\n* pou\u017e\u00edva\u0165 IP adresu pou\u017e\u00edvate\u013ea na doru\u010denie obsahu cez internet,\n* odpoveda\u0165 na interakciu pou\u017e\u00edvate\u013ea s obsahom odoslan\u00edm pou\u017e\u00edvate\u013ea na \u00favodn\u00fa str\u00e1nku,\n* pou\u017e\u00edva\u0165 inform\u00e1cie o type zariadenia a mo\u017enostiach zobrazovania rekl\u00e1m alebo obsahu, napr\u00edklad na poskytnutie spr\u00e1vnej ve\u013ekosti reklamnej kreat\u00edvnosti alebo vhodn\u00e9ho form\u00e1tu videos\u00faboru, ktor\u00fd je podporovan\u00fd zariaden\u00edm.\nDod\u00e1vatelia nem\u00f4\u017eu:\n* vykon\u00e1va\u0165 \u017eiadnu in\u00fa oper\u00e1ciu sprac\u00favania \u00fadajov povolen\u00fa na in\u00fd \u00fa\u010del ako pod\u013ea tohto \u00fa\u010delu.\n"}},"features":{"1":{"id":1,"name":"Porovn\u00e1va\u0165 a kombinova\u0165 offline zdroje \u00fadajov","description":"\u00dadaje z offline zdrojov \u00fadajov mo\u017eno kombinova\u0165 s va\u0161ou online aktivitou na podporu jedn\u00e9ho alebo viacer\u00fdch \u00fa\u010delov.","descriptionLegal":"Dod\u00e1vatelia m\u00f4\u017eu: \n* kombinova\u0165 z\u00edskan\u00e9 \u00fadaje offline s \u00fadajmi zozbieran\u00fdmi online na podporu jedn\u00e9ho alebo viacer\u00fdch \u00fa\u010delov alebo osobitn\u00fdch \u00fa\u010delov.\n"},"2":{"id":2,"name":"Prepojenie r\u00f4znych zariaden\u00ed","description":"Na podporu jedn\u00e9ho alebo viacer\u00fdch \u00fa\u010delov mo\u017eno ur\u010di\u0165, \u017ee r\u00f4zne zariadenia m\u00f4\u017eu patri\u0165 k v\u00e1m alebo va\u0161ej dom\u00e1cnosti.","descriptionLegal":"Dod\u00e1vatelia m\u00f4\u017eu:\n* deterministicky ur\u010di\u0165, \u010di dve alebo viac zariaden\u00ed patria tomu ist\u00e9mu pou\u017e\u00edvate\u013eovi alebo dom\u00e1cnosti,\n* pravdepodobnostne ur\u010di\u0165, \u010di dve alebo viac zariaden\u00ed patria tomu ist\u00e9mu pou\u017e\u00edvate\u013eovi alebo dom\u00e1cnosti,\n* akt\u00edvne skenova\u0165 charakteristiky zariadenia na identifik\u00e1ciu pravdepodobnostnej identifik\u00e1cie, ak pou\u017e\u00edvatelia umo\u017enili dod\u00e1vate\u013eom akt\u00edvne skenova\u0165 charakteristiky zariadenia na identifik\u00e1ciu (\u0161peci\u00e1lna funkcia 2).\n"},"3":{"id":3,"name":"Prij\u00edmanie a pou\u017e\u00edvanie automaticky odosielan\u00fdch charakterist\u00edk zariadenia na identifik\u00e1ciu","description":"Va\u0161e zariadenie mo\u017eno odl\u00ed\u0161i\u0165 od in\u00fdch zariaden\u00ed na z\u00e1klade inform\u00e1ci\u00ed, ktor\u00e9 automaticky odosiela, napr\u00edklad IP adresy alebo typu prehliada\u010da.","descriptionLegal":"Dod\u00e1vatelia m\u00f4\u017eu:\n* vytvori\u0165 identifik\u00e1tor pomocou \u00fadajov, ktor\u00e9 sa automaticky zbieraj\u00fa zo zariadenia, pre konkr\u00e9tne charakteristiky, napr. IP adresa, re\u0165azec pou\u017e\u00edvate\u013esk\u00e9ho agenta,\n* pou\u017e\u00edva\u0165 tak\u00fdto identifik\u00e1tor v snahe znova identifikova\u0165 zariadenie.\nDod\u00e1vatelia nem\u00f4\u017eu:\n* vytvori\u0165 identifik\u00e1tor pomocou \u00fadajov z\u00edskan\u00fdch prostredn\u00edctvom akt\u00edvneho skenovania zariadenia s oh\u013eadom na \u0161pecifick\u00e9 funkcie, napr. nain\u0161talovan\u00e9 p\u00edsma alebo rozl\u00ed\u0161enie obrazovky, bez toho, aby si pou\u017e\u00edvate\u013e osobitne vybral akt\u00edvne skenovanie charakterist\u00edk zariadenia na identifik\u00e1ciu,\n* pou\u017e\u00edva\u0165 tak\u00fdto identifik\u00e1tor na identifik\u00e1ciu zariadenia.\n"}},"specialFeatures":{"1":{"id":1,"name":"Pou\u017e\u00edvanie presn\u00fdch \u00fadajov o geografickej polohe","description":"Va\u0161e presn\u00e9 \u00fadaje o geografickej polohe mo\u017eno pou\u017ei\u0165 na podporu jedn\u00e9ho alebo viacer\u00fdch \u00fa\u010delov. To znamen\u00e1, \u017ee va\u0161a poloha m\u00f4\u017ee by\u0165 presn\u00e1 do nieko\u013ek\u00fdch metrov.","descriptionLegal":"Dod\u00e1vatelia m\u00f4\u017eu:\n* z\u00edskava\u0165 a sprac\u00fava\u0165 presn\u00e9 \u00fadaje o geografickej polohe na podporu jedn\u00e9ho alebo viacer\u00fdch \u00fa\u010delov.\nPozn\u00e1mka: Pou\u017e\u00edvanie presn\u00fdch \u00fadajov o geografickej polohe znamen\u00e1, \u017ee neexistuj\u00fa \u017eiadne obmedzenia t\u00fdkaj\u00face sa presnosti umiestnenia pou\u017e\u00edvate\u013ea. To m\u00f4\u017ee by\u0165 presn\u00e9 do nieko\u013ek\u00fdch metrov.\n"},"2":{"id":2,"name":"Akt\u00edvne skenovanie charakterist\u00edk zariadenia na identifik\u00e1ciu","description":"Va\u0161e zariadenie mo\u017eno identifikova\u0165 na z\u00e1klade skenovania jedine\u010dnej kombin\u00e1cie vlastnost\u00ed v\u00e1\u0161ho zariadenia.","descriptionLegal":"Dod\u00e1vatelia m\u00f4\u017eu:\n* vytvori\u0165 identifik\u00e1tor pomocou \u00fadajov z\u00edskan\u00fdch prostredn\u00edctvom akt\u00edvneho skenovania zariadenia s oh\u013eadom na \u0161pecifick\u00e9 funkcie, napr. nain\u0161talovan\u00e9 p\u00edsma alebo rozl\u00ed\u0161enie obrazovky. \n* Pou\u017e\u00edva\u0165 tak\u00fdto identifik\u00e1tor na identifik\u00e1ciu zariadenia.\n"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Presn\u00e9 \u00fadaje o geografickej polohe a identifik\u00e1cia prostredn\u00edctvom skenovania zariadenia","description":"M\u00f4\u017eu by\u0165 pou\u017eit\u00e9 presn\u00e9 \u00fadaje o geografickej polohe a inform\u00e1cie o vlastnostiach zariadenia."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Z\u00e1kladn\u00e9 reklamy a meranie rekl\u00e1m","description":"M\u00f4\u017eu sa zobrazova\u0165 z\u00e1kladn\u00e9 reklamy. V\u00fdkonnos\u0165 reklamy je mo\u017en\u00e9 mera\u0165."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Personalizovan\u00e9 reklamy","description":"Reklamy mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu rekl\u00e1m je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Z\u00e1kladn\u00e9 reklamy a meranie rekl\u00e1m","description":"M\u00f4\u017eu sa zobrazova\u0165 z\u00e1kladn\u00e9 reklamy. V\u00fdkonnos\u0165 reklamy je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Z\u00e1kladn\u00e9 reklamy, personalizovan\u00fd profil rekl\u00e1m a meranie rekl\u00e1m","description":"M\u00f4\u017eu sa zobrazova\u0165 z\u00e1kladn\u00e9 reklamy. Na lep\u0161iu personaliz\u00e1ciu rekl\u00e1m je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 reklamy je mo\u017en\u00e9 mera\u0165."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Zobrazovanie personalizovan\u00fdch rekl\u00e1m a meranie rekl\u00e1m","description":"Reklamy mo\u017eno personalizova\u0165 na z\u00e1klade profilu. V\u00fdkonnos\u0165 reklamy je mo\u017en\u00e9 mera\u0165."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Zobrazovanie personalizovan\u00fdch rekl\u00e1m, meranie reklamy a preh\u013eady cie\u013eov\u00fdch skup\u00edn","description":"Reklamy mo\u017eno personalizova\u0165 na z\u00e1klade profilu. V\u00fdkonnos\u0165 reklamy je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Personalizovan\u00e9 reklamy a meranie reklamy","description":"Reklamy mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu rekl\u00e1m je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 reklamy je mo\u017en\u00e9 mera\u0165."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Personalizovan\u00e9 reklamy, meranie reklamy a preh\u013eady cie\u013eov\u00fdch skup\u00edn","description":"Reklamy mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu rekl\u00e1m je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 reklamy je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Profil a zobrazovanie personalizovan\u00fdch rekl\u00e1m","description":"Reklamy mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu rekl\u00e1m je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Personalizovan\u00fd obsah","description":"Obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu obsahu je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Zobrazovanie personalizovan\u00e9ho obsahu a meranie obsahu","description":"Obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. V\u00fdkonnos\u0165 obsahu je mo\u017en\u00e9 mera\u0165."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Zobrazovanie personalizovan\u00e9ho obsahu, meranie obsahu a preh\u013eady cie\u013eov\u00fdch skup\u00edn","description":"Obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. V\u00fdkonnos\u0165 obsahu je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Personalizovan\u00fd obsah a meranie obsahu","description":"Obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu obsahu je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 obsahu je mo\u017en\u00e9 mera\u0165."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Personalizovan\u00fd obsah, meranie obsahu a preh\u013eady cie\u013eov\u00fdch skup\u00edn","description":"Obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu obsahu je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 obsahu je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Personalizovan\u00fd obsah, meranie obsahu, preh\u013eady cie\u013eov\u00fdch skup\u00edn a v\u00fdvoj produktov","description":"Obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu obsahu je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 obsahu je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah. \u00dadaje mo\u017eno pou\u017ei\u0165 na vytvorenie alebo zlep\u0161enie sk\u00fasenost\u00ed pou\u017e\u00edvate\u013eov, syst\u00e9mov a softv\u00e9ru"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Meranie reklamy a obsahu a preh\u013eady cie\u013eov\u00fdch skup\u00edn","description":"V\u00fdkonnos\u0165 reklamy a obsahu je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Meranie reklamy a obsahu","description":"V\u00fdkonnos\u0165 reklamy a obsahu je mo\u017en\u00e9 mera\u0165."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Meranie reklamy a vytv\u00e1ranie \u00fadajov o cie\u013eovej skupine","description":"Reklamu je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Meranie reklamy a obsahu, preh\u013eady cie\u013eov\u00fdch skup\u00edn a v\u00fdvoj produktov","description":"V\u00fdkonnos\u0165 reklamy a obsahu je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah. \u00dadaje mo\u017eno pou\u017ei\u0165 na vytvorenie alebo zlep\u0161enie sk\u00fasenost\u00ed pou\u017e\u00edvate\u013eov, syst\u00e9mov a softv\u00e9ru. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Meranie obsahu, preh\u013eady cie\u013eov\u00fdch skup\u00edn a v\u00fdvoj produktov","description":"V\u00fdkonnos\u0165 obsahu je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah. \u00dadaje mo\u017eno pou\u017ei\u0165 na vytvorenie alebo zlep\u0161enie sk\u00fasenost\u00ed pou\u017e\u00edvate\u013eov, syst\u00e9mov a softv\u00e9ru."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Meranie obsahu a v\u00fdvoj produktov","description":"V\u00fdkonnos\u0165 obsahu je mo\u017en\u00e9 mera\u0165. \u00dadaje mo\u017eno pou\u017ei\u0165 na vytvorenie alebo zlep\u0161enie sk\u00fasenost\u00ed pou\u017e\u00edvate\u013eov, syst\u00e9mov a softv\u00e9ru."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Zobrazovanie personalizovan\u00fdch rekl\u00e1m a obsahu, meranie rekl\u00e1m a obsahu","description":"Reklamy a obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. V\u00fdkonnos\u0165 reklamy a obsahu je mo\u017en\u00e9 mera\u0165."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Zobrazovanie personalizovan\u00fdch rekl\u00e1m a obsahu, meranie rekl\u00e1m a obsahu a preh\u013eady cie\u013eov\u00fdch skup\u00edn","description":"Reklamy a obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. V\u00fdkonnos\u0165 reklamy a obsahu je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah. \u00dadaje mo\u017eno pou\u017ei\u0165 na vytvorenie alebo zlep\u0161enie sk\u00fasenost\u00ed pou\u017e\u00edvate\u013eov, syst\u00e9mov a softv\u00e9ru."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Personalizovan\u00e9 reklamy a obsah, meranie rekl\u00e1m a obsahu","description":"Reklamy a obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu rekl\u00e1m a obsahu je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 reklamy a obsahu je mo\u017en\u00e9 mera\u0165."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Personalizovan\u00e9 reklamy a obsah, meranie rekl\u00e1m a obsahu a preh\u013eady cie\u013eov\u00fdch skup\u00edn","description":"Reklamy a obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu rekl\u00e1m a obsahu je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 reklamy a obsahu je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Personalizovan\u00e9 reklamy a profil obsahu","description":"Na personaliz\u00e1ciu rekl\u00e1m a obsahu je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Zobrazovanie personalizovan\u00fdch rekl\u00e1m a obsahu","description":"Reklamy a obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Z\u00e1kladn\u00e9 reklamy, meranie reklamy a obsahu a preh\u013eady cie\u013eov\u00fdch skup\u00edn","description":"M\u00f4\u017eu sa zobrazova\u0165 z\u00e1kladn\u00e9 reklamy. V\u00fdkonnos\u0165 reklamy a obsahu je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Zobrazovanie personalizovan\u00fdch rekl\u00e1m, personalizovan\u00fd obsah, meranie rekl\u00e1m a obsahu a preh\u013eady cie\u013eov\u00fdch skup\u00edn","description":"Reklamy a obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu obsahu je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 reklamy a obsahu je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Zobrazovanie personalizovan\u00fdch rekl\u00e1m, personalizovan\u00fd obsah, meranie reklamy a obsahu, preh\u013eady cie\u013eov\u00fdch skup\u00edn a v\u00fdvoj produktov","description":"Reklamy a obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu obsahu je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 reklamy a obsahu je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah. \u00dadaje mo\u017eno pou\u017ei\u0165 na vytvorenie alebo zlep\u0161enie sk\u00fasenost\u00ed pou\u017e\u00edvate\u013eov, syst\u00e9mov a softv\u00e9ru."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Z\u00e1kladn\u00e9 reklamy, personalizovan\u00fd obsah, meranie reklamy a obsahu a preh\u013eady cie\u013eov\u00fdch skup\u00edn","description":"M\u00f4\u017eu sa zobrazova\u0165 z\u00e1kladn\u00e9 reklamy. Obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu obsahu je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 reklamy a obsahu je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Z\u00e1kladn\u00e9 reklamy, personalizovan\u00fd obsah, meranie reklamy a obsahu, preh\u013eady cie\u013eov\u00fdch skup\u00edn a v\u00fdvoj produktov","description":"M\u00f4\u017eu sa zobrazova\u0165 z\u00e1kladn\u00e9 reklamy. Obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu obsahu je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 reklamy a obsahu je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah. \u00dadaje mo\u017eno pou\u017ei\u0165 na vytvorenie alebo zlep\u0161enie sk\u00fasenost\u00ed pou\u017e\u00edvate\u013eov, syst\u00e9mov a softv\u00e9ru."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Z\u00e1kladn\u00e9 reklamy, personalizovan\u00fd obsah, meranie obsahu a preh\u013eady cie\u013eov\u00fdch skup\u00edn","description":"M\u00f4\u017eu sa zobrazova\u0165 z\u00e1kladn\u00e9 reklamy. Obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu obsahu je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 reklamy a obsahu je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Z\u00e1kladn\u00e9 reklamy, personalizovan\u00fd obsah, meranie obsahu, preh\u013eady cie\u013eov\u00fdch skup\u00edn a v\u00fdvoj produktov","description":"M\u00f4\u017eu sa zobrazova\u0165 z\u00e1kladn\u00e9 reklamy. Obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu obsahu je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 obsahu je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 inform\u00e1cie o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah. \u00dadaje mo\u017eno pou\u017ei\u0165 na vytvorenie alebo zlep\u0161enie sk\u00fasenost\u00ed pou\u017e\u00edvate\u013eov, syst\u00e9mov a softv\u00e9ru."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Z\u00e1kladn\u00e9 reklamy, personalizovan\u00fd obsah a meranie reklamy","description":"M\u00f4\u017eu sa zobrazova\u0165 z\u00e1kladn\u00e9 reklamy. Obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu obsahu je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 reklamy je mo\u017en\u00e9 mera\u0165."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Z\u00e1kladn\u00e9 reklamy, personalizovan\u00fd obsah, meranie reklamy a v\u00fdvoj produktov","description":"M\u00f4\u017eu sa zobrazova\u0165 z\u00e1kladn\u00e9 reklamy. Obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu obsahu je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 reklamy je mo\u017en\u00e9 mera\u0165. \u00dadaje mo\u017eno pou\u017ei\u0165 na vytvorenie alebo zlep\u0161enie sk\u00fasenost\u00ed pou\u017e\u00edvate\u013eov, syst\u00e9mov a softv\u00e9ru."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Personalizovan\u00e9 reklamy, meranie reklamy a v\u00fdvoj produktov","description":"Reklamy mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu rekl\u00e1m je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 reklamy je mo\u017en\u00e9 mera\u0165. \u00dadaje mo\u017eno pou\u017ei\u0165 na vytvorenie alebo zlep\u0161enie sk\u00fasenost\u00ed pou\u017e\u00edvate\u013eov, syst\u00e9mov a softv\u00e9ru."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Personalizovan\u00e9 reklamy, meranie rekl\u00e1m, \u0161tatistiky cie\u013eov\u00fdch skup\u00edn a v\u00fdvoj produktov","description":"Reklamy mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu rekl\u00e1m je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 reklamy je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 \u0161tatistiky o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah. \u00dadaje mo\u017eno pou\u017ei\u0165 na vytvorenie alebo zlep\u0161enie u\u017e\u00edvate\u013eskej sk\u00fasenosti, syst\u00e9mov a softv\u00e9ru."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Personalizovan\u00e9 reklamy, meranie reklamy a obsahu, \u0161tatistiky cie\u013eov\u00fdch skup\u00edn a v\u00fdvoj produktov","description":"Reklamy mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu rekl\u00e1m je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 reklamy a obsahu je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 \u0161tatistiky o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah. \u00dadaje mo\u017eno pou\u017ei\u0165 na vytvorenie alebo zlep\u0161enie sk\u00fasenost\u00ed pou\u017e\u00edvate\u013eov, syst\u00e9mov a softv\u00e9ru."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Personalizovan\u00e9 reklamy a zobrazovanie personalizovan\u00e9ho obsahu, meranie reklamy a obsahu, \u0161tatistiky cie\u013eov\u00fdch skup\u00edn a v\u00fdvoj produktov","description":"Reklamy a obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu rekl\u00e1m je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 reklamy a obsahu je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 \u0161tatistiky o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah. \u00dadaje mo\u017eno pou\u017ei\u0165 na vytvorenie alebo zlep\u0161enie sk\u00fasenost\u00ed pou\u017e\u00edvate\u013eov, syst\u00e9mov a softv\u00e9ru."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Personalizovan\u00e9 reklamy a obsah, meranie reklamy a obsahu, \u0161tatistiky cie\u013eov\u00fdch skup\u00edn a v\u00fdvoj produktov","description":"Reklamy a obsah mo\u017eno personalizova\u0165 na z\u00e1klade profilu. Na lep\u0161iu personaliz\u00e1ciu rekl\u00e1m a obsahu je mo\u017en\u00e9 prida\u0165 \u010fal\u0161ie \u00fadaje. V\u00fdkonnos\u0165 reklamy a obsahu je mo\u017en\u00e9 mera\u0165. Je mo\u017en\u00e9 z\u00edska\u0165 \u0161tatistiky o cie\u013eov\u00fdch skupin\u00e1ch, ktor\u00e9 videli reklamy a obsah. \u00dadaje mo\u017eno pou\u017ei\u0165 na vytvorenie alebo zlep\u0161enie sk\u00fasenost\u00ed pou\u017e\u00edvate\u013eov, syst\u00e9mov a softv\u00e9ru."}}} \ No newline at end of file diff --git a/src/s1/config/2.0/purposes/purposes-sl.json b/src/s1/config/2.0/purposes/purposes-sl.json index 3b2bf507..b3e19b16 100644 --- a/src/s1/config/2.0/purposes/purposes-sl.json +++ b/src/s1/config/2.0/purposes/purposes-sl.json @@ -1 +1 @@ -{"vendorListVersion":79,"lastUpdated":"2021-02-25T16:36:25Z","purposes":{"1":{"id":1,"name":"Shranjevanje in/ali dostop do podatkov na napravi","description":"Pi\u0161kotki, identifikatorji naprav ali drugi podatki so lahko shranjeni ali dostopni na va\u0161i napravi za namene, ki so vam predstavljeni.","descriptionLegal":"Dobavitelji lahko:\n* shranjujejo in dostopajo do podatkov na napravi, kot so pi\u0161kotki in identifikatorji naprav, ki so predstavljeni uporabniku."},"2":{"id":2,"name":"Izbira osnovnih oglasov","description":"Oglasi se vam lahko prikazujejo na podlagi vsebine, ki si jo ogledujete, aplikacije, ki jo uporabljate, va\u0161e pribli\u017ene lokacije ali vrste va\u0161e naprave.","descriptionLegal":"Za izbiro osnovnih oglasov lahko dobavitelji:\n* uporabijo realno\u010dasovne podatke o kontekstu, v katerem bo prikazan oglas, za prikaz oglasa, vklju\u010dno s podatki o vsebini in napravi, kot so: vrsta in zmogljivosti naprave, uporabni\u0161ki agent, URL, IP-naslov, \n* uporabijo nenatan\u010dne geolokacijske podatke uporabnika,\n* nadzorujejo frekvenco oglasov, prikazanih uporabniku,\n* dolo\u010dijo zaporedje, v katerem so oglasi prikazani uporabniku,\n* prepre\u010dijo, da bi se oglas prikazoval v neprimernem uredni\u0161kem (za blagovno znamko neustreznem) kontekstu.\nDobavitelji ne smejo:\n* Ustvarjati profilov personaliziranih oglasov z uporabo teh podatkov za izbiro oglasov v prihodnosti brez lo\u010dene pravne podlage za ustvarjanje profilov personaliziranih oglasov.\nOPOMBA. Nenatan\u010dno pomeni, da je dovoljena le pribli\u017ena lokacija s polmerom najmanj 500 metrov.\n"},"3":{"id":3,"name":"Ustvarjanje profila personaliziranih oglasov","description":"Profil je mogo\u010de izdelati o vas in va\u0161ih interesih, da se vam prika\u017ee personalizirane oglase, ki so relevantni za vas.","descriptionLegal":"Za ustvarjanje profila personaliziranih oglasov lahko dobavitelji:\n* zbirajo podatke o uporabniku, vklju\u010dno z dejavnostjo uporabnika, interesi, obiski spletnih mest ali aplikacij, demografskimi podatki ali lokacijo za ustvarjanje ali urejanje uporabni\u0161kega profila za uporabo v personaliziranem ogla\u0161evanju.\n* Te podatke zdru\u017eite z drugimi predhodno zbranimi informacijami, vklju\u010dno s spletnimi mesti in aplikacijami, da ustvarite ali uredite uporabni\u0161ki profil za uporabo v prilagojenem ogla\u0161evanju."},"4":{"id":4,"name":"Izbira personaliziranih oglasov","description":"Personalizirani oglasi se vam lahko prikazujejo na podlagi profila o vas.","descriptionLegal":"Za izbiro personaliziranih oglasov lahko dobavitelji:\n* izberejo personalizirane oglase na osnovi uporabni\u0161kega profila ali drugih zgodovinskih podatkov uporabnika, vklju\u010dno z uporabnikovo predhodno dejavnostjo, interesi, obiski spletnih mest ali aplikacij, lokacijo ali demografskimi podatki.\n"},"5":{"id":5,"name":"Ustvarjanje profila personalizirane vsebine","description":"Profil je mogo\u010de ustvariti o vas in va\u0161ih interesih za prikaz personalizirane vsebine, ki je relevantna za vas.","descriptionLegal":"Za ustvarjanje profila personalizirane vsebine lahko dobavitelji:\n* zbirajo podatke o uporabniku, vklju\u010dno z dejavnostjo uporabnika, interesi, obiski spletnih mest ali aplikacij, demografskimi podatki ali lokacijo, za ustvarjanje ali urejanje uporabni\u0161kega profila za personalizirano vsebino.\n* Te podatke zdru\u017eite z drugimi predhodno zbranimi informacijami, vklju\u010dno s spletnimi mesti in aplikacijami, da ustvarite ali uredite uporabni\u0161ki profil za uporabo pri prilagajanju vsebine.\n"},"6":{"id":6,"name":"Izbira personalizirane vsebine","description":"Personalizirana vsebina se vam lahko prikazuje na podlagi profila o vas.","descriptionLegal":"Za izbiro personalizirane vsebine lahko dobavitelji:\n* izberejo personalizirano vsebino na osnovi uporabni\u0161kega profila ali drugih zgodovinskih podatkov uporabnika, vklju\u010dno z uporabnikovo predhodno dejavnostjo, interesi, obiski spletnih mest ali aplikacij, lokacijo ali demografskimi podatki.\n"},"7":{"id":7,"name":"Merjenje uspe\u0161nosti oglasov","description":"Meri se lahko u\u010dinkovitost in uspe\u0161nost oglasov, ki so vidni in na katere se je mogo\u010de odzvati.","descriptionLegal":"Za merjenje uspe\u0161nosti oglasov lahko dobavitelji:\n* merijo, ali so bili oglasi prikazani uporabniku in kak\u0161en je bil uporabnikov odziv nanje,\n* zagotovijo poro\u010danje o oglasih, vklju\u010dno z njihovo u\u010dinkovitostjo in uspe\u0161nostjo,\n* zagotovijo poro\u010danje o uporabnikih, ki so se odzvali na oglase, z uporabo podatkov, ugotovljenih med uporabnikovim odzivom na dani oglas,\n* zagotovijo poro\u010danje izdajateljem o oglasih, prikazanih na njihovi lastnini,\n* merijo, ali je oglas prikazan v primernem (za blagovno znamko ustreznem) kontekstu uredni\u0161kega okolja,\n* dolo\u010dijo odstotek oglasa, ki ga je bilo mogo\u010de videti, ter \u010dasovno obdobje, v katerem ga je bilo mogo\u010de videti. \nDobavitelji ne smejo:\n* podatkov o vpogledu v ciljno skupino, pridobljenih na okroglih mizah ali na podoben na\u010din, uporabljati za podatke za merjenje oglasov brez pravne podlage za uporabo tr\u017enih raziskav za ustvarjanje vpogledov v ciljno skupino."},"8":{"id":8,"name":"Merjenje uspe\u0161nosti vsebine","description":"Meri se lahko u\u010dinkovitost in uspe\u0161nost vsebine, ki je vidna in na katero se je mogo\u010de odzvati.","descriptionLegal":"Za merjenje uspe\u0161nosti vsebine lahko dobavitelji:\n* merijo in poro\u010dajo o tem, kako je bila vsebina predstavljena in kako so se uporabniki odzvali nanjo,\n* zagotovijo poro\u010danje o uporabnikih, ki so se odzvali na vsebino, z uporabo neposredno merljivih ali znanih informacij.\nDobavitelji ne smejo:\n* meriti, ali so bili oglasi (vklju\u010dno z izvornimi oglasi) prikazani uporabniku in kak\u0161en je bil uporabnikov odziv nanje,\n* podatkov o vpogledu v ciljno skupino, pridobljenih na okroglih mizah ali na podoben na\u010din, uporabljati za podatke za merjenje oglasov brez pravne podlage za uporabo tr\u017enih raziskav za ustvarjanje vpogledov v ciljno skupino."},"9":{"id":9,"name":"Ustvarjanje vpogledov v ciljno skupino s pomo\u010djo tr\u017enih raziskav","description":"Tr\u017ene raziskave se lahko uporabljajo za spoznavanje ciljne skupine, ki obiskuje spletna mesta/aplikacije in si ogleduje oglase.","descriptionLegal":"Za ustvarjanje vpogledov v ciljno skupino s pomo\u010djo tr\u017enih raziskav lahko dobavitelji:\n* ogla\u0161evalcem ali njihovim predstavnikom preko vpogledov, ki jih pridobijo z okroglimi mizami in na podobne na\u010dine, zagotavljajo zbirna poro\u010dila o ciljni skupini, ki jih dose\u017eejo njihovi oglasi,\n* z vpogledi, ki jih pridobijo z okroglimi mizami in na podobne na\u010dine, ustvarjajo zbirna poro\u010dila o ciljni skupini, ki so mu bili prikazani vsebina in/ali oglasi na njihovi lastnini oz. se je nanje odzvalo. \n* pove\u017eejo nespletne podatke s spletnim uporabnikom za namene tr\u017enih raziskav za zagotavljanje vpogledov v ciljno skupino, \u010de dobavitelji izjavijo, da bodo usklajevali in kombinirali nespletne vire podatkov (Funkcija 1).\nDobavitelji ne smejo: \n* meriti uspe\u0161nosti in u\u010dinkovitosti oglasov, ki so bili prikazani dolo\u010denemu uporabniku oz. na katere se je odzval, brez lo\u010dene pravne podlage za merjenje uspe\u0161nosti oglasov.\n* meriti, katera vsebina je bila prikazana dolo\u010denemu uporabniku in kako se je odzval nanjo, brez lo\u010dene pravne podlage za merjenje uspe\u0161nosti vsebine."},"10":{"id":10,"name":"Razvoj in izbolj\u0161ave izdelkov","description":"Va\u0161i podatki se lahko uporabljajo za izbolj\u0161anje obstoje\u010dih sistemov in programske opreme ter za razvoj novih izdelkov.","descriptionLegal":"Za razvoj novih izdelkov in izbolj\u0161ave izdelkov lahko dobavitelji:\n* uporabljajo informacije za izbolj\u0161anje obstoje\u010dih izdelkov z novimi funkcijami in za razvoj novih izdelkov,\n* ustvarjajo nove modele in algoritme s strojnim u\u010denjem.\nDobavitelji ne smejo:\n* v okviru tega namena izvajati nobenih drugih postopkov obdelave podatkov, ki so dovoljeni v okviru drugega namena."}},"specialPurposes":{"1":{"id":1,"name":"Zagotavljanje varnosti, prepre\u010devanje prevar in odpravljanje te\u017eav","description":"Va\u0161i podatki se lahko uporabljajo za spremljanje in prepre\u010devanje goljufivih dejavnosti in za zagotavljanje pravilnega in varnega delovanja sistemov in postopkov.","descriptionLegal":"Za zagotavljanje varnosti, prepre\u010devanje prevar in odpravljanje te\u017eav lahko dobavitelji:\n* zagotovijo, da so podatki varno preneseni, \n* zaznavajo in prepre\u010dujejo zlonamerne, goljufive, neveljavne ali nezakonite dejavnosti,\n* zagotavljajo pravilno in u\u010dinkovito delovanje sistemov in postopkov, vklju\u010dno z nadzorom in izbolj\u0161avo delovanja sistemov in postopkov, vklju\u010denih v dovoljene namene.\nDobavitelji ne smejo:\n* v okviru tega namena izvajati nobenih drugih postopkov obdelave podatkov, ki so dovoljeni v okviru drugega namena.\nOpomba: Podatki, zbrani in uporabljeni za zagotavljanje varnosti, prepre\u010devanje prevar in odpravljanje te\u017eav lahko vklju\u010dujejo samodejno poslane lastnosti naprave za identifikacijo, natan\u010dne geolokacijske podatke in podatke, pridobljene z aktivnim skeniranjem lastnosti naprave za identifikacijo brez lo\u010denega razkritja in/ali vklju\u010ditve."},"2":{"id":2,"name":"Tehni\u010dno prikazovanje oglasov ali vsebine","description":"Va\u0161a naprava lahko prejema in po\u0161ilja podatke, ki vam omogo\u010dajo, da vidite oglase in vsebino ter da se odzivate nanje.","descriptionLegal":"Za zagotavljanje informacij in odgovorov na tehni\u010dne zahteve lahko dobavitelji:\n* uporabijo IP-naslov uporabnika za prikaz oglasa prek interneta,\n* na uporabnikov odziv na oglas odgovorijo tako, da uporabnika po\u0161ljejo na pristajalno stran,\n* uporabijo IP-naslov uporabnika za prikaz vsebine prek interneta,\n* na uporabnikov odziv na vsebino odgovorijo tako, da uporabnika po\u0161ljejo na pristajalno stran,\n* uporabijo informacije o vrsti naprave in zmogljivostih za prikaz oglasov ali vsebine, na primer, za prikaz kreativne ali video datoteke z oglasom pravilne velikosti v obliki, ki jo podpira naprava.\nDobavitelji ne smejo:\n* v okviru tega namena izvajati nobenih drugih postopkov obdelave podatkov, ki so dovoljeni v okviru drugega namena.\n"}},"features":{"1":{"id":1,"name":"Usklajevanje in zdru\u017eevanje virov podatkov, ki niso pridobljeni na spletu","description":"Podatki iz nespletnih virov se lahko zdru\u017eijo z va\u0161o spletno dejavnostjo za podporo enemu ali ve\u010d namenom.","descriptionLegal":"Dobavitelji lahko: \n* podatke, ki niso pridobljeni na spletu, zdru\u017eijo s tistimi, zbranimi prek spleta, za podporo enemu ali ve\u010d namenom ali posebnim namenom.\n"},"2":{"id":2,"name":"Povezovanje razli\u010dnih naprav","description":"Razli\u010dne naprave se lahko dolo\u010dijo kot va\u0161e ali last va\u0161ega gospodinjstva za podporo enemu ali ve\u010d namenom.","descriptionLegal":"Dobavitelji lahko:\n* deterministi\u010dno dolo\u010dijo, da dve napravi ali ve\u010d naprav pripada istemu uporabniku ali gospodinjstvu,\n* verjetnostno dolo\u010dijo, da dve napravi ali ve\u010d naprav pripada istemu uporabniku ali gospodinjstvu,\n* aktivno skenirajo zna\u010dilnosti naprave za identifikacijo za verjetnostno identifikacijo, \u010de so uporabniki dovolili dobaviteljem, da aktivno skenirajo lastnosti naprave za identifikacijo (posebna funkcija 2).\n"},"3":{"id":3,"name":"Prejemanje in uporaba samodejno poslanih lastnosti naprave za identifikacijo","description":"Va\u0161o napravo je mogo\u010de od drugih naprav lo\u010diti na podlagi podatkov, ki jih samodejno po\u0161ilja, npr. IP-naslov ali vrsta brskalnika.","descriptionLegal":"Dobavitelji lahko:\n* Ustvarijo identifikator s podatki, samodejno zbranimi z naprave za dolo\u010dene zna\u010dilnosti, npr. IP-naslov, niz uporabni\u0161kih agentov.\n* Ta identifikator lahko uporabijo za poskus ponovne identifikacije naprave.\nDobavitelji ne smejo:\n* Ustvarjati identifikatorjev s podatki, ki so bili zbrani prek aktivnega skeniranja naprave za specifi\u010dne zna\u010dilnosti, npr. name\u0161\u010dene pisave ali lo\u010dljivost zaslona, brez lo\u010dene vklju\u010ditve naprave uporabnikov v aktivno skeniranje z namenom identifikacije.\n* Tovrsten identifikator uporabijo za ponovno identifikacijo naprave.\n"}},"specialFeatures":{"1":{"id":1,"name":"Uporaba natan\u010dnih geolokacijskih podatkov","description":"Va\u0161i natan\u010dni geolokacijski podatki se lahko uporabljajo za podporo enemu ali ve\u010d namenom. To pomeni, da je va\u0161a lokacija lahko natan\u010dna na nekaj metrov.","descriptionLegal":"Dobavitelji lahko:\n* zbirajo in obdelujejo natan\u010dne geolokacijske podatke za podporo enemu ali ve\u010d namenom.\nOPOMBA. Natan\u010dna geolokacija pomeni, da ni nobenih omejitev glede natan\u010dnosti uporabnikove lokacije, ki je lahko natan\u010dna na nekaj metrov.\n"},"2":{"id":2,"name":"Aktivno skeniranje zna\u010dilnosti naprave za identifikacijo","description":"Va\u0161a naprava je lahko identificirana na podlagi skeniranja edinstvene kombinacije zna\u010dilnosti va\u0161e naprave.","descriptionLegal":"Dobavitelji lahko:\n* ustvarijo identifikator s podatki, ki so bili zbrani prek aktivnega skeniranja naprave za specifi\u010dne zna\u010dilnosti, npr. name\u0161\u010dene pisave ali lo\u010dljivost zaslona, \n* Tovrsten identifikator uporabijo za ponovno identifikacijo naprave."}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Natan\u010dni geolokacijski podatki in identifikacija prek skeniranja naprave","description":"Uporabite lahko natan\u010dno geolokacijo in informacije o lastnostih naprave."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Osnovni oglasi in merjenje oglasov","description":"Prikazujete lahko osnovne oglase. Merite lahko uspe\u0161nost oglasov."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Personalizirani oglasi","description":"Oglase lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo oglasov lahko dodate ve\u010d podatkov."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Osnovni oglasi in merjenje oglasov","description":"Prikazujete lahko osnovne oglase. Merite lahko uspe\u0161nost oglasov. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Osnovni oglasi, profil personaliziranih oglasov in merjenje oglasov","description":"Prikazujete lahko osnovne oglase. Za bolj\u0161o personalizacijo oglasov lahko dodate ve\u010d podatkov. Merite lahko uspe\u0161nost oglasov."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Prikaz personaliziranih oglasov in merjenje","description":"Oglase lahko personalizirate na podlagi profila. Merite lahko uspe\u0161nost oglasov."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Prikaz personaliziranih oglasov, merjenje oglasov in vpogledi v ciljno skupino","description":"Oglase lahko personalizirate na podlagi profila. Merite lahko uspe\u0161nost oglasov. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Personalizirani oglasi in merjenje oglasov","description":"Oglase lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo oglasov lahko dodate ve\u010d podatkov. Merite lahko uspe\u0161nost oglasov."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Personalizirani oglasi, merjenje oglasov in vpogledi v ciljno skupino","description":"Oglase lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo oglasov lahko dodate ve\u010d podatkov. Merite lahko uspe\u0161nost oglasov. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Profil personaliziranih oglasov in prikaz","description":"Oglase lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo oglasov lahko dodate ve\u010d podatkov."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Personalizirana vsebina","description":"Vsebino lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo vsebine lahko dodate ve\u010d podatkov."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Prikaz personalizirane vsebine in merjenje vsebine","description":"Vsebino lahko personalizirate na podlagi profila. Uspe\u0161nost vsebine lahko merite."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Prikaz personalizirane vsebine, merjenje vsebine in vpogledi v ciljno skupino","description":"Vsebino lahko personalizirate na podlagi profila. Uspe\u0161nost vsebine lahko merite. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Personalizirana vsebina in merjenje vsebine","description":"Vsebino lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo vsebine lahko dodate ve\u010d podatkov. Uspe\u0161nost vsebine lahko merite."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Personalizirana vsebina, merjenje vsebine in vpogled v ciljno skupino","description":"Vsebino lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo vsebine lahko dodate ve\u010d podatkov. Uspe\u0161nost vsebine lahko merite. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Personalizirana vsebina, merjenje vsebine, vpogled v ciljno skupino in razvoj izdelkov","description":"Vsebino lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo vsebine lahko dodate ve\u010d podatkov. Uspe\u0161nost vsebine lahko merite. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino. Podatki se lahko uporabljajo za izgradnjo ali izbolj\u0161anje uporabni\u0161ke izku\u0161nje, sistemov in programske opreme"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Merjenje oglasov in vsebine ter vpogledi v ciljno skupino","description":"Uspe\u0161nost oglasov in vsebine lahko merite. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Merjenje oglasov in vsebine","description":"Uspe\u0161nost oglasov in vsebine lahko merite."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Merjenje oglasov in vpogledi v ciljno skupino","description":"Oglase lahko merite. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Merjenje oglasov in vsebine, vpogledi v ciljno skupino in razvoj izdelkov","description":"Uspe\u0161nost oglasov in vsebine lahko merite. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino. Podatki se lahko uporabljajo za izgradnjo ali izbolj\u0161anje uporabni\u0161ke izku\u0161nje, sistemov in programske opreme. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Merjenje vsebine, vpogledi v ciljno skupino in razvoj izdelkov.","description":"Uspe\u0161nost vsebine lahko merite. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino. Podatki se lahko uporabljajo za izgradnjo ali izbolj\u0161anje uporabni\u0161ke izku\u0161nje, sistemov in programske opreme."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Merjenje vsebine in razvoj izdelkov","description":"Uspe\u0161nost vsebine lahko merite. Podatki se lahko uporabljajo za izgradnjo ali izbolj\u0161anje uporabni\u0161ke izku\u0161nje, sistemov in programske opreme."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Prikaz personaliziranih oglasov in vsebine ter merjenje oglasov in vsebine","description":"Oglase in vsebino lahko personalizirate na podlagi profila. Uspe\u0161nost oglasov in vsebine lahko merite."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Prikaz personaliziranih oglasov in vsebine, merjenje oglasov in vsebine ter vpogledi v ciljno skupino","description":"Oglase in vsebino lahko personalizirate na podlagi profila. Uspe\u0161nost oglasov in vsebine lahko merite. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino. Podatki se lahko uporabljajo za izgradnjo ali izbolj\u0161anje uporabni\u0161ke izku\u0161nje, sistemov in programske opreme."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Personalizirani oglasi in vsebine ter merjenje oglasov in vsebine","description":"Oglase in vsebino lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo oglasov in vsebine lahko dodate ve\u010d podatkov. Uspe\u0161nost oglasov in vsebine lahko merite."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Personalizirani oglasi in vsebine, merjenje oglasov in vsebine ter vpogledi v ciljno skupino","description":"Oglase in vsebino lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo oglasov in vsebine lahko dodate ve\u010d podatkov. Uspe\u0161nost oglasov in vsebine lahko merite. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Personalizirani oglasi in profil vsebine","description":"Za personalizacijo oglasov in vsebine lahko dodate ve\u010d podatkov."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Personalizirani oglasi in prikaz vsebine","description":"Oglase in vsebino lahko personalizirate na podlagi profila."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Osnovni oglasi, merjenje oglasov in vsebine ter vpogledi v ciljno skupino","description":"Prikazujete lahko osnovne oglase. Uspe\u0161nost oglasov in vsebine lahko merite. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Prikaz personaliziranih oglasov, personalizirana vsebina, merjenje oglasov in vsebine ter vpogledi v ciljno skupino","description":"Oglase in vsebino lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo vsebine lahko dodate ve\u010d podatkov. Uspe\u0161nost oglasov in vsebine lahko merite. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Prikaz personaliziranih oglasov, personalizirana vsebina, merjenje oglasov in vsebine, vpogledi v ciljno skupino in razvoj izdelkov","description":"Oglase in vsebino lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo vsebine lahko dodate ve\u010d podatkov. Uspe\u0161nost oglasov in vsebine lahko merite. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino. Podatki se lahko uporabljajo za izgradnjo ali izbolj\u0161anje uporabni\u0161ke izku\u0161nje, sistemov in programske opreme."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Osnovni oglasi, personalizirana vsebina, merjenje oglasov in vsebine ter vpogledi v ciljno skupino","description":"Prikazujete lahko osnovne oglase. Vsebino lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo vsebine lahko dodate ve\u010d podatkov. Uspe\u0161nost oglasov in vsebine lahko merite. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Osnovni oglasi, personalizirana vsebina, merjenje oglasov in vsebine, vpogledi v ciljno skupino in razvoj izdelkov","description":"Prikazujete lahko osnovne oglase. Vsebino lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo vsebine lahko dodate ve\u010d podatkov. Uspe\u0161nost oglasov in vsebine lahko merite. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino. Podatki se lahko uporabljajo za izgradnjo ali izbolj\u0161anje uporabni\u0161ke izku\u0161nje, sistemov in programske opreme."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Osnovni oglasi, personalizirana vsebina, merjenje vsebine in vpogledi v ciljno skupino","description":"Prikazujete lahko osnovne oglase. Vsebino lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo vsebine lahko dodate ve\u010d podatkov. Uspe\u0161nost oglasov in vsebine lahko merite. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Osnovni oglasi, personalizirana vsebina, merjenje vsebine, vpogledi v ciljno skupino in razvoj izdelkov","description":"Prikazujete lahko osnovne oglase. Vsebino lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo vsebine lahko dodate ve\u010d podatkov. Uspe\u0161nost vsebine lahko merite. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino. Podatki se lahko uporabljajo za izgradnjo ali izbolj\u0161anje uporabni\u0161ke izku\u0161nje, sistemov in programske opreme."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Osnovni oglasi, personalizirana vsebina in merjenje oglasov","description":"Prikazujete lahko osnovne oglase. Vsebino lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo vsebine lahko dodate ve\u010d podatkov. Merite lahko uspe\u0161nost oglasov."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Osnovni oglasi, personalizirana vsebina, merjenje vsebine in razvoj izdelkov","description":"Prikazujete lahko osnovne oglase. Vsebino lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo vsebine lahko dodate ve\u010d podatkov. Merite lahko uspe\u0161nost oglasov. Podatki se lahko uporabljajo za izgradnjo ali izbolj\u0161anje uporabni\u0161ke izku\u0161nje, sistemov in programske opreme."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Personalizirani oglasi, merjenje oglasov in razvoj izdelkov","description":"Oglase lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo oglasov lahko dodate ve\u010d podatkov. Merite lahko uspe\u0161nost oglasov. Podatki se lahko uporabljajo za izgradnjo ali izbolj\u0161anje uporabni\u0161ke izku\u0161nje, sistemov in programske opreme."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Personalizirani oglasi, merjenje oglasov, vpogledi v ciljno skupino in razvoj izdelkov","description":"Oglase lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo oglasov lahko dodate ve\u010d podatkov. Merite lahko uspe\u0161nost oglasov. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino. Podatki se lahko uporabljajo za izgradnjo ali izbolj\u0161anje uporabni\u0161ke izku\u0161nje, sistemov in programske opreme."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Personalizirani oglasi, merjenje oglasov in vsebine, vpogledi v ciljno skupino in razvoj izdelkov","description":"Oglase lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo oglasov lahko dodate ve\u010d podatkov. Uspe\u0161nost oglasov in vsebine lahko merite. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino. Podatki se lahko uporabljajo za izgradnjo ali izbolj\u0161anje uporabni\u0161ke izku\u0161nje, sistemov in programske opreme."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Personalizirani oglasi, prikaz personalizirane vsebine, merjenje oglasov in vsebine, vpogledi v ciljno skupino in razvoj izdelkov","description":"Oglase in vsebino lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo oglasov lahko dodate ve\u010d podatkov. Uspe\u0161nost oglasov in vsebine lahko merite. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino. Podatki se lahko uporabljajo za izgradnjo ali izbolj\u0161anje uporabni\u0161ke izku\u0161nje, sistemov in programske opreme."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Personalizirani oglasi in vsebina, merjenje oglasov in vsebine, vpogledi v ciljno skupino in razvoj izdelkov","description":"Oglase in vsebino lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo oglasov in vsebine lahko dodate ve\u010d podatkov. Uspe\u0161nost oglasov in vsebine lahko merite. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino. Podatki se lahko uporabljajo za izgradnjo ali izbolj\u0161anje uporabni\u0161ke izku\u0161nje, sistemov in programske opreme."}}} \ No newline at end of file +{"vendorListVersion":94,"lastUpdated":"2021-06-10T16:44:05Z","purposes":{"1":{"id":1,"name":"Shranjevanje in/ali dostop do podatkov na napravi","description":"Pi\u0161kotki, identifikatorji naprav ali drugi podatki so lahko shranjeni ali dostopni na va\u0161i napravi za namene, ki so vam predstavljeni.","descriptionLegal":"Dobavitelji lahko:\n* shranjujejo in dostopajo do podatkov na napravi, kot so pi\u0161kotki in identifikatorji naprav, ki so predstavljeni uporabniku."},"2":{"id":2,"name":"Izbira osnovnih oglasov","description":"Oglasi se vam lahko prikazujejo na podlagi vsebine, ki si jo ogledujete, aplikacije, ki jo uporabljate, va\u0161e pribli\u017ene lokacije ali vrste va\u0161e naprave.","descriptionLegal":"Za izbiro osnovnih oglasov lahko dobavitelji:\n* uporabijo realno\u010dasovne podatke o kontekstu, v katerem bo prikazan oglas, za prikaz oglasa, vklju\u010dno s podatki o vsebini in napravi, kot so: vrsta in zmogljivosti naprave, uporabni\u0161ki agent, URL, IP-naslov, \n* uporabijo nenatan\u010dne geolokacijske podatke uporabnika,\n* nadzorujejo frekvenco oglasov, prikazanih uporabniku,\n* dolo\u010dijo zaporedje, v katerem so oglasi prikazani uporabniku,\n* prepre\u010dijo, da bi se oglas prikazoval v neprimernem uredni\u0161kem (za blagovno znamko neustreznem) kontekstu.\nDobavitelji ne smejo:\n* Ustvarjati profilov personaliziranih oglasov z uporabo teh podatkov za izbiro oglasov v prihodnosti brez lo\u010dene pravne podlage za ustvarjanje profilov personaliziranih oglasov.\nOPOMBA. Nenatan\u010dno pomeni, da je dovoljena le pribli\u017ena lokacija s polmerom najmanj 500 metrov.\n"},"3":{"id":3,"name":"Ustvarjanje profila personaliziranih oglasov","description":"Profil je mogo\u010de izdelati o vas in va\u0161ih interesih, da se vam prika\u017ee personalizirane oglase, ki so relevantni za vas.","descriptionLegal":"Za ustvarjanje profila personaliziranih oglasov lahko dobavitelji:\n* zbirajo podatke o uporabniku, vklju\u010dno z dejavnostjo uporabnika, interesi, obiski spletnih mest ali aplikacij, demografskimi podatki ali lokacijo za ustvarjanje ali urejanje uporabni\u0161kega profila za uporabo v personaliziranem ogla\u0161evanju.\n* Te podatke zdru\u017eite z drugimi predhodno zbranimi informacijami, vklju\u010dno s spletnimi mesti in aplikacijami, da ustvarite ali uredite uporabni\u0161ki profil za uporabo v prilagojenem ogla\u0161evanju."},"4":{"id":4,"name":"Izbira personaliziranih oglasov","description":"Personalizirani oglasi se vam lahko prikazujejo na podlagi profila o vas.","descriptionLegal":"Za izbiro personaliziranih oglasov lahko dobavitelji:\n* izberejo personalizirane oglase na osnovi uporabni\u0161kega profila ali drugih zgodovinskih podatkov uporabnika, vklju\u010dno z uporabnikovo predhodno dejavnostjo, interesi, obiski spletnih mest ali aplikacij, lokacijo ali demografskimi podatki.\n"},"5":{"id":5,"name":"Ustvarjanje profila personalizirane vsebine","description":"Profil je mogo\u010de ustvariti o vas in va\u0161ih interesih za prikaz personalizirane vsebine, ki je relevantna za vas.","descriptionLegal":"Za ustvarjanje profila personalizirane vsebine lahko dobavitelji:\n* zbirajo podatke o uporabniku, vklju\u010dno z dejavnostjo uporabnika, interesi, obiski spletnih mest ali aplikacij, demografskimi podatki ali lokacijo, za ustvarjanje ali urejanje uporabni\u0161kega profila za personalizirano vsebino.\n* Te podatke zdru\u017eite z drugimi predhodno zbranimi informacijami, vklju\u010dno s spletnimi mesti in aplikacijami, da ustvarite ali uredite uporabni\u0161ki profil za uporabo pri prilagajanju vsebine.\n"},"6":{"id":6,"name":"Izbira personalizirane vsebine","description":"Personalizirana vsebina se vam lahko prikazuje na podlagi profila o vas.","descriptionLegal":"Za izbiro personalizirane vsebine lahko dobavitelji:\n* izberejo personalizirano vsebino na osnovi uporabni\u0161kega profila ali drugih zgodovinskih podatkov uporabnika, vklju\u010dno z uporabnikovo predhodno dejavnostjo, interesi, obiski spletnih mest ali aplikacij, lokacijo ali demografskimi podatki.\n"},"7":{"id":7,"name":"Merjenje uspe\u0161nosti oglasov","description":"Meri se lahko u\u010dinkovitost in uspe\u0161nost oglasov, ki so vidni in na katere se je mogo\u010de odzvati.","descriptionLegal":"Za merjenje uspe\u0161nosti oglasov lahko dobavitelji:\n* merijo, ali so bili oglasi prikazani uporabniku in kak\u0161en je bil uporabnikov odziv nanje,\n* zagotovijo poro\u010danje o oglasih, vklju\u010dno z njihovo u\u010dinkovitostjo in uspe\u0161nostjo,\n* zagotovijo poro\u010danje o uporabnikih, ki so se odzvali na oglase, z uporabo podatkov, ugotovljenih med uporabnikovim odzivom na dani oglas,\n* zagotovijo poro\u010danje izdajateljem o oglasih, prikazanih na njihovi lastnini,\n* merijo, ali je oglas prikazan v primernem (za blagovno znamko ustreznem) kontekstu uredni\u0161kega okolja,\n* dolo\u010dijo odstotek oglasa, ki ga je bilo mogo\u010de videti, ter \u010dasovno obdobje, v katerem ga je bilo mogo\u010de videti. \nDobavitelji ne smejo:\n* podatkov o vpogledu v ciljno skupino, pridobljenih na okroglih mizah ali na podoben na\u010din, uporabljati za podatke za merjenje oglasov brez pravne podlage za uporabo tr\u017enih raziskav za ustvarjanje vpogledov v ciljno skupino."},"8":{"id":8,"name":"Merjenje uspe\u0161nosti vsebine","description":"Meri se lahko u\u010dinkovitost in uspe\u0161nost vsebine, ki je vidna in na katero se je mogo\u010de odzvati.","descriptionLegal":"Za merjenje uspe\u0161nosti vsebine lahko dobavitelji:\n* merijo in poro\u010dajo o tem, kako je bila vsebina predstavljena in kako so se uporabniki odzvali nanjo,\n* zagotovijo poro\u010danje o uporabnikih, ki so se odzvali na vsebino, z uporabo neposredno merljivih ali znanih informacij.\nDobavitelji ne smejo:\n* meriti, ali so bili oglasi (vklju\u010dno z izvornimi oglasi) prikazani uporabniku in kak\u0161en je bil uporabnikov odziv nanje,\n* podatkov o vpogledu v ciljno skupino, pridobljenih na okroglih mizah ali na podoben na\u010din, uporabljati za podatke za merjenje oglasov brez pravne podlage za uporabo tr\u017enih raziskav za ustvarjanje vpogledov v ciljno skupino."},"9":{"id":9,"name":"Ustvarjanje vpogledov v ciljno skupino s pomo\u010djo tr\u017enih raziskav","description":"Tr\u017ene raziskave se lahko uporabljajo za spoznavanje ciljne skupine, ki obiskuje spletna mesta/aplikacije in si ogleduje oglase.","descriptionLegal":"Za ustvarjanje vpogledov v ciljno skupino s pomo\u010djo tr\u017enih raziskav lahko dobavitelji:\n* ogla\u0161evalcem ali njihovim predstavnikom preko vpogledov, ki jih pridobijo z okroglimi mizami in na podobne na\u010dine, zagotavljajo zbirna poro\u010dila o ciljni skupini, ki jih dose\u017eejo njihovi oglasi,\n* z vpogledi, ki jih pridobijo z okroglimi mizami in na podobne na\u010dine, ustvarjajo zbirna poro\u010dila o ciljni skupini, ki so mu bili prikazani vsebina in/ali oglasi na njihovi lastnini oz. se je nanje odzvalo. \n* pove\u017eejo nespletne podatke s spletnim uporabnikom za namene tr\u017enih raziskav za zagotavljanje vpogledov v ciljno skupino, \u010de dobavitelji izjavijo, da bodo usklajevali in kombinirali nespletne vire podatkov (Funkcija 1).\nDobavitelji ne smejo: \n* meriti uspe\u0161nosti in u\u010dinkovitosti oglasov, ki so bili prikazani dolo\u010denemu uporabniku oz. na katere se je odzval, brez lo\u010dene pravne podlage za merjenje uspe\u0161nosti oglasov.\n* meriti, katera vsebina je bila prikazana dolo\u010denemu uporabniku in kako se je odzval nanjo, brez lo\u010dene pravne podlage za merjenje uspe\u0161nosti vsebine."},"10":{"id":10,"name":"Razvoj in izbolj\u0161ave izdelkov","description":"Va\u0161i podatki se lahko uporabljajo za izbolj\u0161anje obstoje\u010dih sistemov in programske opreme ter za razvoj novih izdelkov.","descriptionLegal":"Za razvoj novih izdelkov in izbolj\u0161ave izdelkov lahko dobavitelji:\n* uporabljajo informacije za izbolj\u0161anje obstoje\u010dih izdelkov z novimi funkcijami in za razvoj novih izdelkov,\n* ustvarjajo nove modele in algoritme s strojnim u\u010denjem.\nDobavitelji ne smejo:\n* v okviru tega namena izvajati nobenih drugih postopkov obdelave podatkov, ki so dovoljeni v okviru drugega namena."}},"specialPurposes":{"1":{"id":1,"name":"Zagotavljanje varnosti, prepre\u010devanje prevar in odpravljanje te\u017eav","description":"Va\u0161i podatki se lahko uporabljajo za spremljanje in prepre\u010devanje goljufivih dejavnosti in za zagotavljanje pravilnega in varnega delovanja sistemov in postopkov.","descriptionLegal":"Za zagotavljanje varnosti, prepre\u010devanje prevar in odpravljanje te\u017eav lahko dobavitelji:\n* zagotovijo, da so podatki varno preneseni, \n* zaznavajo in prepre\u010dujejo zlonamerne, goljufive, neveljavne ali nezakonite dejavnosti,\n* zagotavljajo pravilno in u\u010dinkovito delovanje sistemov in postopkov, vklju\u010dno z nadzorom in izbolj\u0161avo delovanja sistemov in postopkov, vklju\u010denih v dovoljene namene.\nDobavitelji ne smejo:\n* v okviru tega namena izvajati nobenih drugih postopkov obdelave podatkov, ki so dovoljeni v okviru drugega namena.\nOpomba: Podatki, zbrani in uporabljeni za zagotavljanje varnosti, prepre\u010devanje prevar in odpravljanje te\u017eav lahko vklju\u010dujejo samodejno poslane lastnosti naprave za identifikacijo, natan\u010dne geolokacijske podatke in podatke, pridobljene z aktivnim skeniranjem lastnosti naprave za identifikacijo brez lo\u010denega razkritja in/ali vklju\u010ditve."},"2":{"id":2,"name":"Tehni\u010dno prikazovanje oglasov ali vsebine","description":"Va\u0161a naprava lahko prejema in po\u0161ilja podatke, ki vam omogo\u010dajo, da vidite oglase in vsebino ter da se odzivate nanje.","descriptionLegal":"Za zagotavljanje informacij in odgovorov na tehni\u010dne zahteve lahko dobavitelji:\n* uporabijo IP-naslov uporabnika za prikaz oglasa prek interneta,\n* na uporabnikov odziv na oglas odgovorijo tako, da uporabnika po\u0161ljejo na pristajalno stran,\n* uporabijo IP-naslov uporabnika za prikaz vsebine prek interneta,\n* na uporabnikov odziv na vsebino odgovorijo tako, da uporabnika po\u0161ljejo na pristajalno stran,\n* uporabijo informacije o vrsti naprave in zmogljivostih za prikaz oglasov ali vsebine, na primer, za prikaz kreativne ali video datoteke z oglasom pravilne velikosti v obliki, ki jo podpira naprava.\nDobavitelji ne smejo:\n* v okviru tega namena izvajati nobenih drugih postopkov obdelave podatkov, ki so dovoljeni v okviru drugega namena.\n"}},"features":{"1":{"id":1,"name":"Usklajevanje in zdru\u017eevanje virov podatkov, ki niso pridobljeni na spletu","description":"Podatki iz nespletnih virov se lahko zdru\u017eijo z va\u0161o spletno dejavnostjo za podporo enemu ali ve\u010d namenom.","descriptionLegal":"Dobavitelji lahko: \n* podatke, ki niso pridobljeni na spletu, zdru\u017eijo s tistimi, zbranimi prek spleta, za podporo enemu ali ve\u010d namenom ali posebnim namenom.\n"},"2":{"id":2,"name":"Povezovanje razli\u010dnih naprav","description":"Razli\u010dne naprave se lahko dolo\u010dijo kot va\u0161e ali last va\u0161ega gospodinjstva za podporo enemu ali ve\u010d namenom.","descriptionLegal":"Dobavitelji lahko:\n* deterministi\u010dno dolo\u010dijo, da dve napravi ali ve\u010d naprav pripada istemu uporabniku ali gospodinjstvu,\n* verjetnostno dolo\u010dijo, da dve napravi ali ve\u010d naprav pripada istemu uporabniku ali gospodinjstvu,\n* aktivno skenirajo zna\u010dilnosti naprave za identifikacijo za verjetnostno identifikacijo, \u010de so uporabniki dovolili dobaviteljem, da aktivno skenirajo lastnosti naprave za identifikacijo (posebna funkcija 2).\n"},"3":{"id":3,"name":"Prejemanje in uporaba samodejno poslanih lastnosti naprave za identifikacijo","description":"Va\u0161o napravo je mogo\u010de od drugih naprav lo\u010diti na podlagi podatkov, ki jih samodejno po\u0161ilja, npr. IP-naslov ali vrsta brskalnika.","descriptionLegal":"Dobavitelji lahko:\n* Ustvarijo identifikator s podatki, samodejno zbranimi z naprave za dolo\u010dene zna\u010dilnosti, npr. IP-naslov, niz uporabni\u0161kih agentov.\n* Ta identifikator lahko uporabijo za poskus ponovne identifikacije naprave.\nDobavitelji ne smejo:\n* Ustvarjati identifikatorjev s podatki, ki so bili zbrani prek aktivnega skeniranja naprave za specifi\u010dne zna\u010dilnosti, npr. name\u0161\u010dene pisave ali lo\u010dljivost zaslona, brez lo\u010dene vklju\u010ditve naprave uporabnikov v aktivno skeniranje z namenom identifikacije.\n* Tovrsten identifikator uporabijo za ponovno identifikacijo naprave.\n"}},"specialFeatures":{"1":{"id":1,"name":"Uporaba natan\u010dnih geolokacijskih podatkov","description":"Va\u0161i natan\u010dni geolokacijski podatki se lahko uporabljajo za podporo enemu ali ve\u010d namenom. To pomeni, da je va\u0161a lokacija lahko natan\u010dna na nekaj metrov.","descriptionLegal":"Dobavitelji lahko:\n* zbirajo in obdelujejo natan\u010dne geolokacijske podatke za podporo enemu ali ve\u010d namenom.\nOPOMBA. Natan\u010dna geolokacija pomeni, da ni nobenih omejitev glede natan\u010dnosti uporabnikove lokacije, ki je lahko natan\u010dna na nekaj metrov.\n"},"2":{"id":2,"name":"Aktivno skeniranje zna\u010dilnosti naprave za identifikacijo","description":"Va\u0161a naprava je lahko identificirana na podlagi skeniranja edinstvene kombinacije zna\u010dilnosti va\u0161e naprave.","descriptionLegal":"Dobavitelji lahko:\n* ustvarijo identifikator s podatki, ki so bili zbrani prek aktivnega skeniranja naprave za specifi\u010dne zna\u010dilnosti, npr. name\u0161\u010dene pisave ali lo\u010dljivost zaslona, \n* Tovrsten identifikator uporabijo za ponovno identifikacijo naprave."}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Natan\u010dni geolokacijski podatki in identifikacija prek skeniranja naprave","description":"Uporabite lahko natan\u010dno geolokacijo in informacije o lastnostih naprave."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Osnovni oglasi in merjenje oglasov","description":"Prikazujete lahko osnovne oglase. Merite lahko uspe\u0161nost oglasov."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Personalizirani oglasi","description":"Oglase lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo oglasov lahko dodate ve\u010d podatkov."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Osnovni oglasi in merjenje oglasov","description":"Prikazujete lahko osnovne oglase. Merite lahko uspe\u0161nost oglasov. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Osnovni oglasi, profil personaliziranih oglasov in merjenje oglasov","description":"Prikazujete lahko osnovne oglase. Za bolj\u0161o personalizacijo oglasov lahko dodate ve\u010d podatkov. Merite lahko uspe\u0161nost oglasov."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Prikaz personaliziranih oglasov in merjenje","description":"Oglase lahko personalizirate na podlagi profila. Merite lahko uspe\u0161nost oglasov."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Prikaz personaliziranih oglasov, merjenje oglasov in vpogledi v ciljno skupino","description":"Oglase lahko personalizirate na podlagi profila. Merite lahko uspe\u0161nost oglasov. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Personalizirani oglasi in merjenje oglasov","description":"Oglase lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo oglasov lahko dodate ve\u010d podatkov. Merite lahko uspe\u0161nost oglasov."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Personalizirani oglasi, merjenje oglasov in vpogledi v ciljno skupino","description":"Oglase lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo oglasov lahko dodate ve\u010d podatkov. Merite lahko uspe\u0161nost oglasov. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Profil personaliziranih oglasov in prikaz","description":"Oglase lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo oglasov lahko dodate ve\u010d podatkov."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Personalizirana vsebina","description":"Vsebino lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo vsebine lahko dodate ve\u010d podatkov."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Prikaz personalizirane vsebine in merjenje vsebine","description":"Vsebino lahko personalizirate na podlagi profila. Uspe\u0161nost vsebine lahko merite."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Prikaz personalizirane vsebine, merjenje vsebine in vpogledi v ciljno skupino","description":"Vsebino lahko personalizirate na podlagi profila. Uspe\u0161nost vsebine lahko merite. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Personalizirana vsebina in merjenje vsebine","description":"Vsebino lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo vsebine lahko dodate ve\u010d podatkov. Uspe\u0161nost vsebine lahko merite."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Personalizirana vsebina, merjenje vsebine in vpogled v ciljno skupino","description":"Vsebino lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo vsebine lahko dodate ve\u010d podatkov. Uspe\u0161nost vsebine lahko merite. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Personalizirana vsebina, merjenje vsebine, vpogled v ciljno skupino in razvoj izdelkov","description":"Vsebino lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo vsebine lahko dodate ve\u010d podatkov. Uspe\u0161nost vsebine lahko merite. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino. Podatki se lahko uporabljajo za izgradnjo ali izbolj\u0161anje uporabni\u0161ke izku\u0161nje, sistemov in programske opreme"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Merjenje oglasov in vsebine ter vpogledi v ciljno skupino","description":"Uspe\u0161nost oglasov in vsebine lahko merite. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Merjenje oglasov in vsebine","description":"Uspe\u0161nost oglasov in vsebine lahko merite."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Merjenje oglasov in vpogledi v ciljno skupino","description":"Oglase lahko merite. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Merjenje oglasov in vsebine, vpogledi v ciljno skupino in razvoj izdelkov","description":"Uspe\u0161nost oglasov in vsebine lahko merite. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino. Podatki se lahko uporabljajo za izgradnjo ali izbolj\u0161anje uporabni\u0161ke izku\u0161nje, sistemov in programske opreme. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Merjenje vsebine, vpogledi v ciljno skupino in razvoj izdelkov","description":"Uspe\u0161nost vsebine lahko merite. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino. Podatki se lahko uporabljajo za izgradnjo ali izbolj\u0161anje uporabni\u0161ke izku\u0161nje, sistemov in programske opreme."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Merjenje vsebine in razvoj izdelkov","description":"Uspe\u0161nost vsebine lahko merite. Podatki se lahko uporabljajo za izgradnjo ali izbolj\u0161anje uporabni\u0161ke izku\u0161nje, sistemov in programske opreme."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Prikaz personaliziranih oglasov in vsebine ter merjenje oglasov in vsebine","description":"Oglase in vsebino lahko personalizirate na podlagi profila. Uspe\u0161nost oglasov in vsebine lahko merite."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Prikaz personaliziranih oglasov in vsebine, merjenje oglasov in vsebine ter vpogledi v ciljno skupino","description":"Oglase in vsebino lahko personalizirate na podlagi profila. Uspe\u0161nost oglasov in vsebine lahko merite. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino. Podatki se lahko uporabljajo za izgradnjo ali izbolj\u0161anje uporabni\u0161ke izku\u0161nje, sistemov in programske opreme."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Personalizirani oglasi in vsebine ter merjenje oglasov in vsebine","description":"Oglase in vsebino lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo oglasov in vsebine lahko dodate ve\u010d podatkov. Uspe\u0161nost oglasov in vsebine lahko merite."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Personalizirani oglasi in vsebine, merjenje oglasov in vsebine ter vpogledi v ciljno skupino","description":"Oglase in vsebino lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo oglasov in vsebine lahko dodate ve\u010d podatkov. Uspe\u0161nost oglasov in vsebine lahko merite. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Personalizirani oglasi in profil vsebine","description":"Za personalizacijo oglasov in vsebine lahko dodate ve\u010d podatkov."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Personalizirani oglasi in prikaz vsebine","description":"Oglase in vsebino lahko personalizirate na podlagi profila."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Osnovni oglasi, merjenje oglasov in vsebine ter vpogledi v ciljno skupino","description":"Prikazujete lahko osnovne oglase. Uspe\u0161nost oglasov in vsebine lahko merite. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Prikaz personaliziranih oglasov, personalizirana vsebina, merjenje oglasov in vsebine ter vpogledi v ciljno skupino","description":"Oglase in vsebino lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo vsebine lahko dodate ve\u010d podatkov. Uspe\u0161nost oglasov in vsebine lahko merite. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Prikaz personaliziranih oglasov, personalizirana vsebina, merjenje oglasov in vsebine, vpogledi v ciljno skupino in razvoj izdelkov","description":"Oglase in vsebino lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo vsebine lahko dodate ve\u010d podatkov. Uspe\u0161nost oglasov in vsebine lahko merite. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino. Podatki se lahko uporabljajo za izgradnjo ali izbolj\u0161anje uporabni\u0161ke izku\u0161nje, sistemov in programske opreme."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Osnovni oglasi, personalizirana vsebina, merjenje oglasov in vsebine ter vpogledi v ciljno skupino","description":"Prikazujete lahko osnovne oglase. Vsebino lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo vsebine lahko dodate ve\u010d podatkov. Uspe\u0161nost oglasov in vsebine lahko merite. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Osnovni oglasi, personalizirana vsebina, merjenje oglasov in vsebine, vpogledi v ciljno skupino in razvoj izdelkov","description":"Prikazujete lahko osnovne oglase. Vsebino lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo vsebine lahko dodate ve\u010d podatkov. Uspe\u0161nost oglasov in vsebine lahko merite. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino. Podatki se lahko uporabljajo za izgradnjo ali izbolj\u0161anje uporabni\u0161ke izku\u0161nje, sistemov in programske opreme."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Osnovni oglasi, personalizirana vsebina, merjenje vsebine in vpogledi v ciljno skupino","description":"Prikazujete lahko osnovne oglase. Vsebino lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo vsebine lahko dodate ve\u010d podatkov. Uspe\u0161nost oglasov in vsebine lahko merite. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Osnovni oglasi, personalizirana vsebina, merjenje vsebine, vpogledi v ciljno skupino in razvoj izdelkov","description":"Prikazujete lahko osnovne oglase. Vsebino lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo vsebine lahko dodate ve\u010d podatkov. Uspe\u0161nost vsebine lahko merite. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino. Podatki se lahko uporabljajo za izgradnjo ali izbolj\u0161anje uporabni\u0161ke izku\u0161nje, sistemov in programske opreme."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Osnovni oglasi, personalizirana vsebina in merjenje oglasov","description":"Prikazujete lahko osnovne oglase. Vsebino lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo vsebine lahko dodate ve\u010d podatkov. Merite lahko uspe\u0161nost oglasov."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Osnovni oglasi, personalizirana vsebina, merjenje vsebine in razvoj izdelkov","description":"Prikazujete lahko osnovne oglase. Vsebino lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo vsebine lahko dodate ve\u010d podatkov. Merite lahko uspe\u0161nost oglasov. Podatki se lahko uporabljajo za izgradnjo ali izbolj\u0161anje uporabni\u0161ke izku\u0161nje, sistemov in programske opreme."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Personalizirani oglasi, merjenje oglasov in razvoj izdelkov","description":"Oglase lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo oglasov lahko dodate ve\u010d podatkov. Merite lahko uspe\u0161nost oglasov. Podatki se lahko uporabljajo za izgradnjo ali izbolj\u0161anje uporabni\u0161ke izku\u0161nje, sistemov in programske opreme."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Personalizirani oglasi, merjenje oglasov, vpogledi v ciljno skupino in razvoj izdelkov","description":"Oglase lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo oglasov lahko dodate ve\u010d podatkov. Merite lahko uspe\u0161nost oglasov. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino. Podatki se lahko uporabljajo za izgradnjo ali izbolj\u0161anje uporabni\u0161ke izku\u0161nje, sistemov in programske opreme."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Personalizirani oglasi, merjenje oglasov in vsebine, vpogledi v ciljno skupino in razvoj izdelkov","description":"Oglase lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo oglasov lahko dodate ve\u010d podatkov. Uspe\u0161nost oglasov in vsebine lahko merite. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino. Podatki se lahko uporabljajo za izgradnjo ali izbolj\u0161anje uporabni\u0161ke izku\u0161nje, sistemov in programske opreme."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Personalizirani oglasi, prikaz personalizirane vsebine, merjenje oglasov in vsebine, vpogledi v ciljno skupino in razvoj izdelkov","description":"Oglase in vsebino lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo oglasov lahko dodate ve\u010d podatkov. Uspe\u0161nost oglasov in vsebine lahko merite. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino. Podatki se lahko uporabljajo za izgradnjo ali izbolj\u0161anje uporabni\u0161ke izku\u0161nje, sistemov in programske opreme."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Personalizirani oglasi in vsebina, merjenje oglasov in vsebine, vpogledi v ciljno skupino in razvoj izdelkov","description":"Oglase in vsebino lahko personalizirate na podlagi profila. Za bolj\u0161o personalizacijo oglasov in vsebine lahko dodate ve\u010d podatkov. Uspe\u0161nost oglasov in vsebine lahko merite. Pridobivate lahko vpoglede v ciljne skupine, ki so videle oglase in vsebino. Podatki se lahko uporabljajo za izgradnjo ali izbolj\u0161anje uporabni\u0161ke izku\u0161nje, sistemov in programske opreme."}}} \ No newline at end of file diff --git a/src/s1/config/2.0/purposes/purposes-sv.json b/src/s1/config/2.0/purposes/purposes-sv.json index d11b1615..b6299b12 100644 --- a/src/s1/config/2.0/purposes/purposes-sv.json +++ b/src/s1/config/2.0/purposes/purposes-sv.json @@ -1 +1 @@ -{"vendorListVersion":79,"lastUpdated":"2021-02-25T16:36:26Z","purposes":{"1":{"id":1,"name":"Lagra och/eller f\u00e5 \u00e5tkomst till information p\u00e5 en enhet","description":"Cookies, enhetsidentifierare eller annan information kan lagras eller kommas \u00e5t p\u00e5 din enhet f\u00f6r de syften som presenteras f\u00f6r dig.","descriptionLegal":"Leverant\u00f6rer kan:\n* Lagra och f\u00e5 \u00e5tkomst till information p\u00e5 enheten, s\u00e5som cookies och enhetsidentifierare som presenteras f\u00f6r en anv\u00e4ndare."},"2":{"id":2,"name":"V\u00e4lja grundl\u00e4ggande annonser","description":"Annonser kan visas f\u00f6r dig baserat p\u00e5 det inneh\u00e5ll du bes\u00f6ker, den app du anv\u00e4nder, din ungef\u00e4rliga plats eller din enhetstyp.","descriptionLegal":"F\u00f6r att g\u00f6ra grundl\u00e4ggande annonsval kan leverant\u00f6rer:\n* Anv\u00e4nda information i realtid om sammanhanget d\u00e4r annonsen kommer att visas f\u00f6r att visa annonsen, inklusive information om inneh\u00e5llet och enheten, s\u00e5som: enhetstyp och kapacitet, anv\u00e4ndaragent, URL, IP-adress \n* Utnyttja en anv\u00e4ndares approximativa (icke-exakta) uppgifter om geografisk positionering\n* Kontrollera frekvensen av annonser som visas f\u00f6r en anv\u00e4ndare.\n* Definiera i vilken ordning annonser visas f\u00f6r en anv\u00e4ndare.\n* Hindra en annons fr\u00e5n att fungera i ett ol\u00e4mpligt redaktionellt sammanhang (ol\u00e4mplig varum\u00e4rkesp\u00e5verkan)\nLeverant\u00f6rer kan inte:\n* Skapa en personanpassad annonsprofil f\u00f6r val av framtida annonser utifr\u00e5n denna information.\nObs! Approximativ betyder endast en ungef\u00e4rlig plats som inneb\u00e4r att \u00e5tminstone en radie p\u00e5 500 meter \u00e4r till\u00e5ten.\n"},"3":{"id":3,"name":"Skapa en personanpassad annonsprofil","description":"En profil kan byggas om dig och dina intressen f\u00f6r att visa dig personanpassade annonser som \u00e4r relevanta f\u00f6r dig.","descriptionLegal":"F\u00f6r att skapa en personanpassad annonsprofil kan leverant\u00f6rer:\n* Samla data om en anv\u00e4ndare, inklusive anv\u00e4ndarens aktivitet, intressen, bes\u00f6k p\u00e5 webbplatser eller appar, demografisk data eller plats f\u00f6r att skapa eller redigera en anv\u00e4ndarprofil f\u00f6r anv\u00e4ndning vid personanpassad annonsering.\n* Kombinera denna data med annan data som tidigare samlats in, inklusive fr\u00e5n olika webbplatser och appar f\u00f6r att skapa eller redigera en anv\u00e4ndarprofil f\u00f6r anv\u00e4ndning vid personanpassad annonsering.\n"},"4":{"id":4,"name":"V\u00e4lja personanpassade annonser","description":"Personanpassade annonser kan visas f\u00f6r dig baserat p\u00e5 en profil om dig.","descriptionLegal":"F\u00f6r att v\u00e4lja personanpassade annonser kan leverant\u00f6rer:\n* V\u00e4lja personanpassade annonser baserat p\u00e5 en anv\u00e4ndarprofil eller andra historiska anv\u00e4ndaruppgifter, inklusive en anv\u00e4ndares tidigare aktivitet, intressen, bes\u00f6k p\u00e5 webbplatser eller appar, plats eller demografisk information.\n* Kombinera denna information med annan information som tidigare samlats in, inklusive fr\u00e5n olika webbplatser och appar, f\u00f6r att skapa eller redigera en anv\u00e4ndarprofil f\u00f6r anv\u00e4ndning i personlig reklam."},"5":{"id":5,"name":"Skapa en personanpassad inneh\u00e5llsprofil","description":"En profil kan byggas om dig och dina intressen f\u00f6r att visa dig personanpassat inneh\u00e5ll som \u00e4r relevant f\u00f6r dig.","descriptionLegal":"F\u00f6r att skapa en personanpassad inneh\u00e5llsprofil kan leverant\u00f6rer:\n* Samla in information om en anv\u00e4ndare, inklusive anv\u00e4ndarens aktivitet, intressen, bes\u00f6k p\u00e5 webbplatser eller appar samt demografisk information eller plats f\u00f6r att skapa eller redigera en anv\u00e4ndarprofil f\u00f6r personanpassat inneh\u00e5ll.\n* Kombinera denna data med annan data som tidigare samlats in, samt fr\u00e5n olika webbplatser och appar f\u00f6r att skapa eller redigera en anv\u00e4ndarprofil f\u00f6r anv\u00e4ndning vid anpassning av inneh\u00e5ll.\n"},"6":{"id":6,"name":"V\u00e4lja personanpassat inneh\u00e5ll","description":"Personanpassat inneh\u00e5ll kan visas f\u00f6r dig baserat p\u00e5 en profil om dig.","descriptionLegal":"F\u00f6r att v\u00e4lja personanpassat inneh\u00e5ll kan leverant\u00f6rer:\n* V\u00e4lja personanpassat inneh\u00e5ll baserat p\u00e5 en anv\u00e4ndarprofil eller andra historiska anv\u00e4ndaruppgifter, inklusive en anv\u00e4ndares tidigare aktivitet, intressen, bes\u00f6k p\u00e5 webbplatser eller appar, plats eller demografisk information.\n"},"7":{"id":7,"name":"M\u00e4ta annonsprestanda","description":"Prestanda och effektivitet f\u00f6r annonser som du ser eller interagerar med kan m\u00e4tas.","descriptionLegal":"F\u00f6r att m\u00e4ta annonsprestanda kan leverant\u00f6rer:\n* M\u00e4ta om och hur annonser har levererats till anv\u00e4ndare och hur de interagerade med dem\n* Tillhandah\u00e5lla rapportering om annonser, inklusive deras effektivitet och prestanda\n* Tillhandah\u00e5lla rapportering om anv\u00e4ndare som interagerade med annonser med anv\u00e4ndning av uppgifter som observerades under tiden f\u00f6r anv\u00e4ndarens interaktion med den annonsen\n* Tillhandah\u00e5lla rapportering till utgivare om de annonser som visas p\u00e5 deras webbplatser\n* M\u00e4ta om en annons fungerar i ett l\u00e4mpligt redaktionellt sammanhang (l\u00e4mplig varum\u00e4rkesp\u00e5verkan)\n* Best\u00e4mma vilken procentandel av annonsen som hade m\u00f6jlighet att uppt\u00e4ckas och varaktigheten p\u00e5 den m\u00f6jligheten \nLeverant\u00f6rer kan inte:\n* L\u00e4gga till ytterligare uppgifter avseende m\u00e5lgruppsinsikter som har h\u00e4mtats fr\u00e5n panelunders\u00f6kningar eller via liknande metoder utan r\u00e4ttslig grund f\u00f6r att till\u00e4mpa marknadsunders\u00f6kningar med syfte att generera m\u00e5lgruppsinsikter (syfte 9)\n"},"8":{"id":8,"name":"M\u00e4ta inneh\u00e5llsprestanda","description":"Prestanda och effektivitet f\u00f6r inneh\u00e5ll som du ser eller interagerar med kan m\u00e4tas.","descriptionLegal":"F\u00f6r att m\u00e4ta inneh\u00e5llsprestanda kan leverant\u00f6rer:\n* M\u00e4ta och rapportera hur inneh\u00e5llet levererades till anv\u00e4ndare och hur de interagerade med det.\n* Tillhandah\u00e5lla rapportering med direkt m\u00e4tbar eller k\u00e4nd information om anv\u00e4ndare som interagerade med inneh\u00e5llet\nLeverant\u00f6rer kan inte:\n* M\u00e4ta om och hur annonser (inklusive ursprungsannonser) levererades till anv\u00e4ndare och hur de interagerade med dem.\n* L\u00e4gga till ytterligare uppgifter avseende m\u00e5lgruppsinsikter som har h\u00e4mtats fr\u00e5n panelunders\u00f6kningar eller via liknande metoder utan r\u00e4ttslig grund f\u00f6r att till\u00e4mpa marknadsunders\u00f6kningar med syfte att generera m\u00e5lgruppsinsikter (syfte 9)\n"},"9":{"id":9,"name":"Till\u00e4mpa marknadsunders\u00f6kningar f\u00f6r att generera m\u00e5lgruppsinsikter","description":"Marknadsunders\u00f6kningar kan anv\u00e4ndas f\u00f6r att l\u00e4ra sig mer om de m\u00e5lgrupper som bes\u00f6ker webbplatser/appar och ser annonser.","descriptionLegal":"* F\u00f6r att till\u00e4mpa marknadsunders\u00f6kningar f\u00f6r att generera m\u00e5lgruppsinsikter kan leverant\u00f6rer:\n* Tillhandah\u00e5lla samlad rapportering till annons\u00f6rer eller deras representanter om de m\u00e5lgrupper som har n\u00e5tts av deras annonser med hj\u00e4lp av insikter fr\u00e5n panelbaserade unders\u00f6kningar och liknande metoder.\n* Tillhandah\u00e5lla samlad rapportering till utgivare om de m\u00e5lgrupper som erh\u00f6ll eller interagerade med inneh\u00e5ll och/eller annonser p\u00e5 deras webbplats genom att till\u00e4mpa insikter fr\u00e5n panelbaserade unders\u00f6kningar och liknande metoder. \n* L\u00e4nka uppgifter offline till en onlineanv\u00e4ndare f\u00f6r marknadsunders\u00f6kningar med avsikt att generera m\u00e5lgruppsinsikter om leverant\u00f6rer har uppgett att de vill anpassa och kombinera uppgiftsk\u00e4llor offline (funktion 1)\nLeverant\u00f6rer kan inte:\n* M\u00e4ta prestanda och effektivitet f\u00f6r annonser som den specifika anv\u00e4ndaren serverades eller interagerades med, utan en separat r\u00e4ttslig grund f\u00f6r att m\u00e4ta annonsprestanda.\n* M\u00e4ta vilket inneh\u00e5ll en specifik anv\u00e4ndare visades och hur de interagerade med det, utan en separat r\u00e4ttslig grund f\u00f6r att m\u00e4ta inneh\u00e5llsprestanda.\n"},"10":{"id":10,"name":"Utveckla och f\u00f6rb\u00e4ttra produkter","description":"Dina uppgifter kan anv\u00e4ndas f\u00f6r att f\u00f6rb\u00e4ttra befintliga system och programvara och f\u00f6r att utveckla nya produkter.","descriptionLegal":"F\u00f6r att utveckla nya produkter och f\u00f6rb\u00e4ttra produkter kan leverant\u00f6rer:\n* Anv\u00e4nda information f\u00f6r att f\u00f6rb\u00e4ttra sina befintliga produkter med nya funktioner och f\u00f6r att utveckla nya produkter\n* Skapa nya modeller och algoritmer med hj\u00e4lp av maskininl\u00e4rning\nLeverant\u00f6rer kan inte:\n* F\u00f6r detta syfte utf\u00f6ra n\u00e5gon annan uppgiftsbehandling som \u00e4r till\u00e5ten enligt n\u00e5got annat syfte\n"}},"specialPurposes":{"1":{"id":1,"name":"S\u00e4kerst\u00e4lla s\u00e4kerhet, f\u00f6rhindra bedr\u00e4gerier samt fels\u00f6kning/korrigering","description":"Dina uppgifter kan anv\u00e4ndas f\u00f6r att \u00f6vervaka och f\u00f6rhindra bedr\u00e4gliga aktiviteter och s\u00e4kerst\u00e4lla att system och processer fungerar korrekt och s\u00e4kert.","descriptionLegal":"F\u00f6r att s\u00e4kerst\u00e4lla s\u00e4kerhet, f\u00f6rhindra bedr\u00e4gerier samt utf\u00f6ra fels\u00f6kning/korrigering kan leverant\u00f6rer:\n* S\u00e4kerst\u00e4lla att uppgifter \u00f6verf\u00f6rs s\u00e4kert \n* Uppt\u00e4cka och f\u00f6rhindra skadlig, bedr\u00e4glig, ogiltig eller olaglig aktivitet.\n* S\u00e4kerst\u00e4lla korrekt och effektiv drift av system och processer, inklusive f\u00f6r att \u00f6vervaka och f\u00f6rb\u00e4ttra prestanda f\u00f6r system och processer som anv\u00e4nds f\u00f6r till\u00e5tna syften\nLeverant\u00f6rer kan inte:\n* F\u00f6r detta syfte utf\u00f6ra n\u00e5gon annan uppgiftsbehandling som \u00e4r till\u00e5ten enligt n\u00e5got annat syfte.\nNotera: Data som samlas in och anv\u00e4nds f\u00f6r att s\u00e4kerst\u00e4lla s\u00e4kerhet, f\u00f6rebygga bedr\u00e4geri och fels\u00f6kning kan inkludera automatiskt \u00f6verf\u00f6rd identifiering fr\u00e5n enheter om dess egenskaper f\u00f6r exakt geografisk positioneringsdata och data erh\u00e5llna genom aktiv skanning av enheters egenskaper f\u00f6r identifiering utan separat avsl\u00f6jande och/eller opt-in.\n"},"2":{"id":2,"name":"Tekniskt levererad annons eller inneh\u00e5ll","description":"Din enhet kan ta emot och skicka information som g\u00f6r att du kan se och interagera med annonser och inneh\u00e5ll.","descriptionLegal":"F\u00f6r att leverera information och svara p\u00e5 en teknisk beg\u00e4ran kan leverant\u00f6rer:\n* Utnyttja en anv\u00e4ndares IP-adress f\u00f6r att leverera en annons via Internet\n* Svara p\u00e5 en anv\u00e4ndares interaktion med en annons genom att skicka anv\u00e4ndaren till en landningssida\n* Utnyttja en anv\u00e4ndares IP-adress f\u00f6r att leverera inneh\u00e5ll via Internet\n* Svara p\u00e5 anv\u00e4ndarens interaktion med specifikt inneh\u00e5ll genom att skicka anv\u00e4ndaren till en landningssida\n* Anv\u00e4nda information om enhetstyp och kapacitet f\u00f6r att leverera annonser eller inneh\u00e5ll, till exempel f\u00f6r att leverera annonsmaterial eller videor i r\u00e4tt storlek och i ett format som st\u00f6ds av den aktuella enheten\nLeverant\u00f6rer kan inte:\n* F\u00f6r detta syfte utf\u00f6ra n\u00e5gon annan uppgiftsbehandling som \u00e4r till\u00e5ten enligt n\u00e5got annat syfte\n"}},"features":{"1":{"id":1,"name":"Matcha och kombinera datak\u00e4llor offline","description":"Uppgifter fr\u00e5n k\u00e4llor offline kan kombineras med din onlineaktivitet till st\u00f6d f\u00f6r ett eller flera syften.","descriptionLegal":"Leverant\u00f6rer kan: \n* Kombinera uppgifter som erh\u00e5llits offline med uppgifter som samlats in online till st\u00f6d f\u00f6r ett eller flera syften eller specialsyften.\n"},"2":{"id":2,"name":"L\u00e4nka olika enheter","description":"Olika enheter kan best\u00e4mmas som tillh\u00f6rande dig eller ditt hush\u00e5ll till st\u00f6d f\u00f6r ett eller flera syften.","descriptionLegal":"Leverant\u00f6rer kan:\n* Deterministiskt avg\u00f6ra att tv\u00e5 eller flera enheter tillh\u00f6r samma anv\u00e4ndare eller hush\u00e5ll\n* Baserat p\u00e5 sannolikhet avg\u00f6ra att tv\u00e5 eller flera enheter tillh\u00f6r samma anv\u00e4ndare eller hush\u00e5ll\n* Aktivt l\u00e4sa av enhetens funktioner f\u00f6r sannolik identifiering om anv\u00e4ndare har till\u00e5tit leverant\u00f6rer att aktivt skanna enhetens egenskaper f\u00f6r identifiering (specialfunktion 2)\n"},"3":{"id":3,"name":"Ta emot och anv\u00e4nd automatiskt genererade enhetsegenskaper f\u00f6r identifiering","description":"Din enhet kan skilja sig fr\u00e5n andra enheter baserat p\u00e5 data den skickar automatiskt, t ex IP-adress eller webbl\u00e4sartyp.","descriptionLegal":"Leverant\u00f6ren kan:\n* Skapa en identifierare med hj\u00e4lp av data som samlas in automatiskt fr\u00e5n en enhet med specifika egenskaper, t.ex. IP-adress, user-agent string.\n* En s\u00e5dan identifierare anv\u00e4nds f\u00f6r att f\u00f6rs\u00f6ka identifiera en enhet igen.\n\nLeverant\u00f6ren kan inte:\n* Skapa en identifierare med hj\u00e4lp av data som samlas in genom aktiv skanning av enheter efter specifika egenskaper, t.ex. installerat teckensnitt eller sk\u00e4rmens uppl\u00f6sning utan anv\u00e4ndares separata opt-in f\u00f6r att aktivt skanna enheters egenskaper f\u00f6r identifiering.\n* Skapa en s\u00e5dan identifierare f\u00f6r att identifiera en enhet igen."}},"specialFeatures":{"1":{"id":1,"name":"Anv\u00e4nda exakta uppgifter om geografisk positionering","description":"Dina exakta uppgifter om geografisk positionering kan anv\u00e4ndas till st\u00f6d f\u00f6r ett eller flera syften. Detta inneb\u00e4r att din plats kan vara exakt inom flera meter.","descriptionLegal":"Leverant\u00f6rer kan:\n* Samla in och underh\u00e5lla exakta uppgifter om geografisk positionering f\u00f6r att fr\u00e4mja ett eller flera syften.\nObs! Exakt lokalisering inneb\u00e4r att det inte finns n\u00e5gra begr\u00e4nsningar n\u00e4r det g\u00e4ller en anv\u00e4ndares lokaliseringsuppgifter. Detta kan inneb\u00e4ra en exakthet p\u00e5 flera meter.\n"},"2":{"id":2,"name":"L\u00e4sa av enhetens egenskaper aktivt f\u00f6r identifiering","description":"Din enhet kan identifieras baserat p\u00e5 din enhets kombination av egenskaper.","descriptionLegal":"Leverant\u00f6rer kan:\n* Skapa en identifierare med hj\u00e4lp av data som samlas in genom aktiv skanning av enheters specifika egenskaper t.ex. installerade teckensnitt eller sk\u00e4rmuppl\u00f6sning.\n* Anv\u00e4nd en s\u00e5dan identifierare f\u00f6r att identifiera en enhet igen."}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Exakta uppgifter om geografisk positionering och identifiering via skanning av enheten","description":"Exakta lokaliseringsuppgifter och information om enhetens egenskaper kan anv\u00e4ndas."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Grundl\u00e4ggande annonser och annonsm\u00e4tning","description":"Grundl\u00e4ggande annonser kan levereras. Annonsprestanda kan m\u00e4tas."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Personanpassade annonser","description":"Annonser kan personanpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa annonser b\u00e4ttre."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Grundl\u00e4ggande annonser och annonsm\u00e4tning","description":"Grundl\u00e4ggande annonser kan levereras. Annonsprestanda kan m\u00e4tas. Insikter om de m\u00e5lgrupper som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Grundl\u00e4ggande annonser, personanpassad annonsprofil och annonsm\u00e4tning","description":"Grundl\u00e4ggande annonser kan levereras. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa annonser b\u00e4ttre. Annonsprestanda kan m\u00e4tas."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Visning av personanpassade annonser och annonsm\u00e4tning","description":"Annonser kan personanpassas baserat p\u00e5 en profil. Annonsprestanda kan m\u00e4tas."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Visning av personanpassade annonser, annonsm\u00e4tning och m\u00e5lguppsinsikter","description":"Annonser kan personanpassas baserat p\u00e5 en profil. Annonsprestanda kan m\u00e4tas. Insikter om de m\u00e5lgrupper som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Personanpassade annonser och annonsm\u00e4tning","description":"Annonser kan personanpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa annonser b\u00e4ttre. Annonsprestanda kan m\u00e4tas."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Personanpassade annonser, annonsm\u00e4tning och m\u00e5lgruppsinsikter","description":"Annonser kan anpassas baserat p\u00e5 en profil. Mer information kan l\u00e4ggas till f\u00f6r att b\u00e4ttre anpassa annonser. Annonsprestanda kan m\u00e4tas. Insikter om publiken som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Personanpassad annonsprofil och visning","description":"Annonser kan personanpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa annonser b\u00e4ttre."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Personanpassat inneh\u00e5ll","description":"Inneh\u00e5llet kan personanpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa inneh\u00e5ll b\u00e4ttre."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Visning av personanpassat inneh\u00e5ll och inneh\u00e5llsm\u00e4tning","description":"Inneh\u00e5llet kan personanpassas baserat p\u00e5 en profil. Inneh\u00e5llsprestanda kan m\u00e4tas."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Visning av personanpassat inneh\u00e5ll, inneh\u00e5llsm\u00e4tning och m\u00e5lgruppsinsikter","description":"Inneh\u00e5llet kan personanpassas baserat p\u00e5 en profil. Inneh\u00e5llsprestanda kan m\u00e4tas. Insikter om de m\u00e5lgrupper som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Personanpassat inneh\u00e5ll och inneh\u00e5llsm\u00e4tning","description":"Inneh\u00e5llet kan personanpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa inneh\u00e5ll b\u00e4ttre. Inneh\u00e5llsprestanda kan m\u00e4tas."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Personanpassat inneh\u00e5ll, inneh\u00e5llsm\u00e4tning och m\u00e5lgruppsinsikter","description":"Inneh\u00e5llet kan personanpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa inneh\u00e5ll b\u00e4ttre. Inneh\u00e5llsprestanda kan m\u00e4tas. Insikter om de m\u00e5lgrupper som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Personanpassat inneh\u00e5ll, inneh\u00e5llsm\u00e4tning, m\u00e5lgruppsinsikter och produktutveckling","description":"Inneh\u00e5llet kan personanpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa inneh\u00e5ll b\u00e4ttre. Inneh\u00e5llsprestanda kan m\u00e4tas. Insikter om de m\u00e5lgrupper som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas. Uppgifter kan anv\u00e4ndas f\u00f6r att skapa eller f\u00f6rb\u00e4ttra anv\u00e4ndarupplevelser, system och programvara"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Annons- och inneh\u00e5llsm\u00e4tning och m\u00e5lgruppsinsikter","description":"Annons- och inneh\u00e5llsprestanda kan m\u00e4tas. Insikter om de m\u00e5lgrupper som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Annons- och inneh\u00e5llsm\u00e4tning","description":"Annons- och inneh\u00e5llsprestanda kan m\u00e4tas."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Annonsm\u00e4tning och m\u00e5lgruppsinsikter","description":"Annons kan m\u00e4tas. Insikter om de m\u00e5lgrupper som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Annons- och inneh\u00e5llsm\u00e4tning, m\u00e5lgruppsinsikter och produktutveckling","description":"Annons- och inneh\u00e5llsprestanda kan m\u00e4tas. Insikter om de m\u00e5lgrupper som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas. Uppgifter kan anv\u00e4ndas f\u00f6r att skapa eller f\u00f6rb\u00e4ttra anv\u00e4ndarupplevelser, system och programvara. Insikter om de m\u00e5lgrupper som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Inneh\u00e5llsm\u00e4tning, m\u00e5lgruppsinsikter och produktutveckling.","description":"Inneh\u00e5llsprestanda kan m\u00e4tas. Insikter om de m\u00e5lgrupper som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas. Uppgifter kan anv\u00e4ndas f\u00f6r att skapa eller f\u00f6rb\u00e4ttra anv\u00e4ndarupplevelser, system och programvara."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Inneh\u00e5llsm\u00e4tning och produktutveckling","description":"Inneh\u00e5llsprestanda kan m\u00e4tas. Uppgifter kan anv\u00e4ndas f\u00f6r att skapa eller f\u00f6rb\u00e4ttra anv\u00e4ndarupplevelser, system och programvara."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Personanpassad visning av annonser och inneh\u00e5ll, annons- och inneh\u00e5llsm\u00e4tning","description":"Annonser och inneh\u00e5ll kan personanpassas baserat p\u00e5 en profil. Annons- och inneh\u00e5llsprestanda kan m\u00e4tas."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Personanpassad visning av annonser och inneh\u00e5ll, annons- och inneh\u00e5llsm\u00e4tning samt m\u00e5lgruppsinsikter","description":"Annonser och inneh\u00e5ll kan personanpassas baserat p\u00e5 en profil. Annons- och inneh\u00e5llsprestanda kan m\u00e4tas. Insikter om de m\u00e5lgrupper som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas. Uppgifter kan anv\u00e4ndas f\u00f6r att skapa eller f\u00f6rb\u00e4ttra anv\u00e4ndarupplevelser, system och programvara."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Personanpassade annonser och inneh\u00e5ll, annons- och inneh\u00e5llsm\u00e4tning samt m\u00e5lgruppsinsikter","description":"Annonser och inneh\u00e5ll kan personanpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa annonser och inneh\u00e5ll b\u00e4ttre. Annons- och inneh\u00e5llsprestanda kan m\u00e4tas. Insikter om de m\u00e5lgrupper som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Personanpassade annonser och inneh\u00e5llsprofil","description":"Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa annonser och inneh\u00e5ll."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Grundl\u00e4ggande annonser, annons- och inneh\u00e5llsm\u00e4tning samt m\u00e5lgruppsinsikter","description":"Grundl\u00e4ggande annonser kan levereras. Annons- och inneh\u00e5llsprestanda kan m\u00e4tas. Insikter om de m\u00e5lgrupper som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Visning av personanpassade annonser, personanpassat inneh\u00e5ll, annons- och inneh\u00e5llsm\u00e4tning samt m\u00e5lgruppsinsikter","description":"Annonser och inneh\u00e5ll kan personanpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa inneh\u00e5ll b\u00e4ttre. Annons- och inneh\u00e5llsprestanda kan m\u00e4tas. Insikter om de m\u00e5lgrupper som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Visning av personanpassade annonser, personanpassat inneh\u00e5ll, annons- och inneh\u00e5llsm\u00e4tning, m\u00e5lgruppsinsikter och produktutveckling","description":"Annonser och inneh\u00e5ll kan personanpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa inneh\u00e5ll b\u00e4ttre. Annons- och inneh\u00e5llsprestanda kan m\u00e4tas. Insikter om de m\u00e5lgrupper som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas. Uppgifter kan anv\u00e4ndas f\u00f6r att skapa eller f\u00f6rb\u00e4ttra anv\u00e4ndarupplevelser, system och programvara."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Grundl\u00e4ggande annonser, personanpassat inneh\u00e5ll, annons- och inneh\u00e5llsm\u00e4tning samt m\u00e5lgruppsinsikter","description":"Grundl\u00e4ggande annonser kan levereras. Inneh\u00e5llet kan personanpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa inneh\u00e5ll b\u00e4ttre. Annons- och inneh\u00e5llsprestanda kan m\u00e4tas. Insikter om de m\u00e5lgrupper som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Grundl\u00e4ggande annonser, personanpassat inneh\u00e5ll, annons- och inneh\u00e5llsm\u00e4tning, m\u00e5lgruppsinsikter och produktutveckling","description":"Grundl\u00e4ggande annonser kan levereras. Inneh\u00e5llet kan personanpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa inneh\u00e5ll b\u00e4ttre. Annons- och inneh\u00e5llsprestanda kan m\u00e4tas. Insikter om de m\u00e5lgrupper som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas. Uppgifter kan anv\u00e4ndas f\u00f6r att skapa eller f\u00f6rb\u00e4ttra anv\u00e4ndarupplevelser, system och programvara."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Grundl\u00e4ggande annonser, personanpassat inneh\u00e5ll, inneh\u00e5llsm\u00e4tning och m\u00e5lgruppsinsikter","description":"Grundl\u00e4ggande annonser kan levereras. Inneh\u00e5llet kan personanpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa inneh\u00e5ll b\u00e4ttre. Annons- och inneh\u00e5llsprestanda kan m\u00e4tas. Insikter om de m\u00e5lgrupper som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Grundl\u00e4ggande annonser, personanpassat inneh\u00e5ll, inneh\u00e5llsm\u00e4tning, m\u00e5lgruppsinsikter och produktutveckling","description":"Grundl\u00e4ggande annonser kan levereras. Inneh\u00e5llet kan personanpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa inneh\u00e5ll b\u00e4ttre. Inneh\u00e5llsprestanda kan m\u00e4tas. Insikter om de m\u00e5lgrupper som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas. Uppgifter kan anv\u00e4ndas f\u00f6r att skapa eller f\u00f6rb\u00e4ttra anv\u00e4ndarupplevelser, system och programvara."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Grundl\u00e4ggande annonser, personanpassat inneh\u00e5ll och annonsm\u00e4tning","description":"Grundl\u00e4ggande annonser kan levereras. Inneh\u00e5llet kan personanpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa inneh\u00e5ll b\u00e4ttre. Annonsprestanda kan m\u00e4tas."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Grundl\u00e4ggande annonser, personanpassat inneh\u00e5ll, annonsm\u00e4tning och produktutveckling","description":"Grundl\u00e4ggande annonser kan levereras. Inneh\u00e5llet kan personanpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa inneh\u00e5ll b\u00e4ttre. Annonsprestanda kan m\u00e4tas. Uppgifter kan anv\u00e4ndas f\u00f6r att skapa eller f\u00f6rb\u00e4ttra anv\u00e4ndarupplevelser, system och programvara."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Anpassade annonser, annonsm\u00e4tning och produktutveckling","description":"Annonser kan anpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa annonser b\u00e4ttre. Annonsprestanda kan m\u00e4tas. Uppgifterna kan anv\u00e4ndas f\u00f6r att skapa eller f\u00f6rb\u00e4ttra anv\u00e4ndarupplevelser, system och programvara."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Anpassade annonser, annonsm\u00e4tning, m\u00e5lgruppsstatistik och produktutveckling","description":"Annonser kan anpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa annonser b\u00e4ttre. Annonsprestanda kan m\u00e4tas. Insikter om vilka m\u00e5lgrupper som sett annonserna och inneh\u00e5llet kan h\u00e4rledas. Uppgifterna kan anv\u00e4ndas f\u00f6r att skapa eller f\u00f6rb\u00e4ttra anv\u00e4ndarupplevelser, system och programvara."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Anpassade annonser, annons- och inneh\u00e5llsm\u00e4tning, m\u00e5lgruppsstatistik och produktutveckling","description":"Annonser kan anpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa annonser b\u00e4ttre. Annons- och inneh\u00e5llsprestanda kan m\u00e4tas. Insikter om vilka m\u00e5lgrupper som sett annonserna och inneh\u00e5llet kan h\u00e4rledas. Uppgifterna kan anv\u00e4ndas f\u00f6r att skapa eller f\u00f6rb\u00e4ttra anv\u00e4ndarupplevelser, system och programvara."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Visning av anpassade annonser, anpassat inneh\u00e5ll, annons- och inneh\u00e5llsm\u00e4tning, m\u00e5lgruppsstatistik och produktutveckling","description":"Annonser och inneh\u00e5ll kan anpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa annonser b\u00e4ttre. Annons- och inneh\u00e5llsprestanda kan m\u00e4tas. Insikter om vilka m\u00e5lgrupper som sett annonserna och inneh\u00e5llet kan h\u00e4rledas. Uppgifterna kan anv\u00e4ndas f\u00f6r att skapa eller f\u00f6rb\u00e4ttra anv\u00e4ndarupplevelser, system och programvara."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Anpassade annonser och anpassat inneh\u00e5ll, annons- och inneh\u00e5llsm\u00e4tning, m\u00e5lgruppsstatistik och produktutveckling","description":"Annonser och inneh\u00e5ll kan anpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa annonser och inneh\u00e5ll b\u00e4ttre. Annons- och inneh\u00e5llsprestanda kan m\u00e4tas. Insikter om vilka m\u00e5lgrupper som sett annonserna och inneh\u00e5llet kan h\u00e4rledas. Uppgifterna kan anv\u00e4ndas f\u00f6r att skapa eller f\u00f6rb\u00e4ttra anv\u00e4ndarupplevelser, system och programvara."}}} \ No newline at end of file +{"vendorListVersion":94,"lastUpdated":"2021-06-10T16:44:06Z","purposes":{"1":{"id":1,"name":"Lagra och/eller f\u00e5 \u00e5tkomst till information p\u00e5 en enhet","description":"Cookies, enhetsidentifierare eller annan information kan lagras eller kommas \u00e5t p\u00e5 din enhet f\u00f6r de syften som presenteras f\u00f6r dig.","descriptionLegal":"Leverant\u00f6rer kan:\n* Lagra och f\u00e5 \u00e5tkomst till information p\u00e5 enheten, s\u00e5som cookies och enhetsidentifierare som presenteras f\u00f6r en anv\u00e4ndare."},"2":{"id":2,"name":"V\u00e4lja grundl\u00e4ggande annonser","description":"Annonser kan visas f\u00f6r dig baserat p\u00e5 det inneh\u00e5ll du bes\u00f6ker, den app du anv\u00e4nder, din ungef\u00e4rliga plats eller din enhetstyp.","descriptionLegal":"F\u00f6r att g\u00f6ra grundl\u00e4ggande annonsval kan leverant\u00f6rer:\n* Anv\u00e4nda information i realtid om sammanhanget d\u00e4r annonsen kommer att visas f\u00f6r att visa annonsen, inklusive information om inneh\u00e5llet och enheten, s\u00e5som: enhetstyp och kapacitet, anv\u00e4ndaragent, URL, IP-adress \n* Utnyttja en anv\u00e4ndares approximativa (icke-exakta) uppgifter om geografisk positionering\n* Kontrollera frekvensen av annonser som visas f\u00f6r en anv\u00e4ndare.\n* Definiera i vilken ordning annonser visas f\u00f6r en anv\u00e4ndare.\n* Hindra en annons fr\u00e5n att fungera i ett ol\u00e4mpligt redaktionellt sammanhang (ol\u00e4mplig varum\u00e4rkesp\u00e5verkan)\nLeverant\u00f6rer kan inte:\n* Skapa en personanpassad annonsprofil f\u00f6r val av framtida annonser utifr\u00e5n denna information.\nObs! Approximativ betyder endast en ungef\u00e4rlig plats som inneb\u00e4r att \u00e5tminstone en radie p\u00e5 500 meter \u00e4r till\u00e5ten.\n"},"3":{"id":3,"name":"Skapa en personanpassad annonsprofil","description":"En profil kan byggas om dig och dina intressen f\u00f6r att visa dig personanpassade annonser som \u00e4r relevanta f\u00f6r dig.","descriptionLegal":"F\u00f6r att skapa en personanpassad annonsprofil kan leverant\u00f6rer:\n* Samla data om en anv\u00e4ndare, inklusive anv\u00e4ndarens aktivitet, intressen, bes\u00f6k p\u00e5 webbplatser eller appar, demografisk data eller plats f\u00f6r att skapa eller redigera en anv\u00e4ndarprofil f\u00f6r anv\u00e4ndning vid personanpassad annonsering.\n* Kombinera denna data med annan data som tidigare samlats in, inklusive fr\u00e5n olika webbplatser och appar f\u00f6r att skapa eller redigera en anv\u00e4ndarprofil f\u00f6r anv\u00e4ndning vid personanpassad annonsering.\n"},"4":{"id":4,"name":"V\u00e4lja personanpassade annonser","description":"Personanpassade annonser kan visas f\u00f6r dig baserat p\u00e5 en profil om dig.","descriptionLegal":"F\u00f6r att v\u00e4lja personanpassade annonser kan leverant\u00f6rer:\n* V\u00e4lja personanpassade annonser baserat p\u00e5 en anv\u00e4ndarprofil eller andra historiska anv\u00e4ndaruppgifter, inklusive en anv\u00e4ndares tidigare aktivitet, intressen, bes\u00f6k p\u00e5 webbplatser eller appar, plats eller demografisk information.\n* Kombinera denna information med annan information som tidigare samlats in, inklusive fr\u00e5n olika webbplatser och appar, f\u00f6r att skapa eller redigera en anv\u00e4ndarprofil f\u00f6r anv\u00e4ndning i personlig reklam."},"5":{"id":5,"name":"Skapa en personanpassad inneh\u00e5llsprofil","description":"En profil kan byggas om dig och dina intressen f\u00f6r att visa dig personanpassat inneh\u00e5ll som \u00e4r relevant f\u00f6r dig.","descriptionLegal":"F\u00f6r att skapa en personanpassad inneh\u00e5llsprofil kan leverant\u00f6rer:\n* Samla in information om en anv\u00e4ndare, inklusive anv\u00e4ndarens aktivitet, intressen, bes\u00f6k p\u00e5 webbplatser eller appar samt demografisk information eller plats f\u00f6r att skapa eller redigera en anv\u00e4ndarprofil f\u00f6r personanpassat inneh\u00e5ll.\n* Kombinera denna data med annan data som tidigare samlats in, samt fr\u00e5n olika webbplatser och appar f\u00f6r att skapa eller redigera en anv\u00e4ndarprofil f\u00f6r anv\u00e4ndning vid anpassning av inneh\u00e5ll.\n"},"6":{"id":6,"name":"V\u00e4lja personanpassat inneh\u00e5ll","description":"Personanpassat inneh\u00e5ll kan visas f\u00f6r dig baserat p\u00e5 en profil om dig.","descriptionLegal":"F\u00f6r att v\u00e4lja personanpassat inneh\u00e5ll kan leverant\u00f6rer:\n* V\u00e4lja personanpassat inneh\u00e5ll baserat p\u00e5 en anv\u00e4ndarprofil eller andra historiska anv\u00e4ndaruppgifter, inklusive en anv\u00e4ndares tidigare aktivitet, intressen, bes\u00f6k p\u00e5 webbplatser eller appar, plats eller demografisk information.\n"},"7":{"id":7,"name":"M\u00e4ta annonsprestanda","description":"Prestanda och effektivitet f\u00f6r annonser som du ser eller interagerar med kan m\u00e4tas.","descriptionLegal":"F\u00f6r att m\u00e4ta annonsprestanda kan leverant\u00f6rer:\n* M\u00e4ta om och hur annonser har levererats till anv\u00e4ndare och hur de interagerade med dem\n* Tillhandah\u00e5lla rapportering om annonser, inklusive deras effektivitet och prestanda\n* Tillhandah\u00e5lla rapportering om anv\u00e4ndare som interagerade med annonser med anv\u00e4ndning av uppgifter som observerades under tiden f\u00f6r anv\u00e4ndarens interaktion med den annonsen\n* Tillhandah\u00e5lla rapportering till utgivare om de annonser som visas p\u00e5 deras webbplatser\n* M\u00e4ta om en annons fungerar i ett l\u00e4mpligt redaktionellt sammanhang (l\u00e4mplig varum\u00e4rkesp\u00e5verkan)\n* Best\u00e4mma vilken procentandel av annonsen som hade m\u00f6jlighet att uppt\u00e4ckas och varaktigheten p\u00e5 den m\u00f6jligheten \nLeverant\u00f6rer kan inte:\n* L\u00e4gga till ytterligare uppgifter avseende m\u00e5lgruppsinsikter som har h\u00e4mtats fr\u00e5n panelunders\u00f6kningar eller via liknande metoder utan r\u00e4ttslig grund f\u00f6r att till\u00e4mpa marknadsunders\u00f6kningar med syfte att generera m\u00e5lgruppsinsikter (syfte 9)\n"},"8":{"id":8,"name":"M\u00e4ta inneh\u00e5llsprestanda","description":"Prestanda och effektivitet f\u00f6r inneh\u00e5ll som du ser eller interagerar med kan m\u00e4tas.","descriptionLegal":"F\u00f6r att m\u00e4ta inneh\u00e5llsprestanda kan leverant\u00f6rer:\n* M\u00e4ta och rapportera hur inneh\u00e5llet levererades till anv\u00e4ndare och hur de interagerade med det.\n* Tillhandah\u00e5lla rapportering med direkt m\u00e4tbar eller k\u00e4nd information om anv\u00e4ndare som interagerade med inneh\u00e5llet\nLeverant\u00f6rer kan inte:\n* M\u00e4ta om och hur annonser (inklusive ursprungsannonser) levererades till anv\u00e4ndare och hur de interagerade med dem.\n* L\u00e4gga till ytterligare uppgifter avseende m\u00e5lgruppsinsikter som har h\u00e4mtats fr\u00e5n panelunders\u00f6kningar eller via liknande metoder utan r\u00e4ttslig grund f\u00f6r att till\u00e4mpa marknadsunders\u00f6kningar med syfte att generera m\u00e5lgruppsinsikter (syfte 9)\n"},"9":{"id":9,"name":"Till\u00e4mpa marknadsunders\u00f6kningar f\u00f6r att generera m\u00e5lgruppsinsikter","description":"Marknadsunders\u00f6kningar kan anv\u00e4ndas f\u00f6r att l\u00e4ra sig mer om de m\u00e5lgrupper som bes\u00f6ker webbplatser/appar och ser annonser.","descriptionLegal":"* F\u00f6r att till\u00e4mpa marknadsunders\u00f6kningar f\u00f6r att generera m\u00e5lgruppsinsikter kan leverant\u00f6rer:\n* Tillhandah\u00e5lla samlad rapportering till annons\u00f6rer eller deras representanter om de m\u00e5lgrupper som har n\u00e5tts av deras annonser med hj\u00e4lp av insikter fr\u00e5n panelbaserade unders\u00f6kningar och liknande metoder.\n* Tillhandah\u00e5lla samlad rapportering till utgivare om de m\u00e5lgrupper som erh\u00f6ll eller interagerade med inneh\u00e5ll och/eller annonser p\u00e5 deras webbplats genom att till\u00e4mpa insikter fr\u00e5n panelbaserade unders\u00f6kningar och liknande metoder. \n* L\u00e4nka uppgifter offline till en onlineanv\u00e4ndare f\u00f6r marknadsunders\u00f6kningar med avsikt att generera m\u00e5lgruppsinsikter om leverant\u00f6rer har uppgett att de vill anpassa och kombinera uppgiftsk\u00e4llor offline (funktion 1)\nLeverant\u00f6rer kan inte:\n* M\u00e4ta prestanda och effektivitet f\u00f6r annonser som den specifika anv\u00e4ndaren serverades eller interagerades med, utan en separat r\u00e4ttslig grund f\u00f6r att m\u00e4ta annonsprestanda.\n* M\u00e4ta vilket inneh\u00e5ll en specifik anv\u00e4ndare visades och hur de interagerade med det, utan en separat r\u00e4ttslig grund f\u00f6r att m\u00e4ta inneh\u00e5llsprestanda.\n"},"10":{"id":10,"name":"Utveckla och f\u00f6rb\u00e4ttra produkter","description":"Dina uppgifter kan anv\u00e4ndas f\u00f6r att f\u00f6rb\u00e4ttra befintliga system och programvara och f\u00f6r att utveckla nya produkter.","descriptionLegal":"F\u00f6r att utveckla nya produkter och f\u00f6rb\u00e4ttra produkter kan leverant\u00f6rer:\n* Anv\u00e4nda information f\u00f6r att f\u00f6rb\u00e4ttra sina befintliga produkter med nya funktioner och f\u00f6r att utveckla nya produkter\n* Skapa nya modeller och algoritmer med hj\u00e4lp av maskininl\u00e4rning\nLeverant\u00f6rer kan inte:\n* F\u00f6r detta syfte utf\u00f6ra n\u00e5gon annan uppgiftsbehandling som \u00e4r till\u00e5ten enligt n\u00e5got annat syfte\n"}},"specialPurposes":{"1":{"id":1,"name":"S\u00e4kerst\u00e4lla s\u00e4kerhet, f\u00f6rhindra bedr\u00e4gerier samt fels\u00f6kning/korrigering","description":"Dina uppgifter kan anv\u00e4ndas f\u00f6r att \u00f6vervaka och f\u00f6rhindra bedr\u00e4gliga aktiviteter och s\u00e4kerst\u00e4lla att system och processer fungerar korrekt och s\u00e4kert.","descriptionLegal":"F\u00f6r att s\u00e4kerst\u00e4lla s\u00e4kerhet, f\u00f6rhindra bedr\u00e4gerier samt utf\u00f6ra fels\u00f6kning/korrigering kan leverant\u00f6rer:\n* S\u00e4kerst\u00e4lla att uppgifter \u00f6verf\u00f6rs s\u00e4kert \n* Uppt\u00e4cka och f\u00f6rhindra skadlig, bedr\u00e4glig, ogiltig eller olaglig aktivitet.\n* S\u00e4kerst\u00e4lla korrekt och effektiv drift av system och processer, inklusive f\u00f6r att \u00f6vervaka och f\u00f6rb\u00e4ttra prestanda f\u00f6r system och processer som anv\u00e4nds f\u00f6r till\u00e5tna syften\nLeverant\u00f6rer kan inte:\n* F\u00f6r detta syfte utf\u00f6ra n\u00e5gon annan uppgiftsbehandling som \u00e4r till\u00e5ten enligt n\u00e5got annat syfte.\nNotera: Data som samlas in och anv\u00e4nds f\u00f6r att s\u00e4kerst\u00e4lla s\u00e4kerhet, f\u00f6rebygga bedr\u00e4geri och fels\u00f6kning kan inkludera automatiskt \u00f6verf\u00f6rd identifiering fr\u00e5n enheter om dess egenskaper f\u00f6r exakt geografisk positioneringsdata och data erh\u00e5llna genom aktiv skanning av enheters egenskaper f\u00f6r identifiering utan separat avsl\u00f6jande och/eller opt-in.\n"},"2":{"id":2,"name":"Tekniskt levererad annons eller inneh\u00e5ll","description":"Din enhet kan ta emot och skicka information som g\u00f6r att du kan se och interagera med annonser och inneh\u00e5ll.","descriptionLegal":"F\u00f6r att leverera information och svara p\u00e5 en teknisk beg\u00e4ran kan leverant\u00f6rer:\n* Utnyttja en anv\u00e4ndares IP-adress f\u00f6r att leverera en annons via Internet\n* Svara p\u00e5 en anv\u00e4ndares interaktion med en annons genom att skicka anv\u00e4ndaren till en landningssida\n* Utnyttja en anv\u00e4ndares IP-adress f\u00f6r att leverera inneh\u00e5ll via Internet\n* Svara p\u00e5 anv\u00e4ndarens interaktion med specifikt inneh\u00e5ll genom att skicka anv\u00e4ndaren till en landningssida\n* Anv\u00e4nda information om enhetstyp och kapacitet f\u00f6r att leverera annonser eller inneh\u00e5ll, till exempel f\u00f6r att leverera annonsmaterial eller videor i r\u00e4tt storlek och i ett format som st\u00f6ds av den aktuella enheten\nLeverant\u00f6rer kan inte:\n* F\u00f6r detta syfte utf\u00f6ra n\u00e5gon annan uppgiftsbehandling som \u00e4r till\u00e5ten enligt n\u00e5got annat syfte\n"}},"features":{"1":{"id":1,"name":"Matcha och kombinera datak\u00e4llor offline","description":"Uppgifter fr\u00e5n k\u00e4llor offline kan kombineras med din onlineaktivitet till st\u00f6d f\u00f6r ett eller flera syften.","descriptionLegal":"Leverant\u00f6rer kan: \n* Kombinera uppgifter som erh\u00e5llits offline med uppgifter som samlats in online till st\u00f6d f\u00f6r ett eller flera syften eller specialsyften.\n"},"2":{"id":2,"name":"L\u00e4nka olika enheter","description":"Olika enheter kan best\u00e4mmas som tillh\u00f6rande dig eller ditt hush\u00e5ll till st\u00f6d f\u00f6r ett eller flera syften.","descriptionLegal":"Leverant\u00f6rer kan:\n* Deterministiskt avg\u00f6ra att tv\u00e5 eller flera enheter tillh\u00f6r samma anv\u00e4ndare eller hush\u00e5ll\n* Baserat p\u00e5 sannolikhet avg\u00f6ra att tv\u00e5 eller flera enheter tillh\u00f6r samma anv\u00e4ndare eller hush\u00e5ll\n* Aktivt l\u00e4sa av enhetens funktioner f\u00f6r sannolik identifiering om anv\u00e4ndare har till\u00e5tit leverant\u00f6rer att aktivt skanna enhetens egenskaper f\u00f6r identifiering (specialfunktion 2)\n"},"3":{"id":3,"name":"Ta emot och anv\u00e4nd automatiskt genererade enhetsegenskaper f\u00f6r identifiering","description":"Din enhet kan skilja sig fr\u00e5n andra enheter baserat p\u00e5 data den skickar automatiskt, t ex IP-adress eller webbl\u00e4sartyp.","descriptionLegal":"Leverant\u00f6ren kan:\n* Skapa en identifierare med hj\u00e4lp av data som samlas in automatiskt fr\u00e5n en enhet med specifika egenskaper, t.ex. IP-adress, user-agent string.\n* En s\u00e5dan identifierare anv\u00e4nds f\u00f6r att f\u00f6rs\u00f6ka identifiera en enhet igen.\n\nLeverant\u00f6ren kan inte:\n* Skapa en identifierare med hj\u00e4lp av data som samlas in genom aktiv skanning av enheter efter specifika egenskaper, t.ex. installerat teckensnitt eller sk\u00e4rmens uppl\u00f6sning utan anv\u00e4ndares separata opt-in f\u00f6r att aktivt skanna enheters egenskaper f\u00f6r identifiering.\n* Skapa en s\u00e5dan identifierare f\u00f6r att identifiera en enhet igen."}},"specialFeatures":{"1":{"id":1,"name":"Anv\u00e4nda exakta uppgifter om geografisk positionering","description":"Dina exakta uppgifter om geografisk positionering kan anv\u00e4ndas till st\u00f6d f\u00f6r ett eller flera syften. Detta inneb\u00e4r att din plats kan vara exakt inom flera meter.","descriptionLegal":"Leverant\u00f6rer kan:\n* Samla in och underh\u00e5lla exakta uppgifter om geografisk positionering f\u00f6r att fr\u00e4mja ett eller flera syften.\nObs! Exakt lokalisering inneb\u00e4r att det inte finns n\u00e5gra begr\u00e4nsningar n\u00e4r det g\u00e4ller en anv\u00e4ndares lokaliseringsuppgifter. Detta kan inneb\u00e4ra en exakthet p\u00e5 flera meter.\n"},"2":{"id":2,"name":"L\u00e4sa av enhetens egenskaper aktivt f\u00f6r identifiering","description":"Din enhet kan identifieras baserat p\u00e5 din enhets kombination av egenskaper.","descriptionLegal":"Leverant\u00f6rer kan:\n* Skapa en identifierare med hj\u00e4lp av data som samlas in genom aktiv skanning av enheters specifika egenskaper t.ex. installerade teckensnitt eller sk\u00e4rmuppl\u00f6sning.\n* Anv\u00e4nd en s\u00e5dan identifierare f\u00f6r att identifiera en enhet igen."}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Exakta uppgifter om geografisk positionering och identifiering via skanning av enheten","description":"Exakta lokaliseringsuppgifter och information om enhetens egenskaper kan anv\u00e4ndas."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Grundl\u00e4ggande annonser och annonsm\u00e4tning","description":"Grundl\u00e4ggande annonser kan levereras. Annonsprestanda kan m\u00e4tas."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Personanpassade annonser","description":"Annonser kan personanpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa annonser b\u00e4ttre."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Grundl\u00e4ggande annonser och annonsm\u00e4tning","description":"Grundl\u00e4ggande annonser kan levereras. Annonsprestanda kan m\u00e4tas. Insikter om de m\u00e5lgrupper som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Grundl\u00e4ggande annonser, personanpassad annonsprofil och annonsm\u00e4tning","description":"Grundl\u00e4ggande annonser kan levereras. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa annonser b\u00e4ttre. Annonsprestanda kan m\u00e4tas."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Visning av personanpassade annonser och annonsm\u00e4tning","description":"Annonser kan personanpassas baserat p\u00e5 en profil. Annonsprestanda kan m\u00e4tas."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Visning av personanpassade annonser, annonsm\u00e4tning och m\u00e5lguppsinsikter","description":"Annonser kan personanpassas baserat p\u00e5 en profil. Annonsprestanda kan m\u00e4tas. Insikter om de m\u00e5lgrupper som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Personanpassade annonser och annonsm\u00e4tning","description":"Annonser kan personanpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa annonser b\u00e4ttre. Annonsprestanda kan m\u00e4tas."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Personanpassade annonser, annonsm\u00e4tning och m\u00e5lgruppsinsikter","description":"Annonser kan anpassas baserat p\u00e5 en profil. Mer information kan l\u00e4ggas till f\u00f6r att b\u00e4ttre anpassa annonser. Annonsprestanda kan m\u00e4tas. Insikter om publiken som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Personanpassad annonsprofil och visning","description":"Annonser kan personanpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa annonser b\u00e4ttre."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Personanpassat inneh\u00e5ll","description":"Inneh\u00e5llet kan personanpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa inneh\u00e5ll b\u00e4ttre."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Visning av personanpassat inneh\u00e5ll och inneh\u00e5llsm\u00e4tning","description":"Inneh\u00e5llet kan personanpassas baserat p\u00e5 en profil. Inneh\u00e5llsprestanda kan m\u00e4tas."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Visning av personanpassat inneh\u00e5ll, inneh\u00e5llsm\u00e4tning och m\u00e5lgruppsinsikter","description":"Inneh\u00e5llet kan personanpassas baserat p\u00e5 en profil. Inneh\u00e5llsprestanda kan m\u00e4tas. Insikter om de m\u00e5lgrupper som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Personanpassat inneh\u00e5ll och inneh\u00e5llsm\u00e4tning","description":"Inneh\u00e5llet kan personanpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa inneh\u00e5ll b\u00e4ttre. Inneh\u00e5llsprestanda kan m\u00e4tas."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Personanpassat inneh\u00e5ll, inneh\u00e5llsm\u00e4tning och m\u00e5lgruppsinsikter","description":"Inneh\u00e5llet kan personanpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa inneh\u00e5ll b\u00e4ttre. Inneh\u00e5llsprestanda kan m\u00e4tas. Insikter om de m\u00e5lgrupper som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Personanpassat inneh\u00e5ll, inneh\u00e5llsm\u00e4tning, m\u00e5lgruppsinsikter och produktutveckling","description":"Inneh\u00e5llet kan personanpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa inneh\u00e5ll b\u00e4ttre. Inneh\u00e5llsprestanda kan m\u00e4tas. Insikter om de m\u00e5lgrupper som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas. Uppgifter kan anv\u00e4ndas f\u00f6r att skapa eller f\u00f6rb\u00e4ttra anv\u00e4ndarupplevelser, system och programvara"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Annons- och inneh\u00e5llsm\u00e4tning och m\u00e5lgruppsinsikter","description":"Annons- och inneh\u00e5llsprestanda kan m\u00e4tas. Insikter om de m\u00e5lgrupper som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Annons- och inneh\u00e5llsm\u00e4tning","description":"Annons- och inneh\u00e5llsprestanda kan m\u00e4tas."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Annonsm\u00e4tning och m\u00e5lgruppsinsikter","description":"Annons kan m\u00e4tas. Insikter om de m\u00e5lgrupper som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Annons- och inneh\u00e5llsm\u00e4tning, m\u00e5lgruppsinsikter och produktutveckling","description":"Annons- och inneh\u00e5llsprestanda kan m\u00e4tas. Insikter om de m\u00e5lgrupper som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas. Uppgifter kan anv\u00e4ndas f\u00f6r att skapa eller f\u00f6rb\u00e4ttra anv\u00e4ndarupplevelser, system och programvara. Insikter om de m\u00e5lgrupper som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Inneh\u00e5llsm\u00e4tning, m\u00e5lgruppsinsikter och produktutveckling","description":"Inneh\u00e5llsprestanda kan m\u00e4tas. Insikter om de m\u00e5lgrupper som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas. Uppgifter kan anv\u00e4ndas f\u00f6r att skapa eller f\u00f6rb\u00e4ttra anv\u00e4ndarupplevelser, system och programvara."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Inneh\u00e5llsm\u00e4tning och produktutveckling","description":"Inneh\u00e5llsprestanda kan m\u00e4tas. Uppgifter kan anv\u00e4ndas f\u00f6r att skapa eller f\u00f6rb\u00e4ttra anv\u00e4ndarupplevelser, system och programvara."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Personanpassad visning av annonser och inneh\u00e5ll, annons- och inneh\u00e5llsm\u00e4tning","description":"Annonser och inneh\u00e5ll kan personanpassas baserat p\u00e5 en profil. Annons- och inneh\u00e5llsprestanda kan m\u00e4tas."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Personanpassad visning av annonser och inneh\u00e5ll, annons- och inneh\u00e5llsm\u00e4tning samt m\u00e5lgruppsinsikter","description":"Annonser och inneh\u00e5ll kan personanpassas baserat p\u00e5 en profil. Annons- och inneh\u00e5llsprestanda kan m\u00e4tas. Insikter om de m\u00e5lgrupper som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas. Uppgifter kan anv\u00e4ndas f\u00f6r att skapa eller f\u00f6rb\u00e4ttra anv\u00e4ndarupplevelser, system och programvara."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Personanpassade annonser och inneh\u00e5ll, annons- och inneh\u00e5llsm\u00e4tning samt m\u00e5lgruppsinsikter","description":"Annonser och inneh\u00e5ll kan personanpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa annonser och inneh\u00e5ll b\u00e4ttre. Annons- och inneh\u00e5llsprestanda kan m\u00e4tas. Insikter om de m\u00e5lgrupper som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Personanpassade annonser och inneh\u00e5llsprofil","description":"Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa annonser och inneh\u00e5ll."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Grundl\u00e4ggande annonser, annons- och inneh\u00e5llsm\u00e4tning samt m\u00e5lgruppsinsikter","description":"Grundl\u00e4ggande annonser kan levereras. Annons- och inneh\u00e5llsprestanda kan m\u00e4tas. Insikter om de m\u00e5lgrupper som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Visning av personanpassade annonser, personanpassat inneh\u00e5ll, annons- och inneh\u00e5llsm\u00e4tning samt m\u00e5lgruppsinsikter","description":"Annonser och inneh\u00e5ll kan personanpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa inneh\u00e5ll b\u00e4ttre. Annons- och inneh\u00e5llsprestanda kan m\u00e4tas. Insikter om de m\u00e5lgrupper som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Visning av personanpassade annonser, personanpassat inneh\u00e5ll, annons- och inneh\u00e5llsm\u00e4tning, m\u00e5lgruppsinsikter och produktutveckling","description":"Annonser och inneh\u00e5ll kan personanpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa inneh\u00e5ll b\u00e4ttre. Annons- och inneh\u00e5llsprestanda kan m\u00e4tas. Insikter om de m\u00e5lgrupper som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas. Uppgifter kan anv\u00e4ndas f\u00f6r att skapa eller f\u00f6rb\u00e4ttra anv\u00e4ndarupplevelser, system och programvara."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Grundl\u00e4ggande annonser, personanpassat inneh\u00e5ll, annons- och inneh\u00e5llsm\u00e4tning samt m\u00e5lgruppsinsikter","description":"Grundl\u00e4ggande annonser kan levereras. Inneh\u00e5llet kan personanpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa inneh\u00e5ll b\u00e4ttre. Annons- och inneh\u00e5llsprestanda kan m\u00e4tas. Insikter om de m\u00e5lgrupper som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Grundl\u00e4ggande annonser, personanpassat inneh\u00e5ll, annons- och inneh\u00e5llsm\u00e4tning, m\u00e5lgruppsinsikter och produktutveckling","description":"Grundl\u00e4ggande annonser kan levereras. Inneh\u00e5llet kan personanpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa inneh\u00e5ll b\u00e4ttre. Annons- och inneh\u00e5llsprestanda kan m\u00e4tas. Insikter om de m\u00e5lgrupper som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas. Uppgifter kan anv\u00e4ndas f\u00f6r att skapa eller f\u00f6rb\u00e4ttra anv\u00e4ndarupplevelser, system och programvara."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Grundl\u00e4ggande annonser, personanpassat inneh\u00e5ll, inneh\u00e5llsm\u00e4tning och m\u00e5lgruppsinsikter","description":"Grundl\u00e4ggande annonser kan levereras. Inneh\u00e5llet kan personanpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa inneh\u00e5ll b\u00e4ttre. Annons- och inneh\u00e5llsprestanda kan m\u00e4tas. Insikter om de m\u00e5lgrupper som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Grundl\u00e4ggande annonser, personanpassat inneh\u00e5ll, inneh\u00e5llsm\u00e4tning, m\u00e5lgruppsinsikter och produktutveckling","description":"Grundl\u00e4ggande annonser kan levereras. Inneh\u00e5llet kan personanpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa inneh\u00e5ll b\u00e4ttre. Inneh\u00e5llsprestanda kan m\u00e4tas. Insikter om de m\u00e5lgrupper som s\u00e5g annonserna och inneh\u00e5llet kan h\u00e4rledas. Uppgifter kan anv\u00e4ndas f\u00f6r att skapa eller f\u00f6rb\u00e4ttra anv\u00e4ndarupplevelser, system och programvara."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Grundl\u00e4ggande annonser, personanpassat inneh\u00e5ll och annonsm\u00e4tning","description":"Grundl\u00e4ggande annonser kan levereras. Inneh\u00e5llet kan personanpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa inneh\u00e5ll b\u00e4ttre. Annonsprestanda kan m\u00e4tas."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Grundl\u00e4ggande annonser, personanpassat inneh\u00e5ll, annonsm\u00e4tning och produktutveckling","description":"Grundl\u00e4ggande annonser kan levereras. Inneh\u00e5llet kan personanpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa inneh\u00e5ll b\u00e4ttre. Annonsprestanda kan m\u00e4tas. Uppgifter kan anv\u00e4ndas f\u00f6r att skapa eller f\u00f6rb\u00e4ttra anv\u00e4ndarupplevelser, system och programvara."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Anpassade annonser, annonsm\u00e4tning och produktutveckling","description":"Annonser kan anpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa annonser b\u00e4ttre. Annonsprestanda kan m\u00e4tas. Uppgifterna kan anv\u00e4ndas f\u00f6r att skapa eller f\u00f6rb\u00e4ttra anv\u00e4ndarupplevelser, system och programvara."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Anpassade annonser, annonsm\u00e4tning, m\u00e5lgruppsstatistik och produktutveckling","description":"Annonser kan anpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa annonser b\u00e4ttre. Annonsprestanda kan m\u00e4tas. Insikter om vilka m\u00e5lgrupper som sett annonserna och inneh\u00e5llet kan h\u00e4rledas. Uppgifterna kan anv\u00e4ndas f\u00f6r att skapa eller f\u00f6rb\u00e4ttra anv\u00e4ndarupplevelser, system och programvara."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Anpassade annonser, annons- och inneh\u00e5llsm\u00e4tning, m\u00e5lgruppsstatistik och produktutveckling","description":"Annonser kan anpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa annonser b\u00e4ttre. Annons- och inneh\u00e5llsprestanda kan m\u00e4tas. Insikter om vilka m\u00e5lgrupper som sett annonserna och inneh\u00e5llet kan h\u00e4rledas. Uppgifterna kan anv\u00e4ndas f\u00f6r att skapa eller f\u00f6rb\u00e4ttra anv\u00e4ndarupplevelser, system och programvara."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Visning av anpassade annonser, anpassat inneh\u00e5ll, annons- och inneh\u00e5llsm\u00e4tning, m\u00e5lgruppsstatistik och produktutveckling","description":"Annonser och inneh\u00e5ll kan anpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa annonser b\u00e4ttre. Annons- och inneh\u00e5llsprestanda kan m\u00e4tas. Insikter om vilka m\u00e5lgrupper som sett annonserna och inneh\u00e5llet kan h\u00e4rledas. Uppgifterna kan anv\u00e4ndas f\u00f6r att skapa eller f\u00f6rb\u00e4ttra anv\u00e4ndarupplevelser, system och programvara."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Anpassade annonser och anpassat inneh\u00e5ll, annons- och inneh\u00e5llsm\u00e4tning, m\u00e5lgruppsstatistik och produktutveckling","description":"Annonser och inneh\u00e5ll kan anpassas baserat p\u00e5 en profil. Fler uppgifter kan l\u00e4ggas till f\u00f6r att personanpassa annonser och inneh\u00e5ll b\u00e4ttre. Annons- och inneh\u00e5llsprestanda kan m\u00e4tas. Insikter om vilka m\u00e5lgrupper som sett annonserna och inneh\u00e5llet kan h\u00e4rledas. Uppgifterna kan anv\u00e4ndas f\u00f6r att skapa eller f\u00f6rb\u00e4ttra anv\u00e4ndarupplevelser, system och programvara."}}} \ No newline at end of file diff --git a/src/s1/config/2.0/purposes/purposes-tr.json b/src/s1/config/2.0/purposes/purposes-tr.json index 6f4bbc55..8d148b26 100644 --- a/src/s1/config/2.0/purposes/purposes-tr.json +++ b/src/s1/config/2.0/purposes/purposes-tr.json @@ -1 +1 @@ -{"vendorListVersion":79,"lastUpdated":"2021-02-25T16:36:27Z","purposes":{"1":{"id":1,"name":"Bilgileri bir cihazda depolamak ve/veya onlara cihazdan eri\u015fmek","description":"Size sunulan ama\u00e7lar i\u00e7in \u00e7erezler, cihaz belirleyiciler veya ba\u015fka bilgiler cihaz\u0131n\u0131zda depolanabilir ve onlara cihazdan eri\u015filebilir.","descriptionLegal":"Sat\u0131c\u0131lar \u015funlar\u0131 yapabilir:\r\n\u25cf\tBir kullan\u0131c\u0131ya sunulan ama\u00e7lar i\u00e7in \u00e7erezler ve cihaz belirleyiciler gibi bilgileri cihazda depolamak ve onlara cihazdan eri\u015fmek.\r"},"2":{"id":2,"name":"Temel reklamlar\u0131 se\u00e7mek","description":"G\u00f6r\u00fcnt\u00fclemekte oldu\u011funuz i\u00e7erik, kullanmakta oldu\u011funuz uygulama, yakla\u015f\u0131k konumunuz veya cihaz t\u00fcr\u00fcn\u00fcz temelinde size reklamlar g\u00f6sterilebilir.","descriptionLegal":"Sat\u0131c\u0131lar temel reklamlar\u0131n se\u00e7mek i\u00e7in \u015funlar\u0131 yapabilir:\r\n\u25cf\tReklam\u0131 g\u00f6stermek i\u00e7in, cihaz t\u00fcr\u00fc ve yetenekleri, kullan\u0131c\u0131 arac\u0131s\u0131, URL, IP adresi dahil olmak \u00fczere i\u00e7erik ve cihaz hakk\u0131ndaki bilgiler dahil olmak \u00fczere reklam\u0131n g\u00f6sterilece\u011fi kapsam hakk\u0131ndaki ger\u00e7ek zamanl\u0131 bilgileri okumak\r\n\u25cf\tBir kullan\u0131c\u0131n\u0131n kesin olmayan co\u011frafi konum verilerini kullanmak\r\n\u25cf\tBir kullan\u0131c\u0131ya g\u00f6sterilen reklamlar\u0131n s\u0131kl\u0131\u011f\u0131n\u0131 kontrol etmek.\r\n\u25cf\tReklamlar\u0131n bir kullan\u0131c\u0131ya g\u00f6sterilme s\u0131ras\u0131n\u0131 d\u00fczenlemek.\r\n\u25cf\tBir reklam\u0131n uygunsuz bir editoryal (marka bak\u0131m\u0131ndan g\u00fcvensiz) ba\u011flamda sunulmas\u0131n\u0131 engellemek\r\nSat\u0131c\u0131lar \u015funlar\u0131 yapamaz:\r\n\u25cf\tKi\u015fiselle\u015ftirilmi\u015f bir reklam profili olu\u015fturmak i\u00e7in, ayr\u0131 bir yasal temel olmadan, ilerideki reklamlar\u0131n se\u00e7ilmesi i\u00e7in bu bilgileri kullanarak ki\u015fiselle\u015ftirilmi\u015f bir reklam profili olu\u015fturmak.\r\nNot: Kesin olmayan demek, en az 500 metrelik bir \u00e7ap i\u00e7ermesine izin verilen \u015fekilde yaln\u0131zca yakla\u015f\u0131k bir konum demektir.\r"},"3":{"id":3,"name":"Ki\u015fiselle\u015ftirilmi\u015f bir reklam profili olu\u015fturmak","description":"Sizin ile ilgili olan ki\u015fiselle\u015ftirilmi\u015f reklamlar g\u00f6stermek i\u00e7in siz ve ilgi alanlar\u0131n\u0131z hakk\u0131nda bir profil olu\u015fturulabilir.","descriptionLegal":"Sat\u0131c\u0131lar ki\u015fiselle\u015ftirilmi\u015f bir reklam profili olu\u015fturmak i\u00e7in \u015funlar\u0131 yapabilir:\r\n \u25cf\tKi\u015fiselle\u015ftirilmi\u015f reklamc\u0131l\u0131kta kullan\u0131lmak \u00fczere bir kullan\u0131c\u0131 profili olu\u015fturmak veya d\u00fczenlemek i\u00e7in bir kullan\u0131c\u0131n\u0131n faaliyetleri, ilgi alanlar\u0131, sitelere ziyaretleri veya uygulamalar\u0131, demografik bilgileri veya konumu dahil olmak \u00fczere bir kullan\u0131c\u0131 hakk\u0131nda bilgiler toplamak.\r\n \u25cf\tKi\u015fiselle\u015ftirilmi\u015f reklamc\u0131l\u0131kta kullan\u0131lmak \u00fczere bir kullan\u0131c\u0131 profili olu\u015fturmak veya d\u00fczenlemek i\u00e7in bu bilgileri web sitelerinden ve uygulamalardan dahil daha \u00f6nce toplanm\u0131\u015f ba\u015fka bilgiler ile birle\u015ftirmek.\r"},"4":{"id":4,"name":"Ki\u015fiselle\u015ftirilmi\u015f reklamlar se\u00e7mek","description":"Hakk\u0131n\u0131zdaki bir profil temelinde size ki\u015fiselle\u015ftirilmi\u015f reklamlar g\u00f6sterilebilir.","descriptionLegal":"Sat\u0131c\u0131lar ki\u015fiselle\u015ftirilmi\u015f reklamlar se\u00e7mek i\u00e7in \u015funlar\u0131 yapabilir:\r\n\u25cf\t\u00d6nceki faaliyetler, ilgi alanlar\u0131, sitelere ziyaretler veya uygulamalar, konum veya demografik bilgiler dahil olmak \u00fczere kullan\u0131c\u0131 profili veya ba\u015fka ge\u00e7mi\u015f kullan\u0131c\u0131 verileri temelinde ki\u015fiselle\u015ftirilmi\u015f reklamlar se\u00e7mek.\r"},"5":{"id":5,"name":"Ki\u015fiselle\u015ftirilmi\u015f bir i\u00e7erik profili olu\u015fturmak","description":"Sizin ile ilgili olan ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik g\u00f6stermek i\u00e7in siz ve ilgi alanlar\u0131n\u0131z hakk\u0131nda bir profil olu\u015fturulabilir.","descriptionLegal":"Sat\u0131c\u0131lar ki\u015fiselle\u015ftirilmi\u015f bir i\u00e7erik profili olu\u015fturmak i\u00e7in \u015funlar\u0131 yapabilir:\r\n\u25cf\t\u0130\u00e7eri\u011fi ki\u015fiselle\u015ftirmek \u00fczere bir kullan\u0131c\u0131 profili olu\u015fturmak veya d\u00fczenlemek i\u00e7in bir kullan\u0131c\u0131n\u0131n faaliyetleri, ilgi alanlar\u0131, sitelere ziyaretleri veya uygulamalar\u0131, demografik bilgileri veya konumu dahil olmak \u00fczere bir kullan\u0131c\u0131 hakk\u0131nda bilgiler toplamak.\r\n \u25cf\t\u0130\u00e7eri\u011fi ki\u015fiselle\u015ftirmekte kullan\u0131lmak \u00fczere bir kullan\u0131c\u0131 profili olu\u015fturmak veya d\u00fczenlemek i\u00e7in bu bilgileri web sitelerinden ve uygulamalardan dahil daha \u00f6nce toplanm\u0131\u015f ba\u015fka bilgiler ile birle\u015ftirmek.\r"},"6":{"id":6,"name":"Ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik se\u00e7mek","description":"Hakk\u0131n\u0131zdaki bir profil temelinde size ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik g\u00f6sterilebilir.","descriptionLegal":"Sat\u0131c\u0131lar ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik se\u00e7mek i\u00e7in \u015funlar\u0131 yapabilir:\r\n\u25cf\t\u00d6nceki faaliyetler, ilgi alanlar\u0131, sitelere ziyaretler veya uygulamalar, konum veya demografik bilgiler dahil olmak \u00fczere kullan\u0131c\u0131 profili veya ba\u015fka ge\u00e7mi\u015f kullan\u0131c\u0131 verileri temelinde ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik se\u00e7mek.\r"},"7":{"id":7,"name":"Reklam performans\u0131n\u0131 \u00f6l\u00e7mek","description":"G\u00f6rd\u00fc\u011f\u00fcn\u00fcz veya etkile\u015fimde bulundu\u011funuz reklamlar\u0131n etki d\u00fczeyi ve performans\u0131 \u00f6l\u00e7\u00fclebilir.","descriptionLegal":"Sat\u0131c\u0131lar reklam performans\u0131n\u0131 \u00f6l\u00e7mek i\u00e7in \u015funlar\u0131 yapabilir:\r\n\u25cf\tReklamlar\u0131n bir kullan\u0131c\u0131ya iletilip iletilmedi\u011fini ve nas\u0131l iletildi\u011fini ve nas\u0131l etkile\u015fim yap\u0131ld\u0131\u011f\u0131n\u0131 \u00f6l\u00e7mek\r\n\u25cf\tReklamlar\u0131n etki d\u00fczeyi ve performans\u0131 dahil reklamlar hakk\u0131nda raporlar sa\u011flamak\r\n\u25cf\tKullan\u0131c\u0131n\u0131n reklam ile etkile\u015fimi s\u0131ras\u0131nda g\u00f6zlenen verileri kullanarak reklamlar ile etkile\u015fimde bulunan kullan\u0131c\u0131lar hakk\u0131nda rapor sa\u011flamak\r\n\u25cf\tYay\u0131nc\u0131lara, onlar\u0131n m\u00fclklerinde g\u00f6sterilen reklamlar hakk\u0131nda rapor sa\u011flamak\r\n\u25cf\tBir reklam\u0131n uygun bir editoryal ortam (marka bak\u0131m\u0131ndan g\u00fcvenli) ba\u011flam\u0131nda sunulup sunulmad\u0131\u011f\u0131n\u0131 \u00f6l\u00e7mek\r\n\u25cf\tG\u00f6r\u00fclme f\u0131rsat\u0131na sahip olmu\u015f reklam\u0131n y\u00fczdesini ve bu f\u0131rsat\u0131n s\u00fcresini belirlemek\r\n\u25cf\tBu bilgileri web sitelerinden ve uygulamalardan dahil daha \u00f6nce toplanm\u0131\u015f ba\u015fka bilgiler ile birle\u015ftirmek\r\nSat\u0131c\u0131lar \u015funlar\u0131 yapamaz:\r\n\u25cf\t\u0130zleyici g\u00f6r\u00fc\u015fleri \u00fcretmek \u00fczere pazar ara\u015ft\u0131rmas\u0131 uygulamak i\u00e7in, ayr\u0131 bir yasal temel olmadan, panelden veya benzer \u015fekilde elde edilen izleyici g\u00f6r\u00fc\u015flerini reklam \u00f6l\u00e7\u00fcm\u00fc verilerine uygulamak.\r"},"8":{"id":8,"name":"\u0130\u00e7erik performans\u0131n\u0131 \u00f6l\u00e7mek","description":"G\u00f6rd\u00fc\u011f\u00fcn\u00fcz veya etkile\u015fimde bulundu\u011funuz i\u00e7eri\u011fin etki d\u00fczeyi ve performans\u0131 \u00f6l\u00e7\u00fclebilir.","descriptionLegal":"Sat\u0131c\u0131lar i\u00e7erik performans\u0131n\u0131 \u00f6l\u00e7mek i\u00e7in \u015funlar\u0131 yapabilir:\r\n\u25cf\t\u0130\u00e7eri\u011fin kullan\u0131c\u0131lara nas\u0131l iletildi\u011fini ve nas\u0131l etkile\u015fim yap\u0131ld\u0131\u011f\u0131n\u0131 \u00f6l\u00e7mek ve rapor etmek.\r\n\u25cf\t\u0130\u00e7erik ile etkile\u015fimde bulunan kullan\u0131c\u0131lar hakk\u0131nda do\u011frudan \u00f6l\u00e7\u00fclebilir olan veya bilinen bilgileri kullanarak rapor sa\u011flamak.\r\n\u25cf\tBu bilgileri web sitelerinden ve uygulamalardan dahil daha \u00f6nce toplanm\u0131\u015f ba\u015fka bilgiler ile birle\u015ftirmek.\r\nSat\u0131c\u0131lar \u015funlar\u0131 yapamaz:\r\n\u25cf\tReklamlar\u0131n (yerel reklamlar dahil) bir kullan\u0131c\u0131ya iletilip iletilmedi\u011fini ve nas\u0131l iletildi\u011fini ve nas\u0131l etkile\u015fim yap\u0131ld\u0131\u011f\u0131n\u0131 ayr\u0131 bir yasal temel olmadan \u00f6l\u00e7mek.\r\n\u25cf\t\u0130zleyici g\u00f6r\u00fc\u015fleri \u00fcretmek \u00fczere pazar ara\u015ft\u0131rmas\u0131 uygulamak i\u00e7in, ayr\u0131 yasal temeller olmadan, panelden veya benzer \u015fekilde elde edilen izleyici g\u00f6r\u00fc\u015flerini reklam \u00f6l\u00e7\u00fcm\u00fc verilerine uygulamak.\r\n"},"9":{"id":9,"name":"\u0130zleyici g\u00f6r\u00fc\u015fleri \u00fcretmek \u00fczere pazar ara\u015ft\u0131rmas\u0131 uygulamak","description":"Pazar ara\u015ft\u0131rmas\u0131, siteleri/uygulamalar\u0131 ziyaret eden ve reklamlar\u0131 g\u00f6ren izleyiciler hakk\u0131nda daha fazla \u015fey \u00f6\u011frenmek i\u00e7in kullan\u0131labilir.","descriptionLegal":"Sat\u0131c\u0131lar izleyici g\u00f6r\u00fc\u015fleri \u00fcretmek \u00fczere pazar ara\u015ft\u0131rmas\u0131 uygulamak i\u00e7in \u015funlar\u0131 yapabilir:\r\n\u25cf\tPanel temelli veya benzer \u015fekilde elde edilen izleyici g\u00f6r\u00fc\u015fleri vas\u0131tas\u0131 ile reklamlar\u0131 taraf\u0131ndan eri\u015filen izleyiciler hakk\u0131nda reklam verenlere veya temsilcilerine toplu duruma getirilmi\u015f raporlar sa\u011flamak.\r\n\u25cf\tPanel temelli veya benzer \u015fekilde elde edilen g\u00f6r\u00fc\u015fleri uygulayarak yay\u0131nc\u0131lara onlar\u0131n m\u00fclklerinde kendilerine i\u00e7erik ve/veya reklamlar sunulmu\u015f veya onlar ile etkile\u015fimde bulunmu\u015f olan izleyiciler hakk\u0131nda toplu duruma getirilmi\u015f raporlar sa\u011flamak.\r\n\u25cf\tSat\u0131c\u0131lar \u00e7evrimd\u0131\u015f\u0131 veri kaynaklar\u0131n\u0131 e\u015fle\u015ftirmeyi ve birle\u015ftirmeyi beyan etti\u011fi takdirde pazar ara\u015ft\u0131rmas\u0131 ama\u00e7lar\u0131 i\u00e7in izleyici g\u00f6r\u00fc\u015fleri \u00fcretmek \u00fczere \u00e7evrimd\u0131\u015f\u0131 verileri \u00e7evrimi\u00e7i bir kullan\u0131c\u0131 ile ili\u015fkilendirmek\r\n\u25cf\tBu bilgileri web sitelerinden ve uygulamalardan dahil daha \u00f6nce toplanm\u0131\u015f ba\u015fka bilgiler ile birle\u015ftirmek\r\nSat\u0131c\u0131lar \u015funlar\u0131 yapamaz:\r\n \u25cf\tReklam performans\u0131n\u0131 \u00f6l\u00e7mek i\u00e7in, ayr\u0131 bir yasal temel olmadan, belli bir kullan\u0131c\u0131ya sunulan veya onun etkile\u015fimde bulundu\u011fu reklamlar\u0131n etki d\u00fczeyini ve performans\u0131n\u0131 \u00f6l\u00e7mek.\r\n \u25cf\t\u0130\u00e7erik performans\u0131n\u0131 \u00f6l\u00e7mek i\u00e7in, ayr\u0131 bir yasal temel olmadan, belli bir kullan\u0131c\u0131ya hangi i\u00e7eri\u011fini sunuldu\u011funu ve kendisinin onunla nas\u0131l etkile\u015fimde bulundu\u011funu \u00f6l\u00e7mek.\r"},"10":{"id":10,"name":"\u00dcr\u00fcnler geli\u015ftirmek ve iyile\u015ftirmek","description":"Verileriniz mevcut sistemleri ve yaz\u0131l\u0131mlar\u0131 iyile\u015ftirmek ve yeni \u00fcr\u00fcnler geli\u015ftirmek i\u00e7in kullan\u0131labilir.","descriptionLegal":"Sat\u0131c\u0131lar yeni \u00fcr\u00fcnler geli\u015ftirmek ve \u00fcr\u00fcnleri iyile\u015ftirmek i\u00e7in \u015funlar\u0131 yapabilir:\r\n\u25cf\tMevcut \u00fcr\u00fcnlerini yeni \u00f6zellikler ile iyile\u015ftirmek ve yeni \u00fcr\u00fcnler geli\u015ftirmek i\u00e7in bilgileri kullanmak\r\n\u25cf\tMakine \u00f6\u011frenmesi vas\u0131tas\u0131 ile yeni modeller ve algoritmalar yaratmak Sat\u0131c\u0131lar \u015funlar\u0131 yapamaz:\r\n\u25cf\tBu ama\u00e7 kapsam\u0131ndaki ba\u015fka bir ama\u00e7 kapsam\u0131nda izin verilen ba\u015fka bir veri i\u015fleme faaliyeti y\u00fcr\u00fctmek\r"}},"specialPurposes":{"1":{"id":1,"name":"G\u00fcvenlik sa\u011flamak, yolsuzlu\u011fu \u00f6nlemek ve hata ay\u0131klamak","description":"G\u00fcvenlik sa\u011flamak, yolsuzlu\u011fu \u00f6nlemek ve hata ay\u0131klamak","descriptionLegal":"Sat\u0131c\u0131lar g\u00fcvenlik sa\u011flamak, yolsuzlu\u011fu \u00f6nlemek ve hata ay\u0131klamak i\u00e7in \u015funlar\u0131 yapabilir:\r\n\u25cf\tVerilerin g\u00fcvenli \u015fekilde iletilmesini sa\u011flamak\r\n\u25cf\tZararl\u0131, hileli, ge\u00e7ersiz veya yasad\u0131\u015f\u0131 faaliyeti belirlemek ve \u00f6nlemek.\r\n\u25cf\t\u0130zin verilen ama\u00e7larda kullan\u0131lan sistemlerin ve s\u00fcre\u00e7lerin performans\u0131n\u0131 izlemek ve iyile\u015ftirmek dahil olmak \u00fczere sistemlerin ve s\u00fcre\u00e7lerin do\u011fru ve verimli \u00e7al\u0131\u015fmas\u0131n\u0131 sa\u011flamak\r\nSat\u0131c\u0131lar \u015funlar\u0131 yapamaz:\r\n\u25cf\tBu ama\u00e7 kapsam\u0131ndaki ba\u015fka bir ama\u00e7 kapsam\u0131nda izin verilen ba\u015fka bir veri i\u015fleme faaliyeti y\u00fcr\u00fctmek.\r\n\r\nNot: G\u00fcvenlik sa\u011flamak, yolsuzlu\u011fu \u00f6nlemek ve hata ay\u0131klamak i\u00e7in toplanan ve kullan\u0131lan veriler \u015funlar\u0131 i\u00e7erebilir: ayr\u0131 bir a\u00e7\u0131klama veya tercih etme gere\u011fi olmaks\u0131z\u0131n belirleme i\u00e7in otomatik \u015fekilde g\u00f6nderilen cihaz \u00f6zellikleri, kesin olmayan co\u011frafi konum verileri ve belirleme i\u00e7in cihaz \u00f6zelliklerini aktif \u015fekilde tarayarak elde edilen veriler.\r\n"},"2":{"id":2,"name":"Teknik olarak reklamlar veya i\u00e7erik sa\u011flamak","description":"Cihaz\u0131n\u0131z, reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rmenizi ve onlar ile etkile\u015fimde bulunman\u0131z\u0131 sa\u011flayan bilgiler alabilir ve g\u00f6nderebilir.","descriptionLegal":"Sat\u0131c\u0131lar bilgi sa\u011flamak ve teknik taleplere yan\u0131t vermek i\u00e7in \u015funlar\u0131 yapabilir:\r\n\u25cf\t\u0130nternet \u00fczerinden bir reklam sa\u011flamak i\u00e7in bir kullan\u0131c\u0131n\u0131n IP adresini kullanmak\r\n\u25cf\tBir kullan\u0131c\u0131n\u0131n bir reklam ile etkile\u015fimine kullan\u0131c\u0131y\u0131 bir giri\u015f sayfas\u0131na g\u00f6ndererek yan\u0131t vermek\r\n\u25cf\t\u0130nternet \u00fczerinden i\u00e7erik sa\u011flamak i\u00e7in bir kullan\u0131c\u0131n\u0131n IP adresini kullanmak\r\n\u25cf\tBir kullan\u0131c\u0131n\u0131n i\u00e7erik ile etkile\u015fimine kullan\u0131c\u0131y\u0131 bir giri\u015f sayfas\u0131na g\u00f6ndererek yan\u0131t vermek\r\n\u25cf\t\u00d6rne\u011fin cihaz taraf\u0131ndan desteklenen bir bi\u00e7im i\u00e7inde do\u011fru boyutta reklam kreatifi veya video dosyas\u0131 gibi reklamlar veya i\u00e7erik sa\u011flamak i\u00e7in cihaz t\u00fcr\u00fc ve yetenekleri hakk\u0131ndaki bilgileri kullanmak\r\nSat\u0131c\u0131lar \u015funlar\u0131 yapamaz:\r\n\u25cf\tBu ama\u00e7 kapsam\u0131ndaki ba\u015fka bir ama\u00e7 kapsam\u0131nda izin verilen ba\u015fka bir veri i\u015fleme faaliyeti y\u00fcr\u00fctmek\r"}},"features":{"1":{"id":1,"name":"\u00c7evrimd\u0131\u015f\u0131 veri kaynaklar\u0131n\u0131 e\u015fle\u015ftirmek ve birle\u015ftirmek","description":"Bir veya daha \u00e7ok amac\u0131 desteklemek \u00fczere, \u00e7evrimd\u0131\u015f\u0131 veri kaynaklar\u0131ndan gelen veriler sizin \u00e7evrimi\u00e7i faaliyetiniz ile birle\u015ftirilebilir.","descriptionLegal":"Sat\u0131c\u0131lar \u015funlar\u0131 yapabilir:\r\n\u25cf\tBir veya daha \u00e7ok Amac\u0131 veya \u00d6zel Amac\u0131 desteklemek \u00fczere, \u00e7evrimd\u0131\u015f\u0131 olarak elde edilen verileri \u00e7evrimi\u00e7i olarak toplanan veriler ile birle\u015ftirmek.\r"},"2":{"id":2,"name":"Farkl\u0131 cihazlar aras\u0131nda ba\u011flant\u0131 kurmak","description":"Bir veya daha \u00e7ok amac\u0131 desteklemek \u00fczere, farkl\u0131 cihazlar\u0131n size veya meskeninize ait oldu\u011fu belirlenebilir.","descriptionLegal":"Sat\u0131c\u0131lar \u015funlar\u0131 yapabilir:\r\n\u25cf\t\u0130ki veya daha \u00e7ok cihaz\u0131n ayn\u0131 ki\u015fiye veya meskene ait oldu\u011funu belirleyici \u015fekilde belirlemek\r\n\u25cf\t\u0130ki veya daha \u00e7ok cihaz\u0131n ayn\u0131 ki\u015fiye veya meskene ait oldu\u011funu olas\u0131l\u0131\u011fa dayal\u0131 \u015fekilde belirlemek\r\n\u25cf\tKullan\u0131c\u0131lar sat\u0131c\u0131lara belirleme amac\u0131 ile cihaz \u00f6zelliklerini aktif \u015fekilde tarama izni vermi\u015f ise olas\u0131l\u0131\u011fa dayal\u0131 belirleme amac\u0131 ile belirleme yapmak i\u00e7in cihaz \u00f6zelliklerini aktif \u015fekilde taramak (\u00d6zel \u00d6zellik 2)\r\nBir veya daha \u00e7ok amac\u0131 desteklemek \u00fczere, farkl\u0131 cihazlar\u0131n size veya meskeninize ait oldu\u011fu belirlenebilir.\r"},"3":{"id":3,"name":"Belirleme amac\u0131 ile, otomatik \u015fekilde g\u00f6nderilen cihaz \u00f6zelliklerini almak ve kullanmak","description":"Cihaz\u0131n\u0131z, IP adresi veya taray\u0131c\u0131 t\u00fcr\u00fc gibi otomatik \u015fekilde g\u00f6nderdi\u011fi bilgiler temelinde ba\u015fka cihazlardan ay\u0131rt edilebilir.","descriptionLegal":"Sat\u0131c\u0131lar \u015funlar\u0131 yapabilir:\r\n \u25cf\t\u00d6zg\u00fcn \u00f6zellikler i\u00e7in bir cihazdan otomatik \u015fekilde toplanan verileri kullanarak \u00f6rne\u011fin IP adresi, kullan\u0131c\u0131-arac\u0131 dizisi gibi bir belirleyici olu\u015fturmak.\r\n \u25cf\tS\u00f6z konusu bir belirleyiciyi bir cihaz\u0131 tekrar belirlemeye \u00e7al\u0131\u015fmak i\u00e7in kullanmak.\r\nSat\u0131c\u0131lar \u015funlar\u0131 yapamaz:\r\n\u25cf\tBelirleme amac\u0131 ile \u00f6zg\u00fcn cihaz \u00f6zelliklerini aktif \u015fekilde taramak i\u00e7in kullan\u0131c\u0131lar\u0131n ayr\u0131ca tercih belirtmesine gerek olmaks\u0131z\u0131n, \u00f6zg\u00fcn \u00f6zellikler i\u00e7in bir cihaz\u0131 aktif \u015fekilde tarayarak toplanan verileri kullanarak \u00f6rne\u011fin kurulmu\u015f yaz\u0131tipi veya ekran \u00e7\u00f6z\u00fcn\u00fcrl\u00fc\u011f\u00fc gibi bir belirleyici olu\u015fturmak.\r\n \u25cf\tS\u00f6z konusu bir belirleyiciyi bir cihaz\u0131 tekrar belirlemek i\u00e7in kullanmak.\r"}},"specialFeatures":{"1":{"id":1,"name":"Kesin co\u011frafi konum verilerini kullanmak","description":"Kesin co\u011frafi konum verileriniz bir veya daha \u00e7ok amac\u0131 desteklemek \u00fczere kullan\u0131labilir. Yani konumunuz birka\u00e7 metre dahiline kadar do\u011fru olabilir.","descriptionLegal":"Sat\u0131c\u0131lar \u015funlar\u0131 yapabilir:\r\n\u25cf\tBir veya daha \u00e7ok amac\u0131 desteklemek \u00fczere kesin co\u011frafi konum verilerini toplanmak ve kullanmak.\r\nNot. Kesin co\u011frafi konum, bir kullan\u0131c\u0131n\u0131n konumunun kesinli\u011fi \u00fczerinde bir s\u0131n\u0131rland\u0131rma olmamas\u0131 demektir; bu, birka\u00e7 metre dahiline kadar do\u011fru olabilir.\r"},"2":{"id":2,"name":"Belirleme amac\u0131 ile cihaz \u00f6zelliklerini aktif \u015fekilde taramak","description":"Cihaz\u0131n\u0131z\u0131n \u00f6zg\u00fcn \u00f6zellik bile\u015fiminin taramas\u0131 temelinde cihaz\u0131n\u0131z belirlenebilir.","descriptionLegal":"Sat\u0131c\u0131lar \u015funlar\u0131 yapabilir:\r\n\u25cf\t\u00d6zg\u00fcn \u00f6zellikler i\u00e7in bir cihaz\u0131 aktif \u015fekilde tarayarak toplanan verileri kullanarak \u00f6rne\u011fin kurulmu\u015f yaz\u0131tipi veya ekran \u00e7\u00f6z\u00fcn\u00fcrl\u00fc\u011f\u00fc gibi bir belirleyici olu\u015fturmak.\r\n \u25cf\tS\u00f6z konusu bir belirleyiciyi bir cihaz\u0131 tekrar belirlemek i\u00e7in kullanmak.\r"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Kesin co\u011frafi konum verileri ve cihaz tarama vas\u0131tas\u0131 ile kimlik belirleme","description":"Kesin co\u011frafi konum ve cihaz \u00f6zellikleri hakk\u0131ndaki bilgiler kullan\u0131labilir."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Temel reklamlar ve reklam \u00f6l\u00e7\u00fcm\u00fc","description":"Temel reklamlar sunulabilir. Reklam performans\u0131 \u00f6l\u00e7\u00fclebilir."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f reklamlar","description":"Reklamlar bir profil temelinde ki\u015fiselle\u015ftirilebilir. Reklamlar\u0131 daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Temel reklamlar ve reklam \u00f6l\u00e7\u00fcm\u00fc","description":"Temel reklamlar sunulabilir. Reklam performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Temel reklamlar, ki\u015fiselle\u015ftirilmi\u015f reklamlar profili ve reklam \u00f6l\u00e7\u00fcm\u00fc","description":"Temel reklamlar sunulabilir. Reklamlar\u0131 daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. Reklam performans\u0131 \u00f6l\u00e7\u00fclebilir."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f reklamlar g\u00f6sterilmesi ve reklam \u00f6l\u00e7\u00fcm\u00fc","description":"Reklamlar bir profil temelinde ki\u015fiselle\u015ftirilebilir. Reklam performans\u0131 \u00f6l\u00e7\u00fclebilir."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f reklamlar g\u00f6sterilmesi, reklam \u00f6l\u00e7\u00fcm\u00fc ve izleyici g\u00f6r\u00fc\u015fleri","description":"Reklamlar bir profil temelinde ki\u015fiselle\u015ftirilebilir. Reklam performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f reklamlar ve reklam \u00f6l\u00e7\u00fcm\u00fc","description":"Reklamlar bir profil temelinde ki\u015fiselle\u015ftirilebilir. Reklamlar\u0131 daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. Reklam performans\u0131 \u00f6l\u00e7\u00fclebilir."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f reklamlar, reklam \u00f6l\u00e7\u00fcm\u00fc ve izleyici g\u00f6r\u00fc\u015fleri","description":"Reklamlar bir profil temelinde ki\u015fiselle\u015ftirilebilir. Reklamlar\u0131 daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. Reklam performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f reklamlar profili ve g\u00f6sterilmesi","description":"Reklamlar bir profil temelinde ki\u015fiselle\u015ftirilebilir. Reklamlar\u0131 daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik","description":"\u0130\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. \u0130\u00e7eri\u011fi daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik g\u00f6sterilmesi ve i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc","description":"\u0130\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. \u0130\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik g\u00f6sterilmesi, i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc ve izleyici g\u00f6r\u00fc\u015fleri","description":"\u0130\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. \u0130\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik ve i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc","description":"\u0130\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. \u0130\u00e7eri\u011fi daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. \u0130\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik, i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc ve izleyici g\u00f6r\u00fc\u015fleri","description":"\u0130\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. \u0130\u00e7eri\u011fi daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. \u0130\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik, i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc, izleyici g\u00f6r\u00fc\u015fleri ve \u00fcr\u00fcn geli\u015ftirme","description":"\u0130\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. \u0130\u00e7eri\u011fi daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. \u0130\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir. Kullan\u0131c\u0131 deneyimi, sistemler ve yaz\u0131l\u0131mlar olu\u015fturmak veya iyile\u015ftirmek i\u00e7in veriler kullan\u0131labilir."},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Reklam ve i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc ve izleyici g\u00f6r\u00fc\u015fleri","description":"Reklam ve i\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Reklam ve i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc","description":"Reklam ve i\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Reklam \u00f6l\u00e7\u00fcm\u00fc ve izleyici g\u00f6r\u00fc\u015fleri","description":"Reklam \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Reklam ve i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc, izleyici g\u00f6r\u00fc\u015fleri ve \u00fcr\u00fcn geli\u015ftirme","description":"Reklam ve i\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir. Kullan\u0131c\u0131 deneyimi, sistemler ve yaz\u0131l\u0131mlar olu\u015fturmak veya iyile\u015ftirmek i\u00e7in veriler kullan\u0131labilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"\u0130\u00e7erik \u00f6l\u00e7\u00fcm\u00fc, izleyici g\u00f6r\u00fc\u015fleri ve \u00fcr\u00fcn geli\u015ftirme","description":"\u0130\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir. Kullan\u0131c\u0131 deneyimi, sistemler ve yaz\u0131l\u0131mlar olu\u015fturmak veya iyile\u015ftirmek i\u00e7in veriler kullan\u0131labilir."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"\u0130\u00e7erik \u00f6l\u00e7\u00fcm\u00fc ve \u00fcr\u00fcn geli\u015ftirme","description":"\u0130\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir. Kullan\u0131c\u0131 deneyimi, sistemler ve yaz\u0131l\u0131mlar olu\u015fturmak veya iyile\u015ftirmek i\u00e7in veriler kullan\u0131labilir."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f reklamlar ve i\u00e7erik g\u00f6sterilmesi, reklam ve i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc","description":"Reklamlar ve i\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. Reklam ve i\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f reklamlar ve i\u00e7erik g\u00f6sterilmesi, reklam ve i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc ve izleyici g\u00f6r\u00fc\u015fleri","description":"Reklamlar ve i\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. Reklam ve i\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir. Kullan\u0131c\u0131 deneyimi, sistemler ve yaz\u0131l\u0131mlar olu\u015fturmak veya iyile\u015ftirmek i\u00e7in veriler kullan\u0131labilir."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f reklamlar ve i\u00e7erik, reklam ve i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc","description":"Reklamlar ve i\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. Reklam ve i\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f reklamlar ve i\u00e7erik, reklam ve i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc ve izleyici g\u00f6r\u00fc\u015fleri","description":"Reklamlar ve i\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. Reklam ve i\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f reklamlar ve i\u00e7erik profili","description":"Reklamlar\u0131 ve i\u00e7eri\u011fi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f reklamlar ve i\u00e7erik g\u00f6sterilmesi","description":"Reklamlar ve i\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Temel reklamlar, reklam ve i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc ve izleyici g\u00f6r\u00fc\u015fleri","description":"Temel reklamlar sunulabilir. Reklam ve i\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f reklamlar g\u00f6sterilmesi, ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik, reklam ve i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc ve izleyici g\u00f6r\u00fc\u015fleri","description":"Reklamlar ve i\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. \u0130\u00e7eri\u011fi daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. Reklam ve i\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f reklamlar g\u00f6sterilmesi, ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik, reklam ve i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc, izleyici g\u00f6r\u00fc\u015fleri ve \u00fcr\u00fcn geli\u015ftirme","description":"Reklamlar ve i\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. \u0130\u00e7eri\u011fi daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. Reklam ve i\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir. Kullan\u0131c\u0131 deneyimi, sistemler ve yaz\u0131l\u0131mlar olu\u015fturmak veya iyile\u015ftirmek i\u00e7in veriler kullan\u0131labilir."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Temel reklamlar, ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik, reklam ve i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc ve izleyici g\u00f6r\u00fc\u015fleri","description":"Temel reklamlar sunulabilir. \u0130\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. \u0130\u00e7eri\u011fi daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. Reklam ve i\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Temel reklamlar, ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik, reklam ve i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc, izleyici g\u00f6r\u00fc\u015fleri ve \u00fcr\u00fcn geli\u015ftirme","description":"Temel reklamlar sunulabilir. \u0130\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. \u0130\u00e7eri\u011fi daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. Reklam ve i\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir. Kullan\u0131c\u0131 deneyimi, sistemler ve yaz\u0131l\u0131mlar olu\u015fturmak veya iyile\u015ftirmek i\u00e7in veriler kullan\u0131labilir."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Temel reklamlar, ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik, i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc ve izleyici g\u00f6r\u00fc\u015fleri","description":"Temel reklamlar sunulabilir. \u0130\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. \u0130\u00e7eri\u011fi daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. Reklam ve i\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Temel reklamlar, ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik, i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc, izleyici g\u00f6r\u00fc\u015fleri ve \u00fcr\u00fcn geli\u015ftirme","description":"Temel reklamlar sunulabilir. \u0130\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. \u0130\u00e7eri\u011fi daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. \u0130\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir. Kullan\u0131c\u0131 deneyimi, sistemler ve yaz\u0131l\u0131mlar olu\u015fturmak veya iyile\u015ftirmek i\u00e7in veriler kullan\u0131labilir."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Temel reklamlar, ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik ve reklam \u00f6l\u00e7\u00fcm\u00fc","description":"Temel reklamlar sunulabilir. \u0130\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. \u0130\u00e7eri\u011fi daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. Reklam performans\u0131 \u00f6l\u00e7\u00fclebilir."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Temel reklamlar, ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik, reklam \u00f6l\u00e7\u00fcm\u00fc ve \u00fcr\u00fcn geli\u015ftirme","description":"Temel reklamlar sunulabilir. \u0130\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. \u0130\u00e7eri\u011fi daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. Reklam performans\u0131 \u00f6l\u00e7\u00fclebilir. Kullan\u0131c\u0131 deneyimi, sistemler ve yaz\u0131l\u0131mlar olu\u015fturmak veya iyile\u015ftirmek i\u00e7in veriler kullan\u0131labilir."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f reklamlar, reklam \u00f6l\u00e7\u00fcm\u00fc ve \u00fcr\u00fcn geli\u015ftirme","description":"Reklamlar bir profil temelinde ki\u015fiselle\u015ftirilebilir. Reklamlar\u0131 daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. Reklam performans\u0131 \u00f6l\u00e7\u00fclebilir. Kullan\u0131c\u0131 deneyimi, sistemler ve yaz\u0131l\u0131mlar olu\u015fturmak veya iyile\u015ftirmek i\u00e7in veriler kullan\u0131labilir."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f reklamlar, reklam \u00f6l\u00e7\u00fcm\u00fc, izleyici g\u00f6r\u00fc\u015fleri ve \u00fcr\u00fcn geli\u015ftirme","description":"Reklamlar bir profil temelinde ki\u015fiselle\u015ftirilebilir. Reklamlar\u0131 daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. Reklam performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir. Kullan\u0131c\u0131 deneyimi, sistemler ve yaz\u0131l\u0131m olu\u015fturmak veya iyile\u015ftirmek i\u00e7in veriler kullan\u0131labilir."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f reklam ve reklam \u00f6l\u00e7\u00fcm\u00fc, izleyici g\u00f6r\u00fc\u015fleri ve \u00fcr\u00fcn geli\u015ftirme","description":"Reklamlar bir profil temelinde ki\u015fiselle\u015ftirilebilir. Reklamlar\u0131 daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. Reklam ve i\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir. Kullan\u0131c\u0131 deneyimi, sistemler ve yaz\u0131l\u0131m olu\u015fturmak veya iyile\u015ftirmek i\u00e7in veriler kullan\u0131labilir."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f reklamlar, ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik g\u00f6sterilmesi, reklam ve i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc, izleyici g\u00f6r\u00fc\u015fleri ve \u00fcr\u00fcn geli\u015ftirme","description":"Reklamlar ve i\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. Reklamlar\u0131 daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. Reklam ve i\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir. Kullan\u0131c\u0131 deneyimi, sistemler ve yaz\u0131l\u0131m olu\u015fturmak veya iyile\u015ftirmek i\u00e7in veriler kullan\u0131labilir."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f reklamlar ve i\u00e7erik, reklam ve i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc, izleyici g\u00f6r\u00fc\u015fleri ve \u00fcr\u00fcn geli\u015ftirme","description":"Reklamlar ve i\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. Reklam ve i\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir. Kullan\u0131c\u0131 deneyimi, sistemler ve yaz\u0131l\u0131m olu\u015fturmak veya iyile\u015ftirmek i\u00e7in veriler kullan\u0131labilir."}}} \ No newline at end of file +{"vendorListVersion":94,"lastUpdated":"2021-06-10T16:44:07Z","purposes":{"1":{"id":1,"name":"Bilgileri bir cihazda depolamak ve/veya onlara cihazdan eri\u015fmek","description":"Size sunulan ama\u00e7lar i\u00e7in \u00e7erezler, cihaz belirleyiciler veya ba\u015fka bilgiler cihaz\u0131n\u0131zda depolanabilir ve onlara cihazdan eri\u015filebilir.","descriptionLegal":"Sat\u0131c\u0131lar \u015funlar\u0131 yapabilir:\r\n\u25cf\tBir kullan\u0131c\u0131ya sunulan ama\u00e7lar i\u00e7in \u00e7erezler ve cihaz belirleyiciler gibi bilgileri cihazda depolamak ve onlara cihazdan eri\u015fmek.\r"},"2":{"id":2,"name":"Temel reklamlar\u0131 se\u00e7mek","description":"G\u00f6r\u00fcnt\u00fclemekte oldu\u011funuz i\u00e7erik, kullanmakta oldu\u011funuz uygulama, yakla\u015f\u0131k konumunuz veya cihaz t\u00fcr\u00fcn\u00fcz temelinde size reklamlar g\u00f6sterilebilir.","descriptionLegal":"Sat\u0131c\u0131lar temel reklamlar\u0131n se\u00e7mek i\u00e7in \u015funlar\u0131 yapabilir:\r\n\u25cf\tReklam\u0131 g\u00f6stermek i\u00e7in, cihaz t\u00fcr\u00fc ve yetenekleri, kullan\u0131c\u0131 arac\u0131s\u0131, URL, IP adresi dahil olmak \u00fczere i\u00e7erik ve cihaz hakk\u0131ndaki bilgiler dahil olmak \u00fczere reklam\u0131n g\u00f6sterilece\u011fi kapsam hakk\u0131ndaki ger\u00e7ek zamanl\u0131 bilgileri okumak\r\n\u25cf\tBir kullan\u0131c\u0131n\u0131n kesin olmayan co\u011frafi konum verilerini kullanmak\r\n\u25cf\tBir kullan\u0131c\u0131ya g\u00f6sterilen reklamlar\u0131n s\u0131kl\u0131\u011f\u0131n\u0131 kontrol etmek.\r\n\u25cf\tReklamlar\u0131n bir kullan\u0131c\u0131ya g\u00f6sterilme s\u0131ras\u0131n\u0131 d\u00fczenlemek.\r\n\u25cf\tBir reklam\u0131n uygunsuz bir editoryal (marka bak\u0131m\u0131ndan g\u00fcvensiz) ba\u011flamda sunulmas\u0131n\u0131 engellemek\r\nSat\u0131c\u0131lar \u015funlar\u0131 yapamaz:\r\n\u25cf\tKi\u015fiselle\u015ftirilmi\u015f bir reklam profili olu\u015fturmak i\u00e7in, ayr\u0131 bir yasal temel olmadan, ilerideki reklamlar\u0131n se\u00e7ilmesi i\u00e7in bu bilgileri kullanarak ki\u015fiselle\u015ftirilmi\u015f bir reklam profili olu\u015fturmak.\r\nNot: Kesin olmayan demek, en az 500 metrelik bir \u00e7ap i\u00e7ermesine izin verilen \u015fekilde yaln\u0131zca yakla\u015f\u0131k bir konum demektir.\r"},"3":{"id":3,"name":"Ki\u015fiselle\u015ftirilmi\u015f bir reklam profili olu\u015fturmak","description":"Sizin ile ilgili olan ki\u015fiselle\u015ftirilmi\u015f reklamlar g\u00f6stermek i\u00e7in siz ve ilgi alanlar\u0131n\u0131z hakk\u0131nda bir profil olu\u015fturulabilir.","descriptionLegal":"Sat\u0131c\u0131lar ki\u015fiselle\u015ftirilmi\u015f bir reklam profili olu\u015fturmak i\u00e7in \u015funlar\u0131 yapabilir:\r\n \u25cf\tKi\u015fiselle\u015ftirilmi\u015f reklamc\u0131l\u0131kta kullan\u0131lmak \u00fczere bir kullan\u0131c\u0131 profili olu\u015fturmak veya d\u00fczenlemek i\u00e7in bir kullan\u0131c\u0131n\u0131n faaliyetleri, ilgi alanlar\u0131, sitelere ziyaretleri veya uygulamalar\u0131, demografik bilgileri veya konumu dahil olmak \u00fczere bir kullan\u0131c\u0131 hakk\u0131nda bilgiler toplamak.\r\n \u25cf\tKi\u015fiselle\u015ftirilmi\u015f reklamc\u0131l\u0131kta kullan\u0131lmak \u00fczere bir kullan\u0131c\u0131 profili olu\u015fturmak veya d\u00fczenlemek i\u00e7in bu bilgileri web sitelerinden ve uygulamalardan dahil daha \u00f6nce toplanm\u0131\u015f ba\u015fka bilgiler ile birle\u015ftirmek.\r"},"4":{"id":4,"name":"Ki\u015fiselle\u015ftirilmi\u015f reklamlar se\u00e7mek","description":"Hakk\u0131n\u0131zdaki bir profil temelinde size ki\u015fiselle\u015ftirilmi\u015f reklamlar g\u00f6sterilebilir.","descriptionLegal":"Sat\u0131c\u0131lar ki\u015fiselle\u015ftirilmi\u015f reklamlar se\u00e7mek i\u00e7in \u015funlar\u0131 yapabilir:\r\n\u25cf\t\u00d6nceki faaliyetler, ilgi alanlar\u0131, sitelere ziyaretler veya uygulamalar, konum veya demografik bilgiler dahil olmak \u00fczere kullan\u0131c\u0131 profili veya ba\u015fka ge\u00e7mi\u015f kullan\u0131c\u0131 verileri temelinde ki\u015fiselle\u015ftirilmi\u015f reklamlar se\u00e7mek.\r"},"5":{"id":5,"name":"Ki\u015fiselle\u015ftirilmi\u015f bir i\u00e7erik profili olu\u015fturmak","description":"Sizin ile ilgili olan ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik g\u00f6stermek i\u00e7in siz ve ilgi alanlar\u0131n\u0131z hakk\u0131nda bir profil olu\u015fturulabilir.","descriptionLegal":"Sat\u0131c\u0131lar ki\u015fiselle\u015ftirilmi\u015f bir i\u00e7erik profili olu\u015fturmak i\u00e7in \u015funlar\u0131 yapabilir:\r\n\u25cf\t\u0130\u00e7eri\u011fi ki\u015fiselle\u015ftirmek \u00fczere bir kullan\u0131c\u0131 profili olu\u015fturmak veya d\u00fczenlemek i\u00e7in bir kullan\u0131c\u0131n\u0131n faaliyetleri, ilgi alanlar\u0131, sitelere ziyaretleri veya uygulamalar\u0131, demografik bilgileri veya konumu dahil olmak \u00fczere bir kullan\u0131c\u0131 hakk\u0131nda bilgiler toplamak.\r\n \u25cf\t\u0130\u00e7eri\u011fi ki\u015fiselle\u015ftirmekte kullan\u0131lmak \u00fczere bir kullan\u0131c\u0131 profili olu\u015fturmak veya d\u00fczenlemek i\u00e7in bu bilgileri web sitelerinden ve uygulamalardan dahil daha \u00f6nce toplanm\u0131\u015f ba\u015fka bilgiler ile birle\u015ftirmek.\r"},"6":{"id":6,"name":"Ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik se\u00e7mek","description":"Hakk\u0131n\u0131zdaki bir profil temelinde size ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik g\u00f6sterilebilir.","descriptionLegal":"Sat\u0131c\u0131lar ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik se\u00e7mek i\u00e7in \u015funlar\u0131 yapabilir:\r\n\u25cf\t\u00d6nceki faaliyetler, ilgi alanlar\u0131, sitelere ziyaretler veya uygulamalar, konum veya demografik bilgiler dahil olmak \u00fczere kullan\u0131c\u0131 profili veya ba\u015fka ge\u00e7mi\u015f kullan\u0131c\u0131 verileri temelinde ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik se\u00e7mek.\r"},"7":{"id":7,"name":"Reklam performans\u0131n\u0131 \u00f6l\u00e7mek","description":"G\u00f6rd\u00fc\u011f\u00fcn\u00fcz veya etkile\u015fimde bulundu\u011funuz reklamlar\u0131n etki d\u00fczeyi ve performans\u0131 \u00f6l\u00e7\u00fclebilir.","descriptionLegal":"Sat\u0131c\u0131lar reklam performans\u0131n\u0131 \u00f6l\u00e7mek i\u00e7in \u015funlar\u0131 yapabilir:\r\n\u25cf\tReklamlar\u0131n bir kullan\u0131c\u0131ya iletilip iletilmedi\u011fini ve nas\u0131l iletildi\u011fini ve nas\u0131l etkile\u015fim yap\u0131ld\u0131\u011f\u0131n\u0131 \u00f6l\u00e7mek\r\n\u25cf\tReklamlar\u0131n etki d\u00fczeyi ve performans\u0131 dahil reklamlar hakk\u0131nda raporlar sa\u011flamak\r\n\u25cf\tKullan\u0131c\u0131n\u0131n reklam ile etkile\u015fimi s\u0131ras\u0131nda g\u00f6zlenen verileri kullanarak reklamlar ile etkile\u015fimde bulunan kullan\u0131c\u0131lar hakk\u0131nda rapor sa\u011flamak\r\n\u25cf\tYay\u0131nc\u0131lara, onlar\u0131n m\u00fclklerinde g\u00f6sterilen reklamlar hakk\u0131nda rapor sa\u011flamak\r\n\u25cf\tBir reklam\u0131n uygun bir editoryal ortam (marka bak\u0131m\u0131ndan g\u00fcvenli) ba\u011flam\u0131nda sunulup sunulmad\u0131\u011f\u0131n\u0131 \u00f6l\u00e7mek\r\n\u25cf\tG\u00f6r\u00fclme f\u0131rsat\u0131na sahip olmu\u015f reklam\u0131n y\u00fczdesini ve bu f\u0131rsat\u0131n s\u00fcresini belirlemek\r\n\u25cf\tBu bilgileri web sitelerinden ve uygulamalardan dahil daha \u00f6nce toplanm\u0131\u015f ba\u015fka bilgiler ile birle\u015ftirmek\r\nSat\u0131c\u0131lar \u015funlar\u0131 yapamaz:\r\n\u25cf\t\u0130zleyici g\u00f6r\u00fc\u015fleri \u00fcretmek \u00fczere pazar ara\u015ft\u0131rmas\u0131 uygulamak i\u00e7in, ayr\u0131 bir yasal temel olmadan, panelden veya benzer \u015fekilde elde edilen izleyici g\u00f6r\u00fc\u015flerini reklam \u00f6l\u00e7\u00fcm\u00fc verilerine uygulamak.\r"},"8":{"id":8,"name":"\u0130\u00e7erik performans\u0131n\u0131 \u00f6l\u00e7mek","description":"G\u00f6rd\u00fc\u011f\u00fcn\u00fcz veya etkile\u015fimde bulundu\u011funuz i\u00e7eri\u011fin etki d\u00fczeyi ve performans\u0131 \u00f6l\u00e7\u00fclebilir.","descriptionLegal":"Sat\u0131c\u0131lar i\u00e7erik performans\u0131n\u0131 \u00f6l\u00e7mek i\u00e7in \u015funlar\u0131 yapabilir:\n\u25cf \u0130\u00e7eri\u011fin kullan\u0131c\u0131lara nas\u0131l iletildi\u011fini ve nas\u0131l etkile\u015fim yap\u0131ld\u0131\u011f\u0131n\u0131 \u00f6l\u00e7mek ve rapor etmek.\n\u25cf \u0130\u00e7erik ile etkile\u015fimde bulunan kullan\u0131c\u0131lar hakk\u0131nda do\u011frudan \u00f6l\u00e7\u00fclebilir olan veya bilinen bilgileri kullanarak rapor sa\u011flamak.\n\u25cf Bu bilgileri web sitelerinden ve uygulamalardan dahil daha \u00f6nce toplanm\u0131\u015f ba\u015fka bilgiler ile birle\u015ftirmek.\nSat\u0131c\u0131lar \u015funlar\u0131 yapamaz:\n\u25cf Reklamlar\u0131n (yerel reklamlar dahil) bir kullan\u0131c\u0131ya iletilip iletilmedi\u011fini ve nas\u0131l iletildi\u011fini ve nas\u0131l etkile\u015fim yap\u0131ld\u0131\u011f\u0131n\u0131 ayr\u0131 bir yasal temel olmadan \u00f6l\u00e7mek.\n\u25cf \u0130zleyici g\u00f6r\u00fc\u015fleri \u00fcretmek \u00fczere pazar ara\u015ft\u0131rmas\u0131 uygulamak i\u00e7in, ayr\u0131 yasal temeller olmadan, panelden veya benzer \u015fekilde elde edilen izleyici g\u00f6r\u00fc\u015flerini reklam \u00f6l\u00e7\u00fcm\u00fc verilerine uygulamak.\n"},"9":{"id":9,"name":"\u0130zleyici g\u00f6r\u00fc\u015fleri \u00fcretmek \u00fczere pazar ara\u015ft\u0131rmas\u0131 uygulamak","description":"Pazar ara\u015ft\u0131rmas\u0131, siteleri/uygulamalar\u0131 ziyaret eden ve reklamlar\u0131 g\u00f6ren izleyiciler hakk\u0131nda daha fazla \u015fey \u00f6\u011frenmek i\u00e7in kullan\u0131labilir.","descriptionLegal":"Sat\u0131c\u0131lar izleyici g\u00f6r\u00fc\u015fleri \u00fcretmek \u00fczere pazar ara\u015ft\u0131rmas\u0131 uygulamak i\u00e7in \u015funlar\u0131 yapabilir:\r\n\u25cf\tPanel temelli veya benzer \u015fekilde elde edilen izleyici g\u00f6r\u00fc\u015fleri vas\u0131tas\u0131 ile reklamlar\u0131 taraf\u0131ndan eri\u015filen izleyiciler hakk\u0131nda reklam verenlere veya temsilcilerine toplu duruma getirilmi\u015f raporlar sa\u011flamak.\r\n\u25cf\tPanel temelli veya benzer \u015fekilde elde edilen g\u00f6r\u00fc\u015fleri uygulayarak yay\u0131nc\u0131lara onlar\u0131n m\u00fclklerinde kendilerine i\u00e7erik ve/veya reklamlar sunulmu\u015f veya onlar ile etkile\u015fimde bulunmu\u015f olan izleyiciler hakk\u0131nda toplu duruma getirilmi\u015f raporlar sa\u011flamak.\r\n\u25cf\tSat\u0131c\u0131lar \u00e7evrimd\u0131\u015f\u0131 veri kaynaklar\u0131n\u0131 e\u015fle\u015ftirmeyi ve birle\u015ftirmeyi beyan etti\u011fi takdirde pazar ara\u015ft\u0131rmas\u0131 ama\u00e7lar\u0131 i\u00e7in izleyici g\u00f6r\u00fc\u015fleri \u00fcretmek \u00fczere \u00e7evrimd\u0131\u015f\u0131 verileri \u00e7evrimi\u00e7i bir kullan\u0131c\u0131 ile ili\u015fkilendirmek\r\n\u25cf\tBu bilgileri web sitelerinden ve uygulamalardan dahil daha \u00f6nce toplanm\u0131\u015f ba\u015fka bilgiler ile birle\u015ftirmek\r\nSat\u0131c\u0131lar \u015funlar\u0131 yapamaz:\r\n \u25cf\tReklam performans\u0131n\u0131 \u00f6l\u00e7mek i\u00e7in, ayr\u0131 bir yasal temel olmadan, belli bir kullan\u0131c\u0131ya sunulan veya onun etkile\u015fimde bulundu\u011fu reklamlar\u0131n etki d\u00fczeyini ve performans\u0131n\u0131 \u00f6l\u00e7mek.\r\n \u25cf\t\u0130\u00e7erik performans\u0131n\u0131 \u00f6l\u00e7mek i\u00e7in, ayr\u0131 bir yasal temel olmadan, belli bir kullan\u0131c\u0131ya hangi i\u00e7eri\u011fini sunuldu\u011funu ve kendisinin onunla nas\u0131l etkile\u015fimde bulundu\u011funu \u00f6l\u00e7mek.\r"},"10":{"id":10,"name":"\u00dcr\u00fcnler geli\u015ftirmek ve iyile\u015ftirmek","description":"Verileriniz mevcut sistemleri ve yaz\u0131l\u0131mlar\u0131 iyile\u015ftirmek ve yeni \u00fcr\u00fcnler geli\u015ftirmek i\u00e7in kullan\u0131labilir.","descriptionLegal":"Sat\u0131c\u0131lar yeni \u00fcr\u00fcnler geli\u015ftirmek ve \u00fcr\u00fcnleri iyile\u015ftirmek i\u00e7in \u015funlar\u0131 yapabilir:\n\u25cf Mevcut \u00fcr\u00fcnlerini yeni \u00f6zellikler ile iyile\u015ftirmek ve yeni \u00fcr\u00fcnler geli\u015ftirmek i\u00e7in bilgileri kullanmak\n\u25cf Makine \u00f6\u011frenmesi vas\u0131tas\u0131 ile yeni modeller ve algoritmalar yaratmak Sat\u0131c\u0131lar \u015funlar\u0131 yapamaz:\n\u25cf Bu ama\u00e7 kapsam\u0131ndaki ba\u015fka bir ama\u00e7 kapsam\u0131nda izin verilen ba\u015fka bir veri i\u015fleme faaliyeti y\u00fcr\u00fctmek\n"}},"specialPurposes":{"1":{"id":1,"name":"G\u00fcvenlik sa\u011flamak, yolsuzlu\u011fu \u00f6nlemek ve hata ay\u0131klamak","description":"G\u00fcvenlik sa\u011flamak, yolsuzlu\u011fu \u00f6nlemek ve hata ay\u0131klamak","descriptionLegal":"Sat\u0131c\u0131lar g\u00fcvenlik sa\u011flamak, yolsuzlu\u011fu \u00f6nlemek ve hata ay\u0131klamak i\u00e7in \u015funlar\u0131 yapabilir:\r\n\u25cf\tVerilerin g\u00fcvenli \u015fekilde iletilmesini sa\u011flamak\r\n\u25cf\tZararl\u0131, hileli, ge\u00e7ersiz veya yasad\u0131\u015f\u0131 faaliyeti belirlemek ve \u00f6nlemek.\r\n\u25cf\t\u0130zin verilen ama\u00e7larda kullan\u0131lan sistemlerin ve s\u00fcre\u00e7lerin performans\u0131n\u0131 izlemek ve iyile\u015ftirmek dahil olmak \u00fczere sistemlerin ve s\u00fcre\u00e7lerin do\u011fru ve verimli \u00e7al\u0131\u015fmas\u0131n\u0131 sa\u011flamak\r\nSat\u0131c\u0131lar \u015funlar\u0131 yapamaz:\r\n\u25cf\tBu ama\u00e7 kapsam\u0131ndaki ba\u015fka bir ama\u00e7 kapsam\u0131nda izin verilen ba\u015fka bir veri i\u015fleme faaliyeti y\u00fcr\u00fctmek.\r\n\r\nNot: G\u00fcvenlik sa\u011flamak, yolsuzlu\u011fu \u00f6nlemek ve hata ay\u0131klamak i\u00e7in toplanan ve kullan\u0131lan veriler \u015funlar\u0131 i\u00e7erebilir: ayr\u0131 bir a\u00e7\u0131klama veya tercih etme gere\u011fi olmaks\u0131z\u0131n belirleme i\u00e7in otomatik \u015fekilde g\u00f6nderilen cihaz \u00f6zellikleri, kesin olmayan co\u011frafi konum verileri ve belirleme i\u00e7in cihaz \u00f6zelliklerini aktif \u015fekilde tarayarak elde edilen veriler.\r\n"},"2":{"id":2,"name":"Teknik olarak reklamlar veya i\u00e7erik sa\u011flamak","description":"Cihaz\u0131n\u0131z, reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rmenizi ve onlar ile etkile\u015fimde bulunman\u0131z\u0131 sa\u011flayan bilgiler alabilir ve g\u00f6nderebilir.","descriptionLegal":"Sat\u0131c\u0131lar bilgi sa\u011flamak ve teknik taleplere yan\u0131t vermek i\u00e7in \u015funlar\u0131 yapabilir:\r\n\u25cf\t\u0130nternet \u00fczerinden bir reklam sa\u011flamak i\u00e7in bir kullan\u0131c\u0131n\u0131n IP adresini kullanmak\r\n\u25cf\tBir kullan\u0131c\u0131n\u0131n bir reklam ile etkile\u015fimine kullan\u0131c\u0131y\u0131 bir giri\u015f sayfas\u0131na g\u00f6ndererek yan\u0131t vermek\r\n\u25cf\t\u0130nternet \u00fczerinden i\u00e7erik sa\u011flamak i\u00e7in bir kullan\u0131c\u0131n\u0131n IP adresini kullanmak\r\n\u25cf\tBir kullan\u0131c\u0131n\u0131n i\u00e7erik ile etkile\u015fimine kullan\u0131c\u0131y\u0131 bir giri\u015f sayfas\u0131na g\u00f6ndererek yan\u0131t vermek\r\n\u25cf\t\u00d6rne\u011fin cihaz taraf\u0131ndan desteklenen bir bi\u00e7im i\u00e7inde do\u011fru boyutta reklam kreatifi veya video dosyas\u0131 gibi reklamlar veya i\u00e7erik sa\u011flamak i\u00e7in cihaz t\u00fcr\u00fc ve yetenekleri hakk\u0131ndaki bilgileri kullanmak\r\nSat\u0131c\u0131lar \u015funlar\u0131 yapamaz:\r\n\u25cf\tBu ama\u00e7 kapsam\u0131ndaki ba\u015fka bir ama\u00e7 kapsam\u0131nda izin verilen ba\u015fka bir veri i\u015fleme faaliyeti y\u00fcr\u00fctmek\r"}},"features":{"1":{"id":1,"name":"\u00c7evrimd\u0131\u015f\u0131 veri kaynaklar\u0131n\u0131 e\u015fle\u015ftirmek ve birle\u015ftirmek","description":"Bir veya daha \u00e7ok amac\u0131 desteklemek \u00fczere, \u00e7evrimd\u0131\u015f\u0131 veri kaynaklar\u0131ndan gelen veriler sizin \u00e7evrimi\u00e7i faaliyetiniz ile birle\u015ftirilebilir.","descriptionLegal":"Sat\u0131c\u0131lar \u015funlar\u0131 yapabilir:\r\n\u25cf\tBir veya daha \u00e7ok Amac\u0131 veya \u00d6zel Amac\u0131 desteklemek \u00fczere, \u00e7evrimd\u0131\u015f\u0131 olarak elde edilen verileri \u00e7evrimi\u00e7i olarak toplanan veriler ile birle\u015ftirmek.\r"},"2":{"id":2,"name":"Farkl\u0131 cihazlar aras\u0131nda ba\u011flant\u0131 kurmak","description":"Bir veya daha \u00e7ok amac\u0131 desteklemek \u00fczere, farkl\u0131 cihazlar\u0131n size veya meskeninize ait oldu\u011fu belirlenebilir.","descriptionLegal":"Sat\u0131c\u0131lar \u015funlar\u0131 yapabilir:\r\n\u25cf\t\u0130ki veya daha \u00e7ok cihaz\u0131n ayn\u0131 ki\u015fiye veya meskene ait oldu\u011funu belirleyici \u015fekilde belirlemek\r\n\u25cf\t\u0130ki veya daha \u00e7ok cihaz\u0131n ayn\u0131 ki\u015fiye veya meskene ait oldu\u011funu olas\u0131l\u0131\u011fa dayal\u0131 \u015fekilde belirlemek\r\n\u25cf\tKullan\u0131c\u0131lar sat\u0131c\u0131lara belirleme amac\u0131 ile cihaz \u00f6zelliklerini aktif \u015fekilde tarama izni vermi\u015f ise olas\u0131l\u0131\u011fa dayal\u0131 belirleme amac\u0131 ile belirleme yapmak i\u00e7in cihaz \u00f6zelliklerini aktif \u015fekilde taramak (\u00d6zel \u00d6zellik 2)\r\nBir veya daha \u00e7ok amac\u0131 desteklemek \u00fczere, farkl\u0131 cihazlar\u0131n size veya meskeninize ait oldu\u011fu belirlenebilir.\r"},"3":{"id":3,"name":"Belirleme amac\u0131 ile, otomatik \u015fekilde g\u00f6nderilen cihaz \u00f6zelliklerini almak ve kullanmak","description":"Cihaz\u0131n\u0131z, IP adresi veya taray\u0131c\u0131 t\u00fcr\u00fc gibi otomatik \u015fekilde g\u00f6nderdi\u011fi bilgiler temelinde ba\u015fka cihazlardan ay\u0131rt edilebilir.","descriptionLegal":"Sat\u0131c\u0131lar \u015funlar\u0131 yapabilir:\r\n \u25cf\t\u00d6zg\u00fcn \u00f6zellikler i\u00e7in bir cihazdan otomatik \u015fekilde toplanan verileri kullanarak \u00f6rne\u011fin IP adresi, kullan\u0131c\u0131-arac\u0131 dizisi gibi bir belirleyici olu\u015fturmak.\r\n \u25cf\tS\u00f6z konusu bir belirleyiciyi bir cihaz\u0131 tekrar belirlemeye \u00e7al\u0131\u015fmak i\u00e7in kullanmak.\r\nSat\u0131c\u0131lar \u015funlar\u0131 yapamaz:\r\n\u25cf\tBelirleme amac\u0131 ile \u00f6zg\u00fcn cihaz \u00f6zelliklerini aktif \u015fekilde taramak i\u00e7in kullan\u0131c\u0131lar\u0131n ayr\u0131ca tercih belirtmesine gerek olmaks\u0131z\u0131n, \u00f6zg\u00fcn \u00f6zellikler i\u00e7in bir cihaz\u0131 aktif \u015fekilde tarayarak toplanan verileri kullanarak \u00f6rne\u011fin kurulmu\u015f yaz\u0131tipi veya ekran \u00e7\u00f6z\u00fcn\u00fcrl\u00fc\u011f\u00fc gibi bir belirleyici olu\u015fturmak.\r\n \u25cf\tS\u00f6z konusu bir belirleyiciyi bir cihaz\u0131 tekrar belirlemek i\u00e7in kullanmak.\r"}},"specialFeatures":{"1":{"id":1,"name":"Kesin co\u011frafi konum verilerini kullanmak","description":"Kesin co\u011frafi konum verileriniz bir veya daha \u00e7ok amac\u0131 desteklemek \u00fczere kullan\u0131labilir. Yani konumunuz birka\u00e7 metre dahiline kadar do\u011fru olabilir.","descriptionLegal":"Sat\u0131c\u0131lar \u015funlar\u0131 yapabilir:\r\n\u25cf\tBir veya daha \u00e7ok amac\u0131 desteklemek \u00fczere kesin co\u011frafi konum verilerini toplanmak ve kullanmak.\r\nNot. Kesin co\u011frafi konum, bir kullan\u0131c\u0131n\u0131n konumunun kesinli\u011fi \u00fczerinde bir s\u0131n\u0131rland\u0131rma olmamas\u0131 demektir; bu, birka\u00e7 metre dahiline kadar do\u011fru olabilir.\r"},"2":{"id":2,"name":"Belirleme amac\u0131 ile cihaz \u00f6zelliklerini aktif \u015fekilde taramak","description":"Cihaz\u0131n\u0131z\u0131n \u00f6zg\u00fcn \u00f6zellik bile\u015fiminin taramas\u0131 temelinde cihaz\u0131n\u0131z belirlenebilir.","descriptionLegal":"Sat\u0131c\u0131lar \u015funlar\u0131 yapabilir:\r\n\u25cf\t\u00d6zg\u00fcn \u00f6zellikler i\u00e7in bir cihaz\u0131 aktif \u015fekilde tarayarak toplanan verileri kullanarak \u00f6rne\u011fin kurulmu\u015f yaz\u0131tipi veya ekran \u00e7\u00f6z\u00fcn\u00fcrl\u00fc\u011f\u00fc gibi bir belirleyici olu\u015fturmak.\r\n \u25cf\tS\u00f6z konusu bir belirleyiciyi bir cihaz\u0131 tekrar belirlemek i\u00e7in kullanmak.\r"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Kesin co\u011frafi konum verileri ve cihaz tarama vas\u0131tas\u0131 ile kimlik belirleme","description":"Kesin co\u011frafi konum ve cihaz \u00f6zellikleri hakk\u0131ndaki bilgiler kullan\u0131labilir."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Temel reklamlar ve reklam \u00f6l\u00e7\u00fcm\u00fc","description":"Temel reklamlar sunulabilir. Reklam performans\u0131 \u00f6l\u00e7\u00fclebilir."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f reklamlar","description":"Reklamlar bir profil temelinde ki\u015fiselle\u015ftirilebilir. Reklamlar\u0131 daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Temel reklamlar ve reklam \u00f6l\u00e7\u00fcm\u00fc","description":"Temel reklamlar sunulabilir. Reklam performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Temel reklamlar, ki\u015fiselle\u015ftirilmi\u015f reklamlar profili ve reklam \u00f6l\u00e7\u00fcm\u00fc","description":"Temel reklamlar sunulabilir. Reklamlar\u0131 daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. Reklam performans\u0131 \u00f6l\u00e7\u00fclebilir."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f reklamlar g\u00f6sterilmesi ve reklam \u00f6l\u00e7\u00fcm\u00fc","description":"Reklamlar bir profil temelinde ki\u015fiselle\u015ftirilebilir. Reklam performans\u0131 \u00f6l\u00e7\u00fclebilir."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f reklamlar g\u00f6sterilmesi, reklam \u00f6l\u00e7\u00fcm\u00fc ve izleyici g\u00f6r\u00fc\u015fleri","description":"Reklamlar bir profil temelinde ki\u015fiselle\u015ftirilebilir. Reklam performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f reklamlar ve reklam \u00f6l\u00e7\u00fcm\u00fc","description":"Reklamlar bir profil temelinde ki\u015fiselle\u015ftirilebilir. Reklamlar\u0131 daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. Reklam performans\u0131 \u00f6l\u00e7\u00fclebilir."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f reklamlar, reklam \u00f6l\u00e7\u00fcm\u00fc ve izleyici g\u00f6r\u00fc\u015fleri","description":"Reklamlar bir profil temelinde ki\u015fiselle\u015ftirilebilir. Reklamlar\u0131 daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. Reklam performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f reklamlar profili ve g\u00f6sterilmesi","description":"Reklamlar bir profil temelinde ki\u015fiselle\u015ftirilebilir. Reklamlar\u0131 daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik","description":"\u0130\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. \u0130\u00e7eri\u011fi daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik g\u00f6sterilmesi ve i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc","description":"\u0130\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. \u0130\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik g\u00f6sterilmesi, i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc ve izleyici g\u00f6r\u00fc\u015fleri","description":"\u0130\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. \u0130\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik ve i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc","description":"\u0130\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. \u0130\u00e7eri\u011fi daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. \u0130\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik, i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc ve izleyici g\u00f6r\u00fc\u015fleri","description":"\u0130\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. \u0130\u00e7eri\u011fi daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. \u0130\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik, i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc, izleyici g\u00f6r\u00fc\u015fleri ve \u00fcr\u00fcn geli\u015ftirme","description":"\u0130\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. \u0130\u00e7eri\u011fi daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. \u0130\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir. Kullan\u0131c\u0131 deneyimi, sistemler ve yaz\u0131l\u0131mlar olu\u015fturmak veya iyile\u015ftirmek i\u00e7in veriler kullan\u0131labilir."},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Reklam ve i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc ve izleyici g\u00f6r\u00fc\u015fleri","description":"Reklam ve i\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Reklam ve i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc","description":"Reklam ve i\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Reklam \u00f6l\u00e7\u00fcm\u00fc ve izleyici g\u00f6r\u00fc\u015fleri","description":"Reklam \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Reklam ve i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc, izleyici g\u00f6r\u00fc\u015fleri ve \u00fcr\u00fcn geli\u015ftirme","description":"Reklam ve i\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir. Kullan\u0131c\u0131 deneyimi, sistemler ve yaz\u0131l\u0131mlar olu\u015fturmak veya iyile\u015ftirmek i\u00e7in veriler kullan\u0131labilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"\u0130\u00e7erik \u00f6l\u00e7\u00fcm\u00fc, izleyici g\u00f6r\u00fc\u015fleri ve \u00fcr\u00fcn geli\u015ftirme","description":"\u0130\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir. Kullan\u0131c\u0131 deneyimi, sistemler ve yaz\u0131l\u0131mlar olu\u015fturmak veya iyile\u015ftirmek i\u00e7in veriler kullan\u0131labilir."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"\u0130\u00e7erik \u00f6l\u00e7\u00fcm\u00fc ve \u00fcr\u00fcn geli\u015ftirme","description":"\u0130\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir. Kullan\u0131c\u0131 deneyimi, sistemler ve yaz\u0131l\u0131mlar olu\u015fturmak veya iyile\u015ftirmek i\u00e7in veriler kullan\u0131labilir."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f reklamlar ve i\u00e7erik g\u00f6sterilmesi, reklam ve i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc","description":"Reklamlar ve i\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. Reklam ve i\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f reklamlar ve i\u00e7erik g\u00f6sterilmesi, reklam ve i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc ve izleyici g\u00f6r\u00fc\u015fleri","description":"Reklamlar ve i\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. Reklam ve i\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir. Kullan\u0131c\u0131 deneyimi, sistemler ve yaz\u0131l\u0131mlar olu\u015fturmak veya iyile\u015ftirmek i\u00e7in veriler kullan\u0131labilir."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f reklamlar ve i\u00e7erik, reklam ve i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc","description":"Reklamlar ve i\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. Reklam ve i\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f reklamlar ve i\u00e7erik, reklam ve i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc ve izleyici g\u00f6r\u00fc\u015fleri","description":"Reklamlar ve i\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. Reklam ve i\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f reklamlar ve i\u00e7erik profili","description":"Reklamlar\u0131 ve i\u00e7eri\u011fi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f reklamlar ve i\u00e7erik g\u00f6sterilmesi","description":"Reklamlar ve i\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Temel reklamlar, reklam ve i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc ve izleyici g\u00f6r\u00fc\u015fleri","description":"Temel reklamlar sunulabilir. Reklam ve i\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f reklamlar g\u00f6sterilmesi, ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik, reklam ve i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc ve izleyici g\u00f6r\u00fc\u015fleri","description":"Reklamlar ve i\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. \u0130\u00e7eri\u011fi daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. Reklam ve i\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f reklamlar g\u00f6sterilmesi, ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik, reklam ve i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc, izleyici g\u00f6r\u00fc\u015fleri ve \u00fcr\u00fcn geli\u015ftirme","description":"Reklamlar ve i\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. \u0130\u00e7eri\u011fi daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. Reklam ve i\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir. Kullan\u0131c\u0131 deneyimi, sistemler ve yaz\u0131l\u0131mlar olu\u015fturmak veya iyile\u015ftirmek i\u00e7in veriler kullan\u0131labilir."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Temel reklamlar, ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik, reklam ve i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc ve izleyici g\u00f6r\u00fc\u015fleri","description":"Temel reklamlar sunulabilir. \u0130\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. \u0130\u00e7eri\u011fi daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. Reklam ve i\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Temel reklamlar, ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik, reklam ve i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc, izleyici g\u00f6r\u00fc\u015fleri ve \u00fcr\u00fcn geli\u015ftirme","description":"Temel reklamlar sunulabilir. \u0130\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. \u0130\u00e7eri\u011fi daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. Reklam ve i\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir. Kullan\u0131c\u0131 deneyimi, sistemler ve yaz\u0131l\u0131mlar olu\u015fturmak veya iyile\u015ftirmek i\u00e7in veriler kullan\u0131labilir."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Temel reklamlar, ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik, i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc ve izleyici g\u00f6r\u00fc\u015fleri","description":"Temel reklamlar sunulabilir. \u0130\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. \u0130\u00e7eri\u011fi daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. Reklam ve i\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Temel reklamlar, ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik, i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc, izleyici g\u00f6r\u00fc\u015fleri ve \u00fcr\u00fcn geli\u015ftirme","description":"Temel reklamlar sunulabilir. \u0130\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. \u0130\u00e7eri\u011fi daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. \u0130\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir. Kullan\u0131c\u0131 deneyimi, sistemler ve yaz\u0131l\u0131mlar olu\u015fturmak veya iyile\u015ftirmek i\u00e7in veriler kullan\u0131labilir."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Temel reklamlar, ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik ve reklam \u00f6l\u00e7\u00fcm\u00fc","description":"Temel reklamlar sunulabilir. \u0130\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. \u0130\u00e7eri\u011fi daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. Reklam performans\u0131 \u00f6l\u00e7\u00fclebilir."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Temel reklamlar, ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik, reklam \u00f6l\u00e7\u00fcm\u00fc ve \u00fcr\u00fcn geli\u015ftirme","description":"Temel reklamlar sunulabilir. \u0130\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. \u0130\u00e7eri\u011fi daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. Reklam performans\u0131 \u00f6l\u00e7\u00fclebilir. Kullan\u0131c\u0131 deneyimi, sistemler ve yaz\u0131l\u0131mlar olu\u015fturmak veya iyile\u015ftirmek i\u00e7in veriler kullan\u0131labilir."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f reklamlar, reklam \u00f6l\u00e7\u00fcm\u00fc ve \u00fcr\u00fcn geli\u015ftirme","description":"Reklamlar bir profil temelinde ki\u015fiselle\u015ftirilebilir. Reklamlar\u0131 daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. Reklam performans\u0131 \u00f6l\u00e7\u00fclebilir. Kullan\u0131c\u0131 deneyimi, sistemler ve yaz\u0131l\u0131mlar olu\u015fturmak veya iyile\u015ftirmek i\u00e7in veriler kullan\u0131labilir."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f reklamlar, reklam \u00f6l\u00e7\u00fcm\u00fc, izleyici g\u00f6r\u00fc\u015fleri ve \u00fcr\u00fcn geli\u015ftirme","description":"Reklamlar bir profil temelinde ki\u015fiselle\u015ftirilebilir. Reklamlar\u0131 daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. Reklam performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f olan izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir. Kullan\u0131c\u0131 deneyimi, sistemler ve yaz\u0131l\u0131m olu\u015fturmak veya iyile\u015ftirmek i\u00e7in veriler kullan\u0131labilir."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f reklam ve reklam \u00f6l\u00e7\u00fcm\u00fc, izleyici g\u00f6r\u00fc\u015fleri ve \u00fcr\u00fcn geli\u015ftirme","description":"Reklamlar bir profil temelinde ki\u015fiselle\u015ftirilebilir. Reklamlar\u0131 daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. Reklam ve i\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir. Kullan\u0131c\u0131 deneyimi, sistemler ve yaz\u0131l\u0131m olu\u015fturmak veya iyile\u015ftirmek i\u00e7in veriler kullan\u0131labilir."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f reklamlar, ki\u015fiselle\u015ftirilmi\u015f i\u00e7erik g\u00f6sterilmesi, reklam ve i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc, izleyici g\u00f6r\u00fc\u015fleri ve \u00fcr\u00fcn geli\u015ftirme","description":"Reklamlar ve i\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. Reklamlar\u0131 daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. Reklam ve i\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir. Kullan\u0131c\u0131 deneyimi, sistemler ve yaz\u0131l\u0131m olu\u015fturmak veya iyile\u015ftirmek i\u00e7in veriler kullan\u0131labilir."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Ki\u015fiselle\u015ftirilmi\u015f reklamlar ve i\u00e7erik, reklam ve i\u00e7erik \u00f6l\u00e7\u00fcm\u00fc, izleyici g\u00f6r\u00fc\u015fleri ve \u00fcr\u00fcn geli\u015ftirme","description":"Reklamlar ve i\u00e7erik bir profil temelinde ki\u015fiselle\u015ftirilebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi daha iyi ki\u015fiselle\u015ftirmek i\u00e7in daha fazla veri eklenebilir. Reklam ve i\u00e7erik performans\u0131 \u00f6l\u00e7\u00fclebilir. Reklamlar\u0131 ve i\u00e7eri\u011fi g\u00f6rm\u00fc\u015f izleyiciler hakk\u0131nda g\u00f6r\u00fc\u015fler elde edilebilir. Kullan\u0131c\u0131 deneyimi, sistemler ve yaz\u0131l\u0131m olu\u015fturmak veya iyile\u015ftirmek i\u00e7in veriler kullan\u0131labilir."}}} \ No newline at end of file diff --git a/src/s1/config/2.0/purposes/purposes-zh.json b/src/s1/config/2.0/purposes/purposes-zh.json index 690876af..aa7afb5c 100644 --- a/src/s1/config/2.0/purposes/purposes-zh.json +++ b/src/s1/config/2.0/purposes/purposes-zh.json @@ -1 +1 @@ -{"vendorListVersion":79,"lastUpdated":"2021-02-25T16:36:27Z","purposes":{"1":{"id":1,"name":"\u5728\u88dd\u7f6e\u5132\u5b58\u548c\u2215\u6216\u5b58\u53d6\u8cc7\u8a0a","description":"Cookie\u3001\u88dd\u7f6e\u8b58\u5225\u7b26\u6216\u5176\u4ed6\u8cc7\u6599\u53ef\u80fd\u70ba\u4e86\u5411\u60a8\u8ff0\u660e\u7684\u76ee\u7684\uff0c\u800c\u5132\u5b58\u65bc\u6216\u5b58\u53d6\u81ea\u60a8\u7684\u88dd\u7f6e\u3002","descriptionLegal":"\u4f9b\u61c9\u5546\u53ef\uff1a\n* \u5728\u88dd\u7f6e\u5132\u5b58\u548c\u5b58\u53d6\u8cc7\u8a0a\uff0c\u4f8b\u5982\u50b3\u9001\u4e88\u7528\u6236\u7684 Cookie \u53ca\u88dd\u7f6e\u8b58\u5225\u7b26\u3002\n"},"2":{"id":2,"name":"\u9078\u64c7\u57fa\u672c\u5ee3\u544a","description":"\u6309\u7167\u60a8\u6aa2\u8996\u7684\u5167\u5bb9\u3001\u4f7f\u7528\u7684\u61c9\u7528\u7a0b\u5f0f\u3001\u5927\u7d04\u4f4d\u7f6e\u6216\u88dd\u7f6e\u985e\u578b\u5411\u60a8\u986f\u793a\u5ee3\u544a\u3002","descriptionLegal":"\u9078\u64c7\u57fa\u672c\u5ee3\u544a \u4f9b\u61c9\u5546\u53ef\uff1a\n* \u4f7f\u7528\u6709\u95dc\u5ee3\u544a\u986f\u793a\u80cc\u666f\u7684\u5be6\u6642\u8cc7\u8a0a\uff0c\u4ee5\u986f\u793a\u5ee3\u544a\uff0c\u5305\u62ec\u95dc\u65bc\u5167\u5bb9\u53ca\u88dd\u7f6e\u7684\u8cc7\u8a0a\uff0c\u4f8b\u5982\u88dd\u7f6e\u985e\u578b\u53ca\u529f\u80fd\u3001\u7528\u6236\u4ee3\u7406\u3001URL \u4f4d\u5740\u3001IP \u4f4d\u5740\u3002 \n* \u4f7f\u7528\u7528\u6236\u7684\u975e\u6e96\u78ba\u5730\u7406\u4f4d\u7f6e\u8cc7\u6599\u3002\n* \u63a7\u5236\u5411\u7528\u6236\u986f\u793a\u5ee3\u544a\u7684\u983b\u7387\u3002\n* \u5b89\u6392\u5411\u7528\u6236\u986f\u793a\u5ee3\u544a\u7684\u6b21\u5e8f\u3002\n* \u9632\u6b62\u4ee5\u4e0d\u7576\u7de8\u8f2f\uff08\u54c1\u724c\u5371\u6a5f\uff09\u5f62\u5f0f\u50b3\u905e\u5ee3\u544a\u3002\n\u4f9b\u61c9\u5546\u4e0d\u53ef\uff1a\n* \u5728\u7f3a\u4e4f\u5275\u5efa\u500b\u4eba\u5316\u5ee3\u544a\u6a94\u6848\u7684\u7368\u7acb\u6cd5\u5f8b\u57fa\u790e\u4e0b\uff0c\u4f7f\u7528\u6b64\u8cc7\u8a0a\u5275\u5efa\u500b\u4eba\u5316\u5ee3\u544a\u6a94\u6848\u4ee5\u9078\u64c7\u65e5\u5f8c\u5ee3\u544a\u3002\n\u8a3b\uff1a\u975e\u6e96\u78ba\u50c5\u6307\u5bb9\u8a31\u81f3\u5c11 500 \u7c73\u534a\u5f91\u7684\u5927\u7d04\u4f4d\u7f6e\u3002\n"},"3":{"id":3,"name":"\u5275\u5efa\u500b\u4eba\u5316\u5ee3\u544a\u6a94\u6848","description":"\u70ba\u5411\u60a8\u986f\u793a\u8207\u60a8\u76f8\u95dc\u7684\u500b\u4eba\u5316\u5ee3\u544a\uff0c\u53ef\u5efa\u7acb\u95dc\u65bc\u60a8\u53ca\u60a8\u8208\u8da3\u7684\u6a94\u6848\u3002","descriptionLegal":"\u70ba\u5275\u5efa\u500b\u4eba\u5316\u5ee3\u544a\u6a94\u6848\uff0c\u4f9b\u61c9\u5546\u53ef\uff1a\n* \u6536\u96c6\u6709\u95dc\u7528\u6236\u7684\u8cc7\u8a0a\uff0c\u5305\u62ec\u7528\u6236\u6d3b\u52d5\u3001\u8208\u8da3\u3001\u7db2\u7ad9\u6216\u61c9\u7528\u7a0b\u5f0f\u5230\u8a2a\u3001\u4eba\u53e3\u7d71\u8a08\u8cc7\u8a0a\u6216\u4f4d\u7f6e\uff0c\u4ee5\u5275\u5efa\u6216\u7de8\u8f2f\u7528\u65bc\u500b\u4eba\u5316\u5ee3\u544a\u7684\u7528\u6236\u6a94\u6848\u3002\n*\u5c06\u6b64\u4fe1\u606f\u4e0e\u5148\u524d\u6536\u96c6\u7684\u5176\u4ed6\u4fe1\u606f\uff08\u5305\u62ec\u4ece\u5404\u4e2a\u7f51\u7ad9\u548c\u5e94\u7528\u7a0b\u5e8f\u4e2d\u6536\u96c6\u5230\u7684\u4fe1\u606f\uff09\u7ed3\u5408\u8d77\u6765\uff0c\u4ee5\u521b\u5efa\u6216\u7f16\u8f91\u7528\u4e8e\u4e2a\u6027\u5316\u5e7f\u544a\u7684\u7528\u6237\u4e2a\u4eba\u8d44\u6599\u3002"},"4":{"id":4,"name":"\u9078\u64c7\u500b\u4eba\u5316\u5ee3\u544a","description":"\u500b\u4eba\u5316\u5ee3\u544a\u53ef\u6309\u7167\u95dc\u65bc\u60a8\u7684\u500b\u4eba\u6a94\u6848\u800c\u5411\u60a8\u986f\u793a\u3002","descriptionLegal":"\u70ba\u9078\u64c7\u500b\u4eba\u5316\u6a94\u6848\uff0c\u4f9b\u61c9\u5546\u53ef\uff1a\n* \u6309\u7167\u7528\u6236\u6a94\u6848\u6216\u5176\u4ed6\u7528\u6236\u8cc7\u6599\u8a18\u9304\uff0c\u5305\u62ec\u7528\u6236\u7684\u904e\u5f80\u6d3b\u52d5\u3001\u8208\u8da3\u3001\u5230\u8a2a\u7684\u7db2\u7ad9\u6216\u61c9\u7528\u7a0b\u5f0f\u3001\u4f4d\u7f6e\u6216\u4eba\u53e3\u7d71\u8a08\u8cc7\u8a0a\uff0c\u9078\u64c7\u500b\u4eba\u5316\u5ee3\u544a\u3002\n"},"5":{"id":5,"name":"\u5275\u5efa\u500b\u4eba\u5316\u5167\u5bb9\u6a94\u6848","description":"\u70ba\u5411\u60a8\u986f\u793a\u8207\u60a8\u76f8\u95dc\u7684\u500b\u4eba\u5316\u5167\u5bb9\uff0c\u53ef\u5efa\u7acb\u95dc\u65bc\u60a8\u53ca\u60a8\u7684\u8208\u8da3\u7684\u6a94\u6848\u3002","descriptionLegal":"\u70ba\u5275\u5efa\u500b\u4eba\u5316\u5167\u5bb9\u6a94\u6848\uff0c\u4f9b\u61c9\u5546\u53ef\uff1a\n* \u6536\u96c6\u6709\u95dc\u7528\u6236\u7684\u8cc7\u6599\uff0c\u5305\u62ec\u7528\u6236\u6d3b\u52d5\u3001\u8208\u8da3\u3001\u7db2\u7ad9\u6216\u61c9\u7528\u7a0b\u5f0f\u5230\u8a2a\u3001\u57fa\u672c\u8cc7\u6599\u6216\u5730\u9ede\uff0c\u4ee5\u5275\u5efa\u6216\u7de8\u8f2f\u7528\u65bc\u500b\u4eba\u5316\u5167\u5bb9\u7684\u7528\u6236\u6a94\u6848\u3002\n*\u5c06\u6b64\u4fe1\u606f\u4e0e\u5148\u524d\u6536\u96c6\u7684\u5176\u4ed6\u4fe1\u606f\uff08\u5305\u62ec\u4ece\u5404\u4e2a\u7f51\u7ad9\u548c\u5e94\u7528\u7a0b\u5e8f\u4e2d\u6536\u96c6\u5230\u7684\u4fe1\u606f\uff09\u7ed3\u5408\u8d77\u6765\uff0c\u4ee5\u521b\u5efa\u6216\u7f16\u8f91\u7528\u4e8e\u4e2a\u6027\u5316\u5185\u5bb9\u7684\u7528\u6237\u4e2a\u4eba\u8d44\u6599\u3002"},"6":{"id":6,"name":"\u9078\u64c7\u500b\u4eba\u5316\u5167\u5bb9","description":"\u500b\u4eba\u5316\u5167\u5bb9\u53ef\u6309\u7167\u95dc\u65bc\u60a8\u7684\u500b\u4eba\u6a94\u6848\u800c\u5411\u60a8\u986f\u793a\u3002","descriptionLegal":"\u70ba\u9078\u64c7\u500b\u4eba\u5316\u5167\u5bb9\uff0c\u4f9b\u61c9\u5546\u53ef\uff1a\n* \u6309\u7167\u7528\u6236\u6a94\u6848\u6216\u5176\u4ed6\u7528\u6236\u8cc7\u6599\u8a18\u9304\uff0c\u5305\u62ec\u7528\u6236\u7684\u904e\u5f80\u6d3b\u52d5\u3001\u8208\u8da3\u3001\u5230\u8a2a\u7684\u7db2\u7ad9\u6216\u61c9\u7528\u7a0b\u5f0f\u3001\u4f4d\u7f6e\u6216\u57fa\u672c\u8cc7\u6599\uff0c\u9078\u64c7\u500b\u4eba\u5316\u5167\u5bb9\u3002\n"},"7":{"id":7,"name":"\u6e2c\u91cf\u5ee3\u544a\u6548\u679c","description":"\u53ef\u6e2c\u91cf\u60a8\u6240\u770b\u6216\u6240\u4e92\u52d5\u5ee3\u544a\u7684\u8868\u73fe\u53ca\u6210\u6548\u3002","descriptionLegal":"\u70ba\u6e2c\u91cf\u5ee3\u544a\u6548\u679c\uff0c\u4f9b\u61c9\u5546\u53ef\uff1a\n* \u6e2c\u91cf\u7528\u6236\u662f\u5426\u548c\u5982\u4f55\u5f97\u5230\u5ee3\u544a\u50b3\u905e\u548c\u8207\u4e4b\u4e92\u52d5\n* \u63d0\u4f9b\u5ee3\u544a\u5831\u544a\uff0c\u5305\u62ec\u5176\u6210\u6548\u53ca\u8868\u73fe\n* \u4f7f\u7528\u7528\u6236\u8207\u5ee3\u544a\u4e92\u52d5\u671f\u9593\u6240\u5f97\u7684\u8cc7\u6599\uff0c\u5c31\u8457\u8207\u5ee3\u544a\u4e92\u52d5\u7684\u7528\u6236\u63d0\u4f9b\u5831\u544a\n* \u5c31\u8457\u8ca1\u7522\u4e0a\u986f\u793a\u7684\u5ee3\u544a\u5411\u767c\u4f48\u8005\u63d0\u4f9b\u5831\u544a\n* \u6e2c\u91cf\u5ee3\u544a\u662f\u5426\u6295\u653e\u65bc\u9069\u7576\u7684\u7de8\u8f2f\u74b0\u5883\uff08\u54c1\u724c\u5b89\u5168\uff09\n* \u91d0\u5b9a\u770b\u5230\u5ee3\u544a\u7684\u6a5f\u6703\u767e\u5206\u6bd4\u4ee5\u53ca\u67e5\u770b\u6a5f\u6703\u7684\u6642\u9577 \n\u4f9b\u61c9\u5546\u4e0d\u53ef\uff1a\n* \u5728\u7f3a\u4e4f\u904b\u7528\u5e02\u5834\u7814\u7a76\u5be6\u73fe\u6d1e\u5bdf\u53d7\u773e\u7684\u7368\u7acb\u6cd5\u5f8b\u57fa\u790e\u4e0b\uff0c\u5c07\u9762\u677f\u6216\u985e\u4f3c\u65b9\u5f0f\u5c0e\u51fa\u7684\u53d7\u773e\u6d1e\u5bdf\u8cc7\u6599\u7528\u65bc\u5ee3\u544a\u6e2c\u91cf\u8cc7\u6599\u3002\n"},"8":{"id":8,"name":"\u6e2c\u91cf\u5167\u5bb9\u6548\u679c","description":"\u53ef\u6e2c\u91cf\u60a8\u6240\u770b\u6216\u6240\u4e92\u52d5\u5167\u5bb9\u7684\u8868\u73fe\u53ca\u6210\u6548\u3002","descriptionLegal":"\u70ba\u6e2c\u91cf\u5167\u5bb9\u6548\u679c\uff0c\u4f9b\u61c9\u5546\u53ef\uff1a\n* \u6e2c\u91cf\u548c\u5831\u544a\u7528\u6236\u5982\u4f55\u5f97\u5230\u5ee3\u544a\u50b3\u905e\u548c\u8207\u4e4b\u4e92\u52d5\u3002\n* \u4f7f\u7528\u76f4\u63a5\u6e2c\u91cf\u6216\u5df2\u77e5\u7684\u8cc7\u6599\uff0c\u5c31\u8457\u8207\u5167\u5bb9\u4e92\u52d5\u7684\u7528\u6236\u63d0\u4f9b\u5831\u544a\n\u4f9b\u61c9\u5546\u4e0d\u53ef\uff1a\n* \u6e2c\u91cf\u7528\u6236\u662f\u5426\u548c\u5982\u4f55\u5f97\u5230\u5ee3\u544a\uff08\u5305\u62ec\u539f\u751f\u5ee3\u544a\uff09\u50b3\u905e\u548c\u8207\u4e4b\u4e92\u52d5\u3002\n* \u5728\u7f3a\u4e4f\u904b\u7528\u5e02\u5834\u7814\u7a76\u5be6\u73fe\u6d1e\u5bdf\u53d7\u773e\u7684\u7368\u7acb\u6cd5\u5f8b\u57fa\u790e\u4e0b\uff0c\u5c07\u9762\u677f\u6216\u985e\u4f3c\u65b9\u5f0f\u5c0e\u51fa\u7684\u53d7\u773e\u6d1e\u5bdf\u8cc7\u6599\u7528\u65bc\u5ee3\u544a\u6e2c\u91cf\u8cc7\u6599\u3002\n"},"9":{"id":9,"name":"\u904b\u7528\u5e02\u5834\u7814\u7a76\u5be6\u73fe\u6d1e\u5bdf\u53d7\u773e","description":"\u5e02\u5834\u7814\u7a76\u53ef\u7528\u65bc\u591a\u52a0\u4e86\u89e3\u5230\u8a2a\u7db2\u7ad9\u2215\u61c9\u7528\u7a0b\u5f0f\u548c\u6aa2\u8996\u5ee3\u544a\u7684\u53d7\u773e\u3002","descriptionLegal":"\u70ba\u904b\u7528\u5e02\u5834\u7814\u7a76\u5be6\u73fe\u6d1e\u5bdf\u53d7\u773e\uff0c\u4f9b\u61c9\u5546\u53ef\uff1a\n* \u900f\u904e\u9762\u677f\u6216\u985e\u4f3c\u65b9\u5f0f\u5c0e\u51fa\u7684\u6d1e\u5bdf\u8cc7\u6599\uff0c\u5c31\u8457\u5ee3\u544a\u63a5\u89f8\u7684\u53d7\u773e\u5411\u5ee3\u544a\u5546\u6216\u5176\u4ee3\u8868\u63d0\u4f9b\u5f59\u6574\u5831\u544a\u3002\n* \u900f\u904e\u9762\u677f\u6216\u985e\u4f3c\u65b9\u5f0f\u5c0e\u51fa\u7684\u6d1e\u5bdf\u8cc7\u6599\uff0c\u5c31\u8457\u63a5\u6536\u5167\u5bb9\u548c\u2215\u6216\u5ee3\u544a\u6216\u8207\u4e4b\u4e92\u52d5\u7684\u53d7\u773e\u5411\u767c\u4f48\u8005\u63d0\u4f9b\u5f59\u6574\u5831\u544a\u3002\n* \u5982\u679c\u4f9b\u61c9\u5546\u5df2\u8072\u660e\u914d\u5c0d\u548c\u7d50\u5408\u7dda\u4e0b\u8cc7\u6599\u4f86\u6e90\uff08\u529f\u80fd 1\uff09\uff0c\u5247\u5c07\u7dda\u4e0b\u8cc7\u6599\u95dc\u806f\u81f3\u7dda\u4e0a\u7528\u6236\u4ee5\u85c9\u8457\u5e02\u5834\u7814\u7a76\u6d1e\u5bdf\u53d7\u773e\n\u4f9b\u61c9\u5546\u4e0d\u53ef\uff1a\n* \u5728\u7f3a\u4e4f\u6e2c\u91cf\u5ee3\u544a\u6548\u679c\u7684\u7368\u7acb\u6cd5\u5f8b\u57fa\u790e\u4e0b\uff0c\u6e2c\u91cf\u7279\u5b9a\u7528\u6236\u6240\u63a5\u6536\u6216\u4e92\u52d5\u7684\u5ee3\u544a\u7684\u8868\u73fe\u53ca\u6210\u6548\u3002\n* \u5728\u7f3a\u4e4f\u6e2c\u91cf\u5167\u5bb9\u6548\u679c\u7684\u7368\u7acb\u6cd5\u5f8b\u57fa\u790e\u4e0b\uff0c\u6e2c\u91cf\u7279\u5b9a\u7528\u6236\u63a5\u6536\u7684\u5167\u5bb9\u4ee5\u53ca\u7b87\u4e2d\u4e92\u52d5\u65b9\u5f0f\u3002\n"},"10":{"id":10,"name":"\u7814\u767c\u548c\u6539\u5584\u7522\u54c1","description":"\u60a8\u7684\u8cc7\u6599\u53ef\u7528\u65bc\u6539\u5584\u73fe\u6709\u7cfb\u7d71\u53ca\u8edf\u4ef6\uff0c\u4e26\u7814\u767c\u65b0\u7522\u54c1\u3002","descriptionLegal":"\u70ba\u7814\u767c\u65b0\u7522\u54c1\u548c\u6539\u5584\u7522\u54c1\uff0c\u4f9b\u61c9\u5546\u53ef\uff1a\n* \u4f7f\u7528\u8cc7\u6599\u4ee5\u900f\u904e\u65b0\u589e\u529f\u80fd\u6539\u5584\u73fe\u6709\u7522\u54c1\uff0c\u4e26\u7814\u767c\u65b0\u7522\u54c1\n* \u900f\u904e\u6a5f\u5668\u5b78\u7fd2\u5275\u5efa\u65b0\u6a21\u578b\u53ca\u6f14\u7b97\u6cd5\n\u4f9b\u61c9\u5546\u4e0d\u53ef\uff1a\n* \u6839\u64da\u6b64\u76ee\u7684\u800c\u9032\u884c\u5176\u4ed6\u76ee\u7684\u5141\u8a31\u7684\u4efb\u4f55\u5176\u4ed6\u8cc7\u6599\u8655\u7406\u64cd\u4f5c\n"}},"specialPurposes":{"1":{"id":1,"name":"\u78ba\u4fdd\u5b89\u5168\u3001\u9632\u6b62\u6b3a\u8a50\u548c\u6392\u9664\u6545\u969c","description":"\u60a8\u7684\u8cc7\u6599\u53ef\u80fd\u7528\u65bc\u76e3\u5bdf\u548c\u9632\u6b62\u6b3a\u8a50\u6d3b\u52d5\uff0c\u4e26\u78ba\u4fdd\u7cfb\u7d71\u53ca\u7a0b\u5e8f\u80fd\u5920\u5b89\u5168\u5730\u6b63\u5e38\u904b\u4f5c\u3002","descriptionLegal":"\u70ba\u78ba\u4fdd\u5b89\u5168\u3001\u9632\u6b62\u6b3a\u8a50\u548c\u6392\u9664\u6545\u969c\uff0c\u4f9b\u61c9\u5546\u53ef\uff1a\n* \u78ba\u4fdd\u5b89\u5168\u50b3\u8f38\u8cc7\u6599\u3002 \n* \u5075\u6e2c\u548c\u9632\u6b62\u60e1\u610f\u3001\u865b\u5047\u3001\u7121\u6548\u6216\u975e\u6cd5\u6d3b\u52d5\u3002\n* \u78ba\u4fdd\u6b63\u5e38\u800c\u6709\u6548\u5730\u64cd\u4f5c\u7cfb\u7d71\u53ca\u7a0b\u5e8f\uff0c\u5305\u62ec\u76e3\u5bdf\u548c\u63d0\u5347\u5141\u8a31\u76ee\u7684\u4e2d\u6d89\u53ca\u7684\u7cfb\u7d71\u6548\u80fd\u53ca\u7a0b\u5e8f\u3002\n\u4f9b\u61c9\u5546\u4e0d\u53ef\uff1a\n* \u6839\u64da\u6b64\u76ee\u7684\u800c\u9032\u884c\u5176\u4ed6\u76ee\u7684\u5141\u8a31\u7684\u4efb\u4f55\u5176\u4ed6\u8cc7\u6599\u8655\u7406\u64cd\u4f5c\u3002\n\u8a3b\uff1a\u70ba\u78ba\u4fdd\u5b89\u5168\u3001\u9632\u6b62\u6b3a\u8a50\u548c\u6392\u9664\u6545\u969c\u800c\u6536\u96c6\u548c\u4f7f\u7528\u7684\u8cc7\u6599\uff0c\u53ef\u80fd\u5305\u62ec\u70ba\u4f5c\u8b58\u5225\u800c\u81ea\u52d5\u767c\u9001\u7684\u88dd\u7f6e\u7279\u5fb5\u3001\u6e96\u78ba\u7684\u5730\u7406\u4f4d\u7f6e\u8cc7\u6599\uff0c\u4ee5\u53ca\u70ba\u4f5c\u8b58\u5225\u800c\u900f\u904e\u4e3b\u52d5\u6383\u63cf\u88dd\u7f6e\u7279\u5fb5\u6240\u5f97\u4f46\u7121\u53e6\u884c\u62ab\u9732\u548c\u2215\u6216\u63a5\u53d7\u7684\u8cc7\u6599\u3002\n"},"2":{"id":2,"name":"\u6280\u8853\u6027\u50b3\u905e\u5ee3\u544a\u6216\u5167\u5bb9","description":"\u60a8\u7684\u88dd\u7f6e\u53ef\u6536\u767c\u8cc7\u8a0a\uff0c\u4ee5\u8b93\u60a8\u67e5\u770b\u5ee3\u544a\u53ca\u5167\u5bb9\u4e26\u8207\u4e4b\u4e92\u52d5\u3002","descriptionLegal":"\u70ba\u50b3\u905e\u8cc7\u8a0a\u548c\u56de\u61c9\u6280\u8853\u8981\u6c42\uff0c\u4f9b\u61c9\u5546\u53ef\uff1a\n* \u4f7f\u7528\u7528\u6236\u7684 IP \u4f4d\u5740\u4ee5\u5728\u4e92\u806f\u7db2\u50b3\u905e\u5ee3\u544a\n* \u900f\u904e\u5c07\u7528\u6236\u5e36\u81f3\u767b\u9678\u9801\u9762\uff0c\u4ee5\u56de\u61c9\u7528\u6236\u8207\u5ee3\u544a\u7684\u4e92\u52d5\n* \u4f7f\u7528\u7528\u6236\u7684 IP \u4f4d\u5740\u4ee5\u5728\u4e92\u806f\u7db2\u50b3\u905e\u5167\u5bb9\n* \u900f\u904e\u5c07\u7528\u6236\u5e36\u81f3\u767b\u9678\u9801\u9762\uff0c\u4ee5\u56de\u61c9\u7528\u6236\u8207\u5167\u5bb9\u7684\u4e92\u52d5\n* \u4f7f\u7528\u6709\u95dc\u88dd\u7f6e\u985e\u578b\u53ca\u529f\u80fd\u7684\u8cc7\u6599\u4ee5\u50b3\u905e\u5ee3\u544a\u6216\u5167\u5bb9\uff0c\u4f8b\u5982\u4ee5\u88dd\u7f6e\u652f\u63f4\u7684\u683c\u5f0f\u50b3\u905e\u9069\u7576\u5927\u5c0f\u7684\u5ee3\u544a\u5275\u610f\u6216\u5f71\u7247\u6a94\u6848\n\u4f9b\u61c9\u5546\u4e0d\u53ef\uff1a\n* \u6839\u64da\u6b64\u76ee\u7684\u800c\u9032\u884c\u5176\u4ed6\u76ee\u7684\u5141\u8a31\u7684\u4efb\u4f55\u5176\u4ed6\u8cc7\u6599\u8655\u7406\u64cd\u4f5c\n"}},"features":{"1":{"id":1,"name":"\u914d\u5c0d\u548c\u7d50\u5408\u7dda\u4e0b\u8cc7\u6599\u4f86\u6e90","description":"\u4f86\u81ea\u7dda\u4e0b\u8cc7\u6599\u4f86\u6e90\u7684\u8cc7\u6599\u53ef\u7d50\u5408\u60a8\u7684\u7dda\u4e0a\u6d3b\u52d5\uff0c\u4ee5\u7528\u65bc\u4e00\u9805\u6216\u591a\u9805\u76ee\u7684\u3002","descriptionLegal":"\u4f9b\u61c9\u5546\u53ef\uff1a\n* \u7d50\u5408\u7dda\u4e0b\u8cc7\u6599\u8207\u7dda\u4e0a\u8cc7\u6599\uff0c\u4ee5\u7528\u65bc\u4e00\u9805\u6216\u591a\u9805\u76ee\u7684\u6216\u7279\u6b8a\u76ee\u7684\u3002\n"},"2":{"id":2,"name":"\u9023\u7d50\u4e0d\u540c\u88dd\u7f6e","description":"\u53ef\u5c07\u4e0d\u540c\u88dd\u7f6e\u91d0\u5b9a\u70ba\u5c6c\u65bc\u60a8\u6216\u60a8\u7684\u5bb6\u4eba\uff0c\u4ee5\u7528\u65bc\u4e00\u9805\u6216\u591a\u9805\u76ee\u7684\u3002","descriptionLegal":"\u4f9b\u61c9\u5546\u53ef\uff1a\n* \u78ba\u5be6\u91d0\u5b9a\u5169\u90e8\u6216\u4ee5\u4e0a\u7684\u88dd\u7f6e\u5c6c\u65bc\u76f8\u540c\u7528\u6236\u6216\u5bb6\u5ead\n* \u5927\u81f4\u91d0\u5b9a\u5169\u90e8\u6216\u4ee5\u4e0a\u7684\u88dd\u7f6e\u5c6c\u65bc\u76f8\u540c\u7528\u6236\u6216\u5bb6\u5ead\n* \u5728\u7528\u6236\u5df2\u5141\u8a31\u4f9b\u61c9\u5546\u4e3b\u52d5\u6383\u63cf\u88dd\u7f6e\u7279\u5fb5\u4ee5\u4f5c\u8b58\u5225\uff08\u7279\u6b8a\u529f\u80fd 2\uff09\u7684\u60c5\u6cc1\u4e0b\uff0c\u4e3b\u52d5\u6383\u63cf\u88dd\u7f6e\u7279\u5fb5\u4ee5\u4f5c\u5927\u81f4\u91d0\u5b9a\u7684\u8b58\u5225\u7528\u9014\n"},"3":{"id":3,"name":"\u63a5\u6536\u548c\u904b\u7528\u81ea\u52d5\u767c\u9001\u7684\u88dd\u7f6e\u7279\u5fb5\u4ee5\u4f5c\u8b58\u5225","description":"\u53ef\u80fd\u6703\u6309\u7167\u60a8\u88dd\u7f6e\u81ea\u52d5\u767c\u9001\u7684\u8cc7\u8a0a\uff0c\u4f8b\u5982 IP \u4f4d\u5740\u6216\u700f\u89bd\u5668\u985e\u578b\uff0c\u800c\u5340\u5225\u60a8\u7684\u88dd\u7f6e\u8207\u5176\u4ed6\u88dd\u7f6e\u3002","descriptionLegal":"\u4f9b\u61c9\u5546\u53ef\uff1a\n* \u4f7f\u7528\u5f9e\u88dd\u7f6e\u81ea\u52d5\u6536\u96c6\u6240\u5f97\u7684\u5177\u9ad4\u7279\u5fb5\u8cc7\u6599\uff0c\u4f8b\u5982 IP \u4f4d\u5740\u53ca\u7528\u6236\u4ee3\u7406\u5b57\u7b26\u4e32\uff0c\u4ee5\u5275\u5efa\u8b58\u5225\u7b26\u3002\n* \u4f7f\u7528\u8a72\u8b58\u5225\u7b26\u4ee5\u5617\u8a66\u91cd\u65b0\u8b58\u5225\u88dd\u7f6e\u3002\n\u4f9b\u61c9\u5546\u4e0d\u53ef\uff1a\n* \u672a\u7d93\u7528\u6236\u53e6\u884c\u63a5\u53d7\u4e3b\u52d5\u6383\u63cf\u88dd\u7f6e\u7279\u5fb5\u4ee5\u4f5c\u8b58\u5225\u4e0b\uff0c\u900f\u904e\u4e3b\u52d5\u6383\u63cf\u88dd\u7f6e\u7684\u5177\u9ad4\u7279\u5fb5\uff08\u4f8b\u5982\u5b89\u88dd\u5b57\u578b\u6216\u5c4f\u5e55\u89e3\u50cf\u5ea6\uff09\u800c\u6536\u96c6\u8cc7\u6599\uff0c\u4ee5\u5275\u5efa\u8b58\u5225\u7b26\u3002\n* \u4f7f\u7528\u8a72\u8b58\u5225\u7b26\u4ee5\u91cd\u65b0\u8b58\u5225\u88dd\u7f6e\u3002\n"}},"specialFeatures":{"1":{"id":1,"name":"\u4f7f\u7528\u6e96\u78ba\u7684\u5730\u7406\u4f4d\u7f6e\u8cc7\u6599","description":"\u60a8\u7684\u6e96\u78ba\u5730\u7406\u4f4d\u7f6e\u8cc7\u6599\u53ef\u7528\u65bc\u4e00\u9805\u6216\u591a\u9805\u76ee\u7684\u3002\u63db\u8a00\u4e4b\uff0c\u60a8\u7684\u4f4d\u7f6e\u53ef\u6e96\u78ba\u81f3\u6578\u7c73\u4e4b\u5167\u3002","descriptionLegal":"\u4f9b\u61c9\u5546\u53ef\uff1a\n* \u70ba\u4e00\u9805\u6216\u591a\u9805\u76ee\u7684\u800c\u6536\u96c6\u548c\u8655\u7406\u6e96\u78ba\u7684\u5730\u7406\u4f4d\u7f6e\u8cc7\u6599\u3002\n\u8a3b\uff1a\u6e96\u78ba\u7684\u5730\u7406\u4f4d\u7f6e\u8cc7\u6599\u662f\u6307\u4e26\u7121\u9650\u5236\u7528\u6236\u4f4d\u7f6e\u7684\u6e96\u78ba\u5ea6\uff1b\u53ef\u6e96\u78ba\u81f3\u6578\u7c73\u4ee5\u5167\u3002\n\u8a3b\uff1a\u70ba\u5b89\u5168\u6216\u9632\u6b62\u6b3a\u8a50\u800c\u4f7f\u7528\u6b64\u8cc7\u6599\u7684\u67d0\u4e9b\u7528\u9014\u6703\u53e6\u884c\u6db5\u84cb\uff0c\u800c\u7121\u9700\u7528\u6236\u53e6\u884c\u63a5\u53d7\u4f7f\u7528\u6e96\u78ba\u7684\u5730\u7406\u4f4d\u7f6e\u8cc7\u6599\u3002\n"},"2":{"id":2,"name":"\u4e3b\u52d5\u6383\u63cf\u88dd\u7f6e\u7279\u5fb5\u4ee5\u4f5c\u8b58\u5225","description":"\u900f\u904e\u6383\u63cf\u60a8\u88dd\u7f6e\u7279\u5fb5\u7684\u552f\u4e00\u7d44\u5408\uff0c\u53ef\u8b58\u5225\u60a8\u7684\u88dd\u7f6e\u3002","descriptionLegal":"\u4f9b\u61c9\u5546\u53ef\uff1a\n* \u900f\u904e\u4e3b\u52d5\u6383\u63cf\u88dd\u7f6e\u7684\u5177\u9ad4\u7279\u5fb5\uff08\u4f8b\u5982\u5b89\u88dd\u5b57\u578b\u6216\u5c4f\u5e55\u89e3\u50cf\u5ea6\uff09\u800c\u6536\u96c6\u8cc7\u6599\uff0c\u4ee5\u5275\u5efa\u8b58\u5225\u7b26\u3002 \n* \u4f7f\u7528\u8a72\u8b58\u5225\u7b26\u4ee5\u91cd\u65b0\u8b58\u5225\u88dd\u7f6e\u3002\n\u8a3b\uff1a\u70ba\u5b89\u5168\u6216\u9632\u6b62\u6b3a\u8a50\u800c\u4f7f\u7528\u6b64\u8cc7\u6599\u7684\u67d0\u4e9b\u7528\u9014\u6703\u53e6\u884c\u6db5\u84cb\uff0c\u800c\u7121\u9700\u7528\u6236\u53e6\u884c\u63a5\u53d7\u4e3b\u52d5\u6383\u63cf\u88dd\u7f6e\u7279\u5fb5\u4ee5\u4f5c\u8b58\u5225\u3002"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"\u6e96\u78ba\u7684\u5730\u7406\u4f4d\u7f6e\u8cc7\u6599\uff0c\u4ee5\u53ca\u900f\u904e\u6383\u63cf\u88dd\u7f6e\u4f5c\u51fa\u8b58\u5225","description":"\u53ef\u4ee5\u4f7f\u7528\u6e96\u78ba\u7684\u5730\u7406\u4f4d\u7f6e\u4ee5\u53ca\u6709\u95dc\u88dd\u7f6e\u7279\u5fb5\u7684\u8cc7\u6599\u3002"},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"\u57fa\u672c\u5ee3\u544a\u53ca\u5ee3\u544a\u6e2c\u91cf","description":"\u53ef\u63d0\u4f9b\u57fa\u672c\u5ee3\u544a\u3002\u53ef\u6e2c\u91cf\u5ee3\u544a\u6548\u679c\u3002"},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"\u500b\u4eba\u5316\u5ee3\u544a","description":"\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5ee3\u544a\u3002\u53ef\u65b0\u589e\u66f4\u591a\u8cc7\u6599\u4ee5\u4f7f\u5ee3\u544a\u66f4\u52a0\u500b\u4eba\u5316\u3002"},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"\u57fa\u672c\u5ee3\u544a\u53ca\u5ee3\u544a\u6e2c\u91cf","description":"\u53ef\u63d0\u4f9b\u57fa\u672c\u5ee3\u544a\u3002\u53ef\u6e2c\u91cf\u5ee3\u544a\u6548\u679c\u3002\u53ef\u6d1e\u5bdf\u6aa2\u8996\u5ee3\u544a\u53ca\u5167\u5bb9\u7684\u53d7\u773e\u3002"},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"\u57fa\u672c\u5ee3\u544a\u3001\u500b\u4eba\u5316\u5ee3\u544a\u6a94\u6848\u53ca\u5ee3\u544a\u6e2c\u91cf","description":"\u53ef\u63d0\u4f9b\u57fa\u672c\u5ee3\u544a\u3002\u53ef\u65b0\u589e\u66f4\u591a\u8cc7\u6599\u4ee5\u4f7f\u5ee3\u544a\u66f4\u52a0\u500b\u4eba\u5316\u3002\u53ef\u6e2c\u91cf\u5ee3\u544a\u6548\u679c\u3002"},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"\u500b\u4eba\u5316\u5ee3\u544a\u986f\u793a\u53ca\u6e2c\u91cf","description":"\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5ee3\u544a\u3002\u53ef\u6e2c\u91cf\u5ee3\u544a\u6548\u679c\u3002"},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"\u500b\u4eba\u5316\u5ee3\u544a\u53ca\u5ee3\u544a\u6e2c\u91cf","description":"\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5ee3\u544a\u3002\u53ef\u65b0\u589e\u66f4\u591a\u8cc7\u6599\u4ee5\u4f7f\u5ee3\u544a\u66f4\u52a0\u500b\u4eba\u5316\u3002\u53ef\u6e2c\u91cf\u5ee3\u544a\u6548\u679c\u3002"},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"\u500b\u4eba\u5316\u5ee3\u544a\u3001\u5ee3\u544a\u6e2c\u91cf\u53ca\u53d7\u773e\u6d1e\u5bdf","description":"\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5ee3\u544a\u3002\u53ef\u65b0\u589e\u66f4\u591a\u8cc7\u6599\u4ee5\u4f7f\u5ee3\u544a\u66f4\u52a0\u500b\u4eba\u5316\u3002\u53ef\u6e2c\u91cf\u5ee3\u544a\u6548\u679c\u3002\u53ef\u6d1e\u5bdf\u6aa2\u8996\u5ee3\u544a\u53ca\u5167\u5bb9\u7684\u53d7\u773e\u3002"},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"\u500b\u4eba\u5316\u5ee3\u544a\u6a94\u6848\u53ca\u986f\u793a","description":"\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5ee3\u544a\u3002\u53ef\u65b0\u589e\u66f4\u591a\u8cc7\u6599\u4ee5\u4f7f\u5ee3\u544a\u66f4\u52a0\u500b\u4eba\u5316\u3002"},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"\u500b\u4eba\u5316\u5167\u5bb9","description":"\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5167\u5bb9\u3002\u53ef\u65b0\u589e\u66f4\u591a\u8cc7\u6599\u4ee5\u4f7f\u5167\u5bb9\u66f4\u52a0\u500b\u4eba\u5316\u3002"},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"\u500b\u4eba\u5316\u5167\u5bb9\u986f\u793a\u53ca\u5167\u5bb9\u6e2c\u91cf","description":"\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5167\u5bb9\u3002\u53ef\u6e2c\u91cf\u5167\u5bb9\u6548\u679c\u3002"},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"\u500b\u4eba\u5316\u5167\u5bb9\u986f\u793a\u3001\u5167\u5bb9\u6e2c\u91cf\u53ca\u53d7\u773e\u6d1e\u5bdf","description":"\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5167\u5bb9\u3002\u53ef\u6e2c\u91cf\u5167\u5bb9\u6548\u679c\u3002\u53ef\u6d1e\u5bdf\u6aa2\u8996\u5ee3\u544a\u53ca\u5167\u5bb9\u7684\u53d7\u773e\u3002"},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"\u500b\u4eba\u5316\u5167\u5bb9\u53ca\u5167\u5bb9\u6e2c\u91cf","description":"\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5167\u5bb9\u3002\u53ef\u65b0\u589e\u66f4\u591a\u8cc7\u6599\u4ee5\u4f7f\u5167\u5bb9\u66f4\u52a0\u500b\u4eba\u5316\u3002\u53ef\u6e2c\u91cf\u5167\u5bb9\u6548\u679c\u3002"},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"\u500b\u4eba\u5316\u5167\u5bb9\u3001\u5167\u5bb9\u6e2c\u91cf\u53ca\u53d7\u773e\u6d1e\u5bdf","description":"\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5167\u5bb9\u3002\u53ef\u65b0\u589e\u66f4\u591a\u8cc7\u6599\u4ee5\u4f7f\u5167\u5bb9\u66f4\u52a0\u500b\u4eba\u5316\u3002\u53ef\u6e2c\u91cf\u5167\u5bb9\u6548\u679c\u3002\u53ef\u6d1e\u5bdf\u6aa2\u8996\u5ee3\u544a\u53ca\u5167\u5bb9\u7684\u53d7\u773e\u3002"},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"\u500b\u4eba\u5316\u5167\u5bb9\u3001\u5167\u5bb9\u6e2c\u91cf\u3001\u53d7\u773e\u6d1e\u5bdf\u53ca\u7522\u54c1\u7814\u767c","description":"\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5167\u5bb9\u3002\u53ef\u65b0\u589e\u66f4\u591a\u8cc7\u6599\u4ee5\u4f7f\u5167\u5bb9\u66f4\u52a0\u500b\u4eba\u5316\u3002\u53ef\u6e2c\u91cf\u5167\u5bb9\u6548\u679c\u3002 \u53ef\u6d1e\u5bdf\u6aa2\u8996\u5ee3\u544a\u53ca\u5167\u5bb9\u7684\u53d7\u773e\u3002\u53ef\u4f7f\u7528\u8cc7\u6599\u4ee5\u5efa\u7acb\u6216\u6539\u5584\u7528\u6236\u9ad4\u9a57\u3001\u7cfb\u7d71\u53ca\u8edf\u4ef6"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"\u5ee3\u544a\u548c\u5167\u5bb9\u6e2c\u91cf\u4ee5\u53ca\u53d7\u773e\u6d1e\u5bdf","description":"\u53ef\u6e2c\u91cf\u5ee3\u544a\u53ca\u5167\u5bb9\u6548\u679c\u3002 \u53ef\u6d1e\u5bdf\u6aa2\u8996\u5ee3\u544a\u53ca\u5167\u5bb9\u7684\u53d7\u773e\u3002"},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"\u5ee3\u544a\u53ca\u5167\u5bb9\u6e2c\u91cf","description":"\u53ef\u6e2c\u91cf\u5ee3\u544a\u53ca\u5167\u5bb9\u6548\u679c\u3002"},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"\u5ee3\u544a\u6e2c\u91cf\u53ca\u53d7\u773e\u6d1e\u5bdf","description":"\u53ef\u6e2c\u91cf\u5ee3\u544a\u3002 \u53ef\u6d1e\u5bdf\u6aa2\u8996\u5ee3\u544a\u53ca\u5167\u5bb9\u7684\u53d7\u773e\u3002"},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"\u5ee3\u544a\u53ca\u5167\u5bb9\u6e2c\u91cf\u3001\u53d7\u773e\u6d1e\u5bdf\u53ca\u7522\u54c1\u7814\u767c","description":"\u53ef\u6e2c\u91cf\u5ee3\u544a\u53ca\u5167\u5bb9\u6548\u679c\u3002 \u53ef\u6d1e\u5bdf\u6aa2\u8996\u5ee3\u544a\u53ca\u5167\u5bb9\u7684\u53d7\u773e\u3002\u53ef\u4f7f\u7528\u8cc7\u6599\u4ee5\u5efa\u7acb\u6216\u6539\u5584\u7528\u6236\u9ad4\u9a57\u3001\u7cfb\u7d71\u53ca\u8edf\u4ef6\u3002 \u53ef\u6d1e\u5bdf\u6aa2\u8996\u5ee3\u544a\u53ca\u5167\u5bb9\u7684\u53d7\u773e\u3002"},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"\u5167\u5bb9\u6e2c\u91cf\u53ca\u7522\u54c1\u7814\u767c","description":"\u53ef\u6e2c\u91cf\u5167\u5bb9\u6548\u679c\u3002\u53ef\u4f7f\u7528\u8cc7\u6599\u4ee5\u5efa\u7acb\u6216\u6539\u5584\u7528\u6236\u9ad4\u9a57\u3001\u7cfb\u7d71\u53ca\u8edf\u4ef6\u3002"},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"\u500b\u4eba\u5316\u5ee3\u544a\u53ca\u5167\u5bb9\u986f\u793a\u3001\u5ee3\u544a\u53ca\u5167\u5bb9\u6e2c\u91cf","description":"\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5ee3\u544a\u53ca\u5167\u5bb9\u3002\u53ef\u6e2c\u91cf\u5ee3\u544a\u53ca\u5167\u5bb9\u6548\u679c\u3002"},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"\u500b\u4eba\u5316\u5ee3\u544a\u53ca\u5167\u5bb9\u986f\u793a\u3001\u5ee3\u544a\u53ca\u5167\u5bb9\u6e2c\u91cf\u4ee5\u53ca\u53d7\u773e\u6d1e\u5bdf","description":"\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5ee3\u544a\u53ca\u5167\u5bb9\u3002\u53ef\u6e2c\u91cf\u5ee3\u544a\u53ca\u5167\u5bb9\u6548\u679c\u3002 \u53ef\u6d1e\u5bdf\u6aa2\u8996\u5ee3\u544a\u53ca\u5167\u5bb9\u7684\u53d7\u773e\u3002\u53ef\u4f7f\u7528\u8cc7\u6599\u4ee5\u5efa\u7acb\u6216\u6539\u5584\u7528\u6236\u9ad4\u9a57\u3001\u7cfb\u7d71\u53ca\u8edf\u4ef6\u3002"},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"\u500b\u4eba\u5316\u5ee3\u544a\u53ca\u5167\u5bb9\u3001\u5ee3\u544a\u53ca\u5167\u5bb9\u6e2c\u91cf","description":"\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5ee3\u544a\u53ca\u5167\u5bb9\u3002\u53ef\u65b0\u589e\u66f4\u591a\u8cc7\u6599\u4ee5\u4f7f\u5ee3\u544a\u53ca\u5167\u5bb9\u66f4\u52a0\u500b\u4eba\u5316\u3002\u53ef\u6e2c\u91cf\u5ee3\u544a\u53ca\u5167\u5bb9\u6548\u679c\u3002"},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"\u500b\u4eba\u5316\u5ee3\u544a\u53ca\u5167\u5bb9\u3001\u5ee3\u544a\u53ca\u5167\u5bb9\u6e2c\u91cf\u4ee5\u53ca\u53d7\u773e\u6d1e\u5bdf","description":"\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5ee3\u544a\u53ca\u5167\u5bb9\u3002\u53ef\u65b0\u589e\u66f4\u591a\u8cc7\u6599\u4ee5\u4f7f\u5ee3\u544a\u53ca\u5167\u5bb9\u66f4\u52a0\u500b\u4eba\u5316\u3002\u53ef\u6e2c\u91cf\u5ee3\u544a\u53ca\u5167\u5bb9\u6548\u679c\u3002\u53ef\u6d1e\u5bdf\u6aa2\u8996\u5ee3\u544a\u53ca\u5167\u5bb9\u7684\u53d7\u773e\u3002"},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"\u500b\u4eba\u5316\u5ee3\u544a\u53ca\u5167\u5bb9\u6a94\u6848","description":"\u53ef\u65b0\u589e\u66f4\u591a\u8cc7\u6599\u4ee5\u63d0\u4f9b\u500b\u4eba\u5316\u5ee3\u544a\u53ca\u5167\u5bb9\u3002"},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"\u500b\u4eba\u5316\u5ee3\u544a\u53ca\u5167\u5bb9\u986f\u793a","description":"\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5ee3\u544a\u53ca\u5167\u5bb9\u3002"},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"\u57fa\u672c\u5ee3\u544a\u3001\u5ee3\u544a\u53ca\u5167\u5bb9\u6e2c\u91cf\u4ee5\u53ca\u53d7\u773e\u6d1e\u5bdf","description":"\u53ef\u63d0\u4f9b\u57fa\u672c\u5ee3\u544a\u3002\u53ef\u6e2c\u91cf\u5ee3\u544a\u53ca\u5167\u5bb9\u6548\u679c\u3002\u53ef\u6d1e\u5bdf\u6aa2\u8996\u5ee3\u544a\u53ca\u5167\u5bb9\u7684\u53d7\u773e\u3002"},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"\u500b\u4eba\u5316\u5ee3\u544a\u986f\u793a\u3001\u500b\u4eba\u5316\u5167\u5bb9\u3001\u5ee3\u544a\u53ca\u5167\u5bb9\u6e2c\u91cf\u4ee5\u53ca\u53d7\u773e\u6d1e\u5bdf","description":"\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5ee3\u544a\u53ca\u5167\u5bb9\u3002\u53ef\u65b0\u589e\u66f4\u591a\u8cc7\u6599\u4ee5\u4f7f\u5167\u5bb9\u66f4\u52a0\u500b\u4eba\u5316\u3002\u53ef\u6e2c\u91cf\u5ee3\u544a\u53ca\u5167\u5bb9\u6548\u679c\u3002\u53ef\u6d1e\u5bdf\u6aa2\u8996\u5ee3\u544a\u53ca\u5167\u5bb9\u7684\u53d7\u773e\u3002"},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"\u500b\u4eba\u5316\u5ee3\u544a\u986f\u793a\u3001\u500b\u4eba\u5316\u5167\u5bb9\u3001\u5ee3\u544a\u53ca\u5167\u5bb9\u6e2c\u91cf\u3001\u53d7\u773e\u6d1e\u5bdf\u4ee5\u53ca\u7522\u54c1\u7814\u767c","description":"\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5ee3\u544a\u53ca\u5167\u5bb9\u3002\u53ef\u65b0\u589e\u66f4\u591a\u8cc7\u6599\u4ee5\u4f7f\u5167\u5bb9\u66f4\u52a0\u500b\u4eba\u5316\u3002\u53ef\u6e2c\u91cf\u5ee3\u544a\u53ca\u5167\u5bb9\u6548\u679c\u3002\u53ef\u6d1e\u5bdf\u6aa2\u8996\u5ee3\u544a\u53ca\u5167\u5bb9\u7684\u53d7\u773e\u3002\u53ef\u4f7f\u7528\u8cc7\u6599\u4ee5\u5efa\u7acb\u6216\u6539\u5584\u7528\u6236\u9ad4\u9a57\u3001\u7cfb\u7d71\u53ca\u8edf\u4ef6\u3002"},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"\u57fa\u672c\u5ee3\u544a\u3001\u500b\u4eba\u5316\u5167\u5bb9\u3001\u5ee3\u544a\u53ca\u5167\u5bb9\u6e2c\u91cf\u4ee5\u53ca\u53d7\u773e\u6d1e\u5bdf","description":"\u53ef\u63d0\u4f9b\u57fa\u672c\u5ee3\u544a\u3002\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5167\u5bb9\u3002\u53ef\u65b0\u589e\u66f4\u591a\u8cc7\u6599\u4ee5\u4f7f\u5167\u5bb9\u66f4\u52a0\u500b\u4eba\u5316\u3002\u53ef\u6e2c\u91cf\u5ee3\u544a\u53ca\u5167\u5bb9\u6548\u679c\u3002\u53ef\u6d1e\u5bdf\u6aa2\u8996\u5ee3\u544a\u53ca\u5167\u5bb9\u7684\u53d7\u773e\u3002"},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"\u57fa\u672c\u5ee3\u544a\u3001\u500b\u4eba\u5316\u5167\u5bb9\u3001\u5167\u5bb9\u6e2c\u91cf\u4ee5\u53ca\u53d7\u773e\u6d1e\u5bdf","description":"\u53ef\u63d0\u4f9b\u57fa\u672c\u5ee3\u544a\u3002\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5167\u5bb9\u3002\u53ef\u65b0\u589e\u66f4\u591a\u8cc7\u6599\u4ee5\u4f7f\u5167\u5bb9\u66f4\u52a0\u500b\u4eba\u5316\u3002\u53ef\u6e2c\u91cf\u5ee3\u544a\u53ca\u5167\u5bb9\u6548\u679c\u3002\u53ef\u6d1e\u5bdf\u6aa2\u8996\u5ee3\u544a\u53ca\u5167\u5bb9\u7684\u53d7\u773e\u3002"},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"\u57fa\u672c\u5ee3\u544a\u3001\u500b\u4eba\u5316\u5167\u5bb9\u3001\u5167\u5bb9\u6e2c\u91cf\u3001\u53d7\u773e\u6d1e\u5bdf\u4ee5\u53ca\u7522\u54c1\u7814\u767c","description":"\u53ef\u63d0\u4f9b\u57fa\u672c\u5ee3\u544a\u3002\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5167\u5bb9\u3002\u53ef\u65b0\u589e\u66f4\u591a\u8cc7\u6599\u4ee5\u4f7f\u5167\u5bb9\u66f4\u52a0\u500b\u4eba\u5316\u3002\u53ef\u6e2c\u91cf\u5167\u5bb9\u6548\u679c\u3002\u53ef\u6d1e\u5bdf\u6aa2\u8996\u5ee3\u544a\u53ca\u5167\u5bb9\u7684\u53d7\u773e\u3002\u53ef\u4f7f\u7528\u8cc7\u6599\u4ee5\u5efa\u7acb\u6216\u6539\u5584\u7528\u6236\u9ad4\u9a57\u3001\u7cfb\u7d71\u53ca\u8edf\u4ef6\u3002"},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"\u57fa\u672c\u5ee3\u544a\u3001\u500b\u4eba\u5316\u5167\u5bb9\u53ca\u5ee3\u544a\u6e2c\u91cf","description":"\u53ef\u63d0\u4f9b\u57fa\u672c\u5ee3\u544a\u3002\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5167\u5bb9\u3002\u53ef\u65b0\u589e\u66f4\u591a\u8cc7\u6599\u4ee5\u4f7f\u5167\u5bb9\u66f4\u52a0\u500b\u4eba\u5316\u3002\u53ef\u6e2c\u91cf\u5ee3\u544a\u6548\u679c\u3002\n\n"},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"\u57fa\u672c\u5ee3\u544a\u3001\u500b\u4eba\u5316\u5167\u5bb9\u3001\u5ee3\u544a\u6e2c\u91cf\u53ca\u7522\u54c1\u7814\u767c","description":"\u53ef\u63d0\u4f9b\u57fa\u672c\u5ee3\u544a\u3002\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5167\u5bb9\u3002\u53ef\u65b0\u589e\u66f4\u591a\u8cc7\u6599\u4ee5\u4f7f\u5167\u5bb9\u66f4\u52a0\u500b\u4eba\u5316\u3002\u53ef\u6e2c\u91cf\u5ee3\u544a\u6548\u679c\u3002\u53ef\u4f7f\u7528\u8cc7\u6599\u4ee5\u5efa\u7acb\u6216\u6539\u5584\u7528\u6236\u9ad4\u9a57\u3001\u7cfb\u7d71\u53ca\u8edf\u4ef6\u3002"},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"\u53f7\u5806\u53e0\u65b9\u6848 - \u5e7f\u544a\u4e2a\u6027\u5316\u5b9a\u5236\u3001\u5e7f\u544a\u8861\u91cf\u548c\u5e7f\u544a\u4ea7\u54c1\u5f00\u53d1","description":"\u53ef\u4ee5\u6839\u636e\u8d44\u6599\u4e2a\u6027\u5316\u5b9a\u5236\u5e7f\u544a\u3002\u53ef\u4ee5\u6dfb\u52a0\u66f4\u591a\u6570\u636e\u4ee5\u4fbf\u66f4\u597d\u5730\u4e2a\u6027\u5316\u5b9a\u5236\u5e7f\u544a\u3002\u53ef\u4ee5\u8861\u91cf\u5e7f\u544a\u6548\u679c\u3002\u6570\u636e\u53ef\u7528\u4e8e\u6784\u5efa\u6216\u6539\u5584\u7528\u6237\u4f53\u9a8c\u3001\u7cfb\u7edf\u548c\u8f6f\u4ef6\u3002"},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"\u53f7\u5806\u53e0\u65b9\u6848 - \u5e7f\u544a\u4e2a\u6027\u5316\u5b9a\u5236\u3001\u5e7f\u544a\u8861\u91cf\u3001\u5e7f\u544a\u53d7\u4f17\u5206\u6790\u548c\u5e7f\u544a\u4ea7\u54c1\u5f00\u53d1","description":"\u53ef\u4ee5\u6839\u636e\u8d44\u6599\u4e2a\u6027\u5316\u5b9a\u5236\u5e7f\u544a\u3002\u53ef\u4ee5\u6dfb\u52a0\u66f4\u591a\u6570\u636e\u4ee5\u4fbf\u66f4\u597d\u5730\u4e2a\u6027\u5316\u5b9a\u5236\u5e7f\u544a\u3002\u53ef\u4ee5\u8861\u91cf\u5e7f\u544a\u6548\u679c\u3002\u53ef\u4ee5\u5bf9\u89c2\u770b\u8fc7\u5e7f\u544a\u53ca\u5176\u5185\u5bb9\u7684\u53d7\u4f17\u8fdb\u884c\u5206\u6790\u3002\u6570\u636e\u53ef\u7528\u4e8e\u6784\u5efa\u6216\u6539\u5584\u7528\u6237\u4f53\u9a8c\u3001\u7cfb\u7edf\u548c\u8f6f\u4ef6\u3002"},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"\u53f7\u5806\u53e0\u65b9\u6848 - \u5e7f\u544a\u4e2a\u6027\u5316\u5b9a\u5236\u3001\u5e7f\u544a\u53ca\u5176\u5185\u5bb9\u8861\u91cf\u3001\u5e7f\u544a\u53d7\u4f17\u5206\u6790\u548c\u5e7f\u544a\u4ea7\u54c1\u5f00\u53d1","description":"\u53ef\u4ee5\u6839\u636e\u8d44\u6599\u4e2a\u6027\u5316\u5b9a\u5236\u5e7f\u544a\u3002\u53ef\u4ee5\u6dfb\u52a0\u66f4\u591a\u6570\u636e\u4ee5\u4fbf\u66f4\u597d\u5730\u4e2a\u6027\u5316\u5b9a\u5236\u5e7f\u544a\u3002\u53ef\u4ee5\u8861\u91cf\u5e7f\u544a\u53ca\u5176\u5185\u5bb9\u6548\u679c\u3002\u53ef\u4ee5\u5bf9\u89c2\u770b\u8fc7\u5e7f\u544a\u53ca\u5176\u5185\u5bb9\u7684\u53d7\u4f17\u8fdb\u884c\u5206\u6790\u3002\u6570\u636e\u53ef\u7528\u4e8e\u6784\u5efa\u6216\u6539\u5584\u7528\u6237\u4f53\u9a8c\u3001\u7cfb\u7edf\u548c\u8f6f\u4ef6\u3002"},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"\u53f7\u5806\u53e0\u65b9\u6848 - \u5e7f\u544a\u4e2a\u6027\u5316\u5b9a\u5236\u3001\u4e2a\u6027\u5316\u5e7f\u544a\u5185\u5bb9\u5c55\u793a\u3001\u5e7f\u544a\u53ca\u5176\u5185\u5bb9\u8861\u91cf\u3001\u5e7f\u544a\u53d7\u4f17\u5206\u6790\u548c\u5e7f\u544a\u4ea7\u54c1\u5f00\u53d1","description":"\u53ef\u4ee5\u6839\u636e\u8d44\u6599\u4e2a\u6027\u5316\u5b9a\u5236\u5e7f\u544a\u53ca\u5176\u5185\u5bb9\u3002\u53ef\u4ee5\u6dfb\u52a0\u66f4\u591a\u6570\u636e\u4ee5\u4fbf\u66f4\u597d\u5730\u4e2a\u6027\u5316\u5b9a\u5236\u5e7f\u544a\u3002\u53ef\u4ee5\u8861\u91cf\u5e7f\u544a\u53ca\u5176\u5185\u5bb9\u6548\u679c\u3002\u53ef\u4ee5\u5bf9\u89c2\u770b\u8fc7\u5e7f\u544a\u53ca\u5176\u5185\u5bb9\u7684\u53d7\u4f17\u8fdb\u884c\u5206\u6790\u3002\u6570\u636e\u53ef\u7528\u4e8e\u6784\u5efa\u6216\u6539\u5584\u7528\u6237\u4f53\u9a8c\u3001\u7cfb\u7edf\u548c\u8f6f\u4ef6\u3002"},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"\u53f7\u5806\u53e0\u65b9\u6848 - \u5e7f\u544a\u53ca\u5185\u5bb9\u5b9a\u5236\u3001\u5e7f\u544a\u53ca\u5176\u5185\u5bb9\u8861\u91cf\u3001\u5e7f\u544a\u53d7\u4f17\u5206\u6790\u548c\u5e7f\u544a\u4ea7\u54c1\u5f00\u53d1","description":"\u53ef\u4ee5\u6839\u636e\u8d44\u6599\u4e2a\u6027\u5316\u5b9a\u5236\u5e7f\u544a\u53ca\u5176\u5185\u5bb9\u3002\u53ef\u4ee5\u6dfb\u52a0\u66f4\u591a\u6570\u636e\u4ee5\u4fbf\u66f4\u597d\u5730\u5b9a\u5236\u5e7f\u544a\u53ca\u5176\u5185\u5bb9\u3002\u53ef\u4ee5\u8861\u91cf\u5e7f\u544a\u53ca\u5176\u5185\u5bb9\u6548\u679c\u3002\u53ef\u4ee5\u5bf9\u89c2\u770b\u8fc7\u5e7f\u544a\u53ca\u5176\u5185\u5bb9\u7684\u53d7\u4f17\u8fdb\u884c\u5206\u6790\u3002\u6570\u636e\u53ef\u7528\u4e8e\u6784\u5efa\u6216\u6539\u5584\u7528\u6237\u4f53\u9a8c\u3001\u7cfb\u7edf\u548c\u8f6f\u4ef6\u3002"}}} \ No newline at end of file +{"vendorListVersion":94,"lastUpdated":"2021-06-10T16:44:07Z","purposes":{"1":{"id":1,"name":"\u5728\u88dd\u7f6e\u5132\u5b58\u548c\u2215\u6216\u5b58\u53d6\u8cc7\u8a0a","description":"Cookie\u3001\u88dd\u7f6e\u8b58\u5225\u7b26\u6216\u5176\u4ed6\u8cc7\u6599\u53ef\u80fd\u70ba\u4e86\u5411\u60a8\u8ff0\u660e\u7684\u76ee\u7684\uff0c\u800c\u5132\u5b58\u65bc\u6216\u5b58\u53d6\u81ea\u60a8\u7684\u88dd\u7f6e\u3002","descriptionLegal":"\u4f9b\u61c9\u5546\u53ef\uff1a\n* \u5728\u88dd\u7f6e\u5132\u5b58\u548c\u5b58\u53d6\u8cc7\u8a0a\uff0c\u4f8b\u5982\u50b3\u9001\u4e88\u7528\u6236\u7684 Cookie \u53ca\u88dd\u7f6e\u8b58\u5225\u7b26\u3002\n"},"2":{"id":2,"name":"\u9078\u64c7\u57fa\u672c\u5ee3\u544a","description":"\u6309\u7167\u60a8\u6aa2\u8996\u7684\u5167\u5bb9\u3001\u4f7f\u7528\u7684\u61c9\u7528\u7a0b\u5f0f\u3001\u5927\u7d04\u4f4d\u7f6e\u6216\u88dd\u7f6e\u985e\u578b\u5411\u60a8\u986f\u793a\u5ee3\u544a\u3002","descriptionLegal":"\u9078\u64c7\u57fa\u672c\u5ee3\u544a \u4f9b\u61c9\u5546\u53ef\uff1a\n* \u4f7f\u7528\u6709\u95dc\u5ee3\u544a\u986f\u793a\u80cc\u666f\u7684\u5be6\u6642\u8cc7\u8a0a\uff0c\u4ee5\u986f\u793a\u5ee3\u544a\uff0c\u5305\u62ec\u95dc\u65bc\u5167\u5bb9\u53ca\u88dd\u7f6e\u7684\u8cc7\u8a0a\uff0c\u4f8b\u5982\u88dd\u7f6e\u985e\u578b\u53ca\u529f\u80fd\u3001\u7528\u6236\u4ee3\u7406\u3001URL \u4f4d\u5740\u3001IP \u4f4d\u5740\u3002 \n* \u4f7f\u7528\u7528\u6236\u7684\u975e\u6e96\u78ba\u5730\u7406\u4f4d\u7f6e\u8cc7\u6599\u3002\n* \u63a7\u5236\u5411\u7528\u6236\u986f\u793a\u5ee3\u544a\u7684\u983b\u7387\u3002\n* \u5b89\u6392\u5411\u7528\u6236\u986f\u793a\u5ee3\u544a\u7684\u6b21\u5e8f\u3002\n* \u9632\u6b62\u4ee5\u4e0d\u7576\u7de8\u8f2f\uff08\u54c1\u724c\u5371\u6a5f\uff09\u5f62\u5f0f\u50b3\u905e\u5ee3\u544a\u3002\n\u4f9b\u61c9\u5546\u4e0d\u53ef\uff1a\n* \u5728\u7f3a\u4e4f\u5275\u5efa\u500b\u4eba\u5316\u5ee3\u544a\u6a94\u6848\u7684\u7368\u7acb\u6cd5\u5f8b\u57fa\u790e\u4e0b\uff0c\u4f7f\u7528\u6b64\u8cc7\u8a0a\u5275\u5efa\u500b\u4eba\u5316\u5ee3\u544a\u6a94\u6848\u4ee5\u9078\u64c7\u65e5\u5f8c\u5ee3\u544a\u3002\n\u8a3b\uff1a\u975e\u6e96\u78ba\u50c5\u6307\u5bb9\u8a31\u81f3\u5c11 500 \u7c73\u534a\u5f91\u7684\u5927\u7d04\u4f4d\u7f6e\u3002\n"},"3":{"id":3,"name":"\u5275\u5efa\u500b\u4eba\u5316\u5ee3\u544a\u6a94\u6848","description":"\u70ba\u5411\u60a8\u986f\u793a\u8207\u60a8\u76f8\u95dc\u7684\u500b\u4eba\u5316\u5ee3\u544a\uff0c\u53ef\u5efa\u7acb\u95dc\u65bc\u60a8\u53ca\u60a8\u8208\u8da3\u7684\u6a94\u6848\u3002","descriptionLegal":"\u70ba\u5275\u5efa\u500b\u4eba\u5316\u5ee3\u544a\u6a94\u6848\uff0c\u4f9b\u61c9\u5546\u53ef\uff1a\n* \u6536\u96c6\u6709\u95dc\u7528\u6236\u7684\u8cc7\u8a0a\uff0c\u5305\u62ec\u7528\u6236\u6d3b\u52d5\u3001\u8208\u8da3\u3001\u7db2\u7ad9\u6216\u61c9\u7528\u7a0b\u5f0f\u5230\u8a2a\u3001\u4eba\u53e3\u7d71\u8a08\u8cc7\u8a0a\u6216\u4f4d\u7f6e\uff0c\u4ee5\u5275\u5efa\u6216\u7de8\u8f2f\u7528\u65bc\u500b\u4eba\u5316\u5ee3\u544a\u7684\u7528\u6236\u6a94\u6848\u3002\n*\u5c06\u6b64\u4fe1\u606f\u4e0e\u5148\u524d\u6536\u96c6\u7684\u5176\u4ed6\u4fe1\u606f\uff08\u5305\u62ec\u4ece\u5404\u4e2a\u7f51\u7ad9\u548c\u5e94\u7528\u7a0b\u5e8f\u4e2d\u6536\u96c6\u5230\u7684\u4fe1\u606f\uff09\u7ed3\u5408\u8d77\u6765\uff0c\u4ee5\u521b\u5efa\u6216\u7f16\u8f91\u7528\u4e8e\u4e2a\u6027\u5316\u5e7f\u544a\u7684\u7528\u6237\u4e2a\u4eba\u8d44\u6599\u3002"},"4":{"id":4,"name":"\u9078\u64c7\u500b\u4eba\u5316\u5ee3\u544a","description":"\u500b\u4eba\u5316\u5ee3\u544a\u53ef\u6309\u7167\u95dc\u65bc\u60a8\u7684\u500b\u4eba\u6a94\u6848\u800c\u5411\u60a8\u986f\u793a\u3002","descriptionLegal":"\u70ba\u9078\u64c7\u500b\u4eba\u5316\u6a94\u6848\uff0c\u4f9b\u61c9\u5546\u53ef\uff1a\n* \u6309\u7167\u7528\u6236\u6a94\u6848\u6216\u5176\u4ed6\u7528\u6236\u8cc7\u6599\u8a18\u9304\uff0c\u5305\u62ec\u7528\u6236\u7684\u904e\u5f80\u6d3b\u52d5\u3001\u8208\u8da3\u3001\u5230\u8a2a\u7684\u7db2\u7ad9\u6216\u61c9\u7528\u7a0b\u5f0f\u3001\u4f4d\u7f6e\u6216\u4eba\u53e3\u7d71\u8a08\u8cc7\u8a0a\uff0c\u9078\u64c7\u500b\u4eba\u5316\u5ee3\u544a\u3002\n"},"5":{"id":5,"name":"\u5275\u5efa\u500b\u4eba\u5316\u5167\u5bb9\u6a94\u6848","description":"\u70ba\u5411\u60a8\u986f\u793a\u8207\u60a8\u76f8\u95dc\u7684\u500b\u4eba\u5316\u5167\u5bb9\uff0c\u53ef\u5efa\u7acb\u95dc\u65bc\u60a8\u53ca\u60a8\u7684\u8208\u8da3\u7684\u6a94\u6848\u3002","descriptionLegal":"\u70ba\u5275\u5efa\u500b\u4eba\u5316\u5167\u5bb9\u6a94\u6848\uff0c\u4f9b\u61c9\u5546\u53ef\uff1a\n* \u6536\u96c6\u6709\u95dc\u7528\u6236\u7684\u8cc7\u6599\uff0c\u5305\u62ec\u7528\u6236\u6d3b\u52d5\u3001\u8208\u8da3\u3001\u7db2\u7ad9\u6216\u61c9\u7528\u7a0b\u5f0f\u5230\u8a2a\u3001\u57fa\u672c\u8cc7\u6599\u6216\u5730\u9ede\uff0c\u4ee5\u5275\u5efa\u6216\u7de8\u8f2f\u7528\u65bc\u500b\u4eba\u5316\u5167\u5bb9\u7684\u7528\u6236\u6a94\u6848\u3002\n*\u5c06\u6b64\u4fe1\u606f\u4e0e\u5148\u524d\u6536\u96c6\u7684\u5176\u4ed6\u4fe1\u606f\uff08\u5305\u62ec\u4ece\u5404\u4e2a\u7f51\u7ad9\u548c\u5e94\u7528\u7a0b\u5e8f\u4e2d\u6536\u96c6\u5230\u7684\u4fe1\u606f\uff09\u7ed3\u5408\u8d77\u6765\uff0c\u4ee5\u521b\u5efa\u6216\u7f16\u8f91\u7528\u4e8e\u4e2a\u6027\u5316\u5185\u5bb9\u7684\u7528\u6237\u4e2a\u4eba\u8d44\u6599\u3002"},"6":{"id":6,"name":"\u9078\u64c7\u500b\u4eba\u5316\u5167\u5bb9","description":"\u500b\u4eba\u5316\u5167\u5bb9\u53ef\u6309\u7167\u95dc\u65bc\u60a8\u7684\u500b\u4eba\u6a94\u6848\u800c\u5411\u60a8\u986f\u793a\u3002","descriptionLegal":"\u70ba\u9078\u64c7\u500b\u4eba\u5316\u5167\u5bb9\uff0c\u4f9b\u61c9\u5546\u53ef\uff1a\n* \u6309\u7167\u7528\u6236\u6a94\u6848\u6216\u5176\u4ed6\u7528\u6236\u8cc7\u6599\u8a18\u9304\uff0c\u5305\u62ec\u7528\u6236\u7684\u904e\u5f80\u6d3b\u52d5\u3001\u8208\u8da3\u3001\u5230\u8a2a\u7684\u7db2\u7ad9\u6216\u61c9\u7528\u7a0b\u5f0f\u3001\u4f4d\u7f6e\u6216\u57fa\u672c\u8cc7\u6599\uff0c\u9078\u64c7\u500b\u4eba\u5316\u5167\u5bb9\u3002\n"},"7":{"id":7,"name":"\u6e2c\u91cf\u5ee3\u544a\u6548\u679c","description":"\u53ef\u6e2c\u91cf\u60a8\u6240\u770b\u6216\u6240\u4e92\u52d5\u5ee3\u544a\u7684\u8868\u73fe\u53ca\u6210\u6548\u3002","descriptionLegal":"\u70ba\u6e2c\u91cf\u5ee3\u544a\u6548\u679c\uff0c\u4f9b\u61c9\u5546\u53ef\uff1a\n* \u6e2c\u91cf\u7528\u6236\u662f\u5426\u548c\u5982\u4f55\u5f97\u5230\u5ee3\u544a\u50b3\u905e\u548c\u8207\u4e4b\u4e92\u52d5\n* \u63d0\u4f9b\u5ee3\u544a\u5831\u544a\uff0c\u5305\u62ec\u5176\u6210\u6548\u53ca\u8868\u73fe\n* \u4f7f\u7528\u7528\u6236\u8207\u5ee3\u544a\u4e92\u52d5\u671f\u9593\u6240\u5f97\u7684\u8cc7\u6599\uff0c\u5c31\u8457\u8207\u5ee3\u544a\u4e92\u52d5\u7684\u7528\u6236\u63d0\u4f9b\u5831\u544a\n* \u5c31\u8457\u8ca1\u7522\u4e0a\u986f\u793a\u7684\u5ee3\u544a\u5411\u767c\u4f48\u8005\u63d0\u4f9b\u5831\u544a\n* \u6e2c\u91cf\u5ee3\u544a\u662f\u5426\u6295\u653e\u65bc\u9069\u7576\u7684\u7de8\u8f2f\u74b0\u5883\uff08\u54c1\u724c\u5b89\u5168\uff09\n* \u91d0\u5b9a\u770b\u5230\u5ee3\u544a\u7684\u6a5f\u6703\u767e\u5206\u6bd4\u4ee5\u53ca\u67e5\u770b\u6a5f\u6703\u7684\u6642\u9577 \n\u4f9b\u61c9\u5546\u4e0d\u53ef\uff1a\n* \u5728\u7f3a\u4e4f\u904b\u7528\u5e02\u5834\u7814\u7a76\u5be6\u73fe\u6d1e\u5bdf\u53d7\u773e\u7684\u7368\u7acb\u6cd5\u5f8b\u57fa\u790e\u4e0b\uff0c\u5c07\u9762\u677f\u6216\u985e\u4f3c\u65b9\u5f0f\u5c0e\u51fa\u7684\u53d7\u773e\u6d1e\u5bdf\u8cc7\u6599\u7528\u65bc\u5ee3\u544a\u6e2c\u91cf\u8cc7\u6599\u3002\n"},"8":{"id":8,"name":"\u6e2c\u91cf\u5167\u5bb9\u6548\u679c","description":"\u53ef\u6e2c\u91cf\u60a8\u6240\u770b\u6216\u6240\u4e92\u52d5\u5167\u5bb9\u7684\u8868\u73fe\u53ca\u6210\u6548\u3002","descriptionLegal":"\u70ba\u6e2c\u91cf\u5167\u5bb9\u6548\u679c\uff0c\u4f9b\u61c9\u5546\u53ef\uff1a\n* \u6e2c\u91cf\u548c\u5831\u544a\u7528\u6236\u5982\u4f55\u5f97\u5230\u5ee3\u544a\u50b3\u905e\u548c\u8207\u4e4b\u4e92\u52d5\u3002\n* \u4f7f\u7528\u76f4\u63a5\u6e2c\u91cf\u6216\u5df2\u77e5\u7684\u8cc7\u6599\uff0c\u5c31\u8457\u8207\u5167\u5bb9\u4e92\u52d5\u7684\u7528\u6236\u63d0\u4f9b\u5831\u544a\n\u4f9b\u61c9\u5546\u4e0d\u53ef\uff1a\n* \u6e2c\u91cf\u7528\u6236\u662f\u5426\u548c\u5982\u4f55\u5f97\u5230\u5ee3\u544a\uff08\u5305\u62ec\u539f\u751f\u5ee3\u544a\uff09\u50b3\u905e\u548c\u8207\u4e4b\u4e92\u52d5\u3002\n* \u5728\u7f3a\u4e4f\u904b\u7528\u5e02\u5834\u7814\u7a76\u5be6\u73fe\u6d1e\u5bdf\u53d7\u773e\u7684\u7368\u7acb\u6cd5\u5f8b\u57fa\u790e\u4e0b\uff0c\u5c07\u9762\u677f\u6216\u985e\u4f3c\u65b9\u5f0f\u5c0e\u51fa\u7684\u53d7\u773e\u6d1e\u5bdf\u8cc7\u6599\u7528\u65bc\u5ee3\u544a\u6e2c\u91cf\u8cc7\u6599\u3002\n"},"9":{"id":9,"name":"\u904b\u7528\u5e02\u5834\u7814\u7a76\u5be6\u73fe\u6d1e\u5bdf\u53d7\u773e","description":"\u5e02\u5834\u7814\u7a76\u53ef\u7528\u65bc\u591a\u52a0\u4e86\u89e3\u5230\u8a2a\u7db2\u7ad9\u2215\u61c9\u7528\u7a0b\u5f0f\u548c\u6aa2\u8996\u5ee3\u544a\u7684\u53d7\u773e\u3002","descriptionLegal":"\u70ba\u904b\u7528\u5e02\u5834\u7814\u7a76\u5be6\u73fe\u6d1e\u5bdf\u53d7\u773e\uff0c\u4f9b\u61c9\u5546\u53ef\uff1a\n* \u900f\u904e\u9762\u677f\u6216\u985e\u4f3c\u65b9\u5f0f\u5c0e\u51fa\u7684\u6d1e\u5bdf\u8cc7\u6599\uff0c\u5c31\u8457\u5ee3\u544a\u63a5\u89f8\u7684\u53d7\u773e\u5411\u5ee3\u544a\u5546\u6216\u5176\u4ee3\u8868\u63d0\u4f9b\u5f59\u6574\u5831\u544a\u3002\n* \u900f\u904e\u9762\u677f\u6216\u985e\u4f3c\u65b9\u5f0f\u5c0e\u51fa\u7684\u6d1e\u5bdf\u8cc7\u6599\uff0c\u5c31\u8457\u63a5\u6536\u5167\u5bb9\u548c\u2215\u6216\u5ee3\u544a\u6216\u8207\u4e4b\u4e92\u52d5\u7684\u53d7\u773e\u5411\u767c\u4f48\u8005\u63d0\u4f9b\u5f59\u6574\u5831\u544a\u3002\n* \u5982\u679c\u4f9b\u61c9\u5546\u5df2\u8072\u660e\u914d\u5c0d\u548c\u7d50\u5408\u7dda\u4e0b\u8cc7\u6599\u4f86\u6e90\uff08\u529f\u80fd 1\uff09\uff0c\u5247\u5c07\u7dda\u4e0b\u8cc7\u6599\u95dc\u806f\u81f3\u7dda\u4e0a\u7528\u6236\u4ee5\u85c9\u8457\u5e02\u5834\u7814\u7a76\u6d1e\u5bdf\u53d7\u773e\n\u4f9b\u61c9\u5546\u4e0d\u53ef\uff1a\n* \u5728\u7f3a\u4e4f\u6e2c\u91cf\u5ee3\u544a\u6548\u679c\u7684\u7368\u7acb\u6cd5\u5f8b\u57fa\u790e\u4e0b\uff0c\u6e2c\u91cf\u7279\u5b9a\u7528\u6236\u6240\u63a5\u6536\u6216\u4e92\u52d5\u7684\u5ee3\u544a\u7684\u8868\u73fe\u53ca\u6210\u6548\u3002\n* \u5728\u7f3a\u4e4f\u6e2c\u91cf\u5167\u5bb9\u6548\u679c\u7684\u7368\u7acb\u6cd5\u5f8b\u57fa\u790e\u4e0b\uff0c\u6e2c\u91cf\u7279\u5b9a\u7528\u6236\u63a5\u6536\u7684\u5167\u5bb9\u4ee5\u53ca\u7b87\u4e2d\u4e92\u52d5\u65b9\u5f0f\u3002\n"},"10":{"id":10,"name":"\u7814\u767c\u548c\u6539\u5584\u7522\u54c1","description":"\u60a8\u7684\u8cc7\u6599\u53ef\u7528\u65bc\u6539\u5584\u73fe\u6709\u7cfb\u7d71\u53ca\u8edf\u4ef6\uff0c\u4e26\u7814\u767c\u65b0\u7522\u54c1\u3002","descriptionLegal":"\u70ba\u7814\u767c\u65b0\u7522\u54c1\u548c\u6539\u5584\u7522\u54c1\uff0c\u4f9b\u61c9\u5546\u53ef\uff1a\n* \u4f7f\u7528\u8cc7\u6599\u4ee5\u900f\u904e\u65b0\u589e\u529f\u80fd\u6539\u5584\u73fe\u6709\u7522\u54c1\uff0c\u4e26\u7814\u767c\u65b0\u7522\u54c1\n* \u900f\u904e\u6a5f\u5668\u5b78\u7fd2\u5275\u5efa\u65b0\u6a21\u578b\u53ca\u6f14\u7b97\u6cd5\n\u4f9b\u61c9\u5546\u4e0d\u53ef\uff1a\n* \u6839\u64da\u6b64\u76ee\u7684\u800c\u9032\u884c\u5176\u4ed6\u76ee\u7684\u5141\u8a31\u7684\u4efb\u4f55\u5176\u4ed6\u8cc7\u6599\u8655\u7406\u64cd\u4f5c\n"}},"specialPurposes":{"1":{"id":1,"name":"\u78ba\u4fdd\u5b89\u5168\u3001\u9632\u6b62\u6b3a\u8a50\u548c\u6392\u9664\u6545\u969c","description":"\u60a8\u7684\u8cc7\u6599\u53ef\u80fd\u7528\u65bc\u76e3\u5bdf\u548c\u9632\u6b62\u6b3a\u8a50\u6d3b\u52d5\uff0c\u4e26\u78ba\u4fdd\u7cfb\u7d71\u53ca\u7a0b\u5e8f\u80fd\u5920\u5b89\u5168\u5730\u6b63\u5e38\u904b\u4f5c\u3002","descriptionLegal":"\u70ba\u78ba\u4fdd\u5b89\u5168\u3001\u9632\u6b62\u6b3a\u8a50\u548c\u6392\u9664\u6545\u969c\uff0c\u4f9b\u61c9\u5546\u53ef\uff1a\n* \u78ba\u4fdd\u5b89\u5168\u50b3\u8f38\u8cc7\u6599\u3002 \n* \u5075\u6e2c\u548c\u9632\u6b62\u60e1\u610f\u3001\u865b\u5047\u3001\u7121\u6548\u6216\u975e\u6cd5\u6d3b\u52d5\u3002\n* \u78ba\u4fdd\u6b63\u5e38\u800c\u6709\u6548\u5730\u64cd\u4f5c\u7cfb\u7d71\u53ca\u7a0b\u5e8f\uff0c\u5305\u62ec\u76e3\u5bdf\u548c\u63d0\u5347\u5141\u8a31\u76ee\u7684\u4e2d\u6d89\u53ca\u7684\u7cfb\u7d71\u6548\u80fd\u53ca\u7a0b\u5e8f\u3002\n\u4f9b\u61c9\u5546\u4e0d\u53ef\uff1a\n* \u6839\u64da\u6b64\u76ee\u7684\u800c\u9032\u884c\u5176\u4ed6\u76ee\u7684\u5141\u8a31\u7684\u4efb\u4f55\u5176\u4ed6\u8cc7\u6599\u8655\u7406\u64cd\u4f5c\u3002\n\u8a3b\uff1a\u70ba\u78ba\u4fdd\u5b89\u5168\u3001\u9632\u6b62\u6b3a\u8a50\u548c\u6392\u9664\u6545\u969c\u800c\u6536\u96c6\u548c\u4f7f\u7528\u7684\u8cc7\u6599\uff0c\u53ef\u80fd\u5305\u62ec\u70ba\u4f5c\u8b58\u5225\u800c\u81ea\u52d5\u767c\u9001\u7684\u88dd\u7f6e\u7279\u5fb5\u3001\u6e96\u78ba\u7684\u5730\u7406\u4f4d\u7f6e\u8cc7\u6599\uff0c\u4ee5\u53ca\u70ba\u4f5c\u8b58\u5225\u800c\u900f\u904e\u4e3b\u52d5\u6383\u63cf\u88dd\u7f6e\u7279\u5fb5\u6240\u5f97\u4f46\u7121\u53e6\u884c\u62ab\u9732\u548c\u2215\u6216\u63a5\u53d7\u7684\u8cc7\u6599\u3002\n"},"2":{"id":2,"name":"\u6280\u8853\u6027\u50b3\u905e\u5ee3\u544a\u6216\u5167\u5bb9","description":"\u60a8\u7684\u88dd\u7f6e\u53ef\u6536\u767c\u8cc7\u8a0a\uff0c\u4ee5\u8b93\u60a8\u67e5\u770b\u5ee3\u544a\u53ca\u5167\u5bb9\u4e26\u8207\u4e4b\u4e92\u52d5\u3002","descriptionLegal":"\u70ba\u50b3\u905e\u8cc7\u8a0a\u548c\u56de\u61c9\u6280\u8853\u8981\u6c42\uff0c\u4f9b\u61c9\u5546\u53ef\uff1a\n* \u4f7f\u7528\u7528\u6236\u7684 IP \u4f4d\u5740\u4ee5\u5728\u4e92\u806f\u7db2\u50b3\u905e\u5ee3\u544a\n* \u900f\u904e\u5c07\u7528\u6236\u5e36\u81f3\u767b\u9678\u9801\u9762\uff0c\u4ee5\u56de\u61c9\u7528\u6236\u8207\u5ee3\u544a\u7684\u4e92\u52d5\n* \u4f7f\u7528\u7528\u6236\u7684 IP \u4f4d\u5740\u4ee5\u5728\u4e92\u806f\u7db2\u50b3\u905e\u5167\u5bb9\n* \u900f\u904e\u5c07\u7528\u6236\u5e36\u81f3\u767b\u9678\u9801\u9762\uff0c\u4ee5\u56de\u61c9\u7528\u6236\u8207\u5167\u5bb9\u7684\u4e92\u52d5\n* \u4f7f\u7528\u6709\u95dc\u88dd\u7f6e\u985e\u578b\u53ca\u529f\u80fd\u7684\u8cc7\u6599\u4ee5\u50b3\u905e\u5ee3\u544a\u6216\u5167\u5bb9\uff0c\u4f8b\u5982\u4ee5\u88dd\u7f6e\u652f\u63f4\u7684\u683c\u5f0f\u50b3\u905e\u9069\u7576\u5927\u5c0f\u7684\u5ee3\u544a\u5275\u610f\u6216\u5f71\u7247\u6a94\u6848\n\u4f9b\u61c9\u5546\u4e0d\u53ef\uff1a\n* \u6839\u64da\u6b64\u76ee\u7684\u800c\u9032\u884c\u5176\u4ed6\u76ee\u7684\u5141\u8a31\u7684\u4efb\u4f55\u5176\u4ed6\u8cc7\u6599\u8655\u7406\u64cd\u4f5c\n"}},"features":{"1":{"id":1,"name":"\u914d\u5c0d\u548c\u7d50\u5408\u7dda\u4e0b\u8cc7\u6599\u4f86\u6e90","description":"\u4f86\u81ea\u7dda\u4e0b\u8cc7\u6599\u4f86\u6e90\u7684\u8cc7\u6599\u53ef\u7d50\u5408\u60a8\u7684\u7dda\u4e0a\u6d3b\u52d5\uff0c\u4ee5\u7528\u65bc\u4e00\u9805\u6216\u591a\u9805\u76ee\u7684\u3002","descriptionLegal":"\u4f9b\u61c9\u5546\u53ef\uff1a\n* \u7d50\u5408\u7dda\u4e0b\u8cc7\u6599\u8207\u7dda\u4e0a\u8cc7\u6599\uff0c\u4ee5\u7528\u65bc\u4e00\u9805\u6216\u591a\u9805\u76ee\u7684\u6216\u7279\u6b8a\u76ee\u7684\u3002\n"},"2":{"id":2,"name":"\u9023\u7d50\u4e0d\u540c\u88dd\u7f6e","description":"\u53ef\u5c07\u4e0d\u540c\u88dd\u7f6e\u91d0\u5b9a\u70ba\u5c6c\u65bc\u60a8\u6216\u60a8\u7684\u5bb6\u4eba\uff0c\u4ee5\u7528\u65bc\u4e00\u9805\u6216\u591a\u9805\u76ee\u7684\u3002","descriptionLegal":"\u4f9b\u61c9\u5546\u53ef\uff1a\n* \u78ba\u5be6\u91d0\u5b9a\u5169\u90e8\u6216\u4ee5\u4e0a\u7684\u88dd\u7f6e\u5c6c\u65bc\u76f8\u540c\u7528\u6236\u6216\u5bb6\u5ead\n* \u5927\u81f4\u91d0\u5b9a\u5169\u90e8\u6216\u4ee5\u4e0a\u7684\u88dd\u7f6e\u5c6c\u65bc\u76f8\u540c\u7528\u6236\u6216\u5bb6\u5ead\n* \u5728\u7528\u6236\u5df2\u5141\u8a31\u4f9b\u61c9\u5546\u4e3b\u52d5\u6383\u63cf\u88dd\u7f6e\u7279\u5fb5\u4ee5\u4f5c\u8b58\u5225\uff08\u7279\u6b8a\u529f\u80fd 2\uff09\u7684\u60c5\u6cc1\u4e0b\uff0c\u4e3b\u52d5\u6383\u63cf\u88dd\u7f6e\u7279\u5fb5\u4ee5\u4f5c\u5927\u81f4\u91d0\u5b9a\u7684\u8b58\u5225\u7528\u9014\n"},"3":{"id":3,"name":"\u63a5\u6536\u548c\u904b\u7528\u81ea\u52d5\u767c\u9001\u7684\u88dd\u7f6e\u7279\u5fb5\u4ee5\u4f5c\u8b58\u5225","description":"\u53ef\u80fd\u6703\u6309\u7167\u60a8\u88dd\u7f6e\u81ea\u52d5\u767c\u9001\u7684\u8cc7\u8a0a\uff0c\u4f8b\u5982 IP \u4f4d\u5740\u6216\u700f\u89bd\u5668\u985e\u578b\uff0c\u800c\u5340\u5225\u60a8\u7684\u88dd\u7f6e\u8207\u5176\u4ed6\u88dd\u7f6e\u3002","descriptionLegal":"\u4f9b\u61c9\u5546\u53ef\uff1a\n* \u4f7f\u7528\u5f9e\u88dd\u7f6e\u81ea\u52d5\u6536\u96c6\u6240\u5f97\u7684\u5177\u9ad4\u7279\u5fb5\u8cc7\u6599\uff0c\u4f8b\u5982 IP \u4f4d\u5740\u53ca\u7528\u6236\u4ee3\u7406\u5b57\u7b26\u4e32\uff0c\u4ee5\u5275\u5efa\u8b58\u5225\u7b26\u3002\n* \u4f7f\u7528\u8a72\u8b58\u5225\u7b26\u4ee5\u5617\u8a66\u91cd\u65b0\u8b58\u5225\u88dd\u7f6e\u3002\n\u4f9b\u61c9\u5546\u4e0d\u53ef\uff1a\n* \u672a\u7d93\u7528\u6236\u53e6\u884c\u63a5\u53d7\u4e3b\u52d5\u6383\u63cf\u88dd\u7f6e\u7279\u5fb5\u4ee5\u4f5c\u8b58\u5225\u4e0b\uff0c\u900f\u904e\u4e3b\u52d5\u6383\u63cf\u88dd\u7f6e\u7684\u5177\u9ad4\u7279\u5fb5\uff08\u4f8b\u5982\u5b89\u88dd\u5b57\u578b\u6216\u5c4f\u5e55\u89e3\u50cf\u5ea6\uff09\u800c\u6536\u96c6\u8cc7\u6599\uff0c\u4ee5\u5275\u5efa\u8b58\u5225\u7b26\u3002\n* \u4f7f\u7528\u8a72\u8b58\u5225\u7b26\u4ee5\u91cd\u65b0\u8b58\u5225\u88dd\u7f6e\u3002\n"}},"specialFeatures":{"1":{"id":1,"name":"\u4f7f\u7528\u6e96\u78ba\u7684\u5730\u7406\u4f4d\u7f6e\u8cc7\u6599","description":"\u60a8\u7684\u6e96\u78ba\u5730\u7406\u4f4d\u7f6e\u8cc7\u6599\u53ef\u7528\u65bc\u4e00\u9805\u6216\u591a\u9805\u76ee\u7684\u3002\u63db\u8a00\u4e4b\uff0c\u60a8\u7684\u4f4d\u7f6e\u53ef\u6e96\u78ba\u81f3\u6578\u7c73\u4e4b\u5167\u3002","descriptionLegal":"\u4f9b\u61c9\u5546\u53ef\uff1a\n* \u70ba\u4e00\u9805\u6216\u591a\u9805\u76ee\u7684\u800c\u6536\u96c6\u548c\u8655\u7406\u6e96\u78ba\u7684\u5730\u7406\u4f4d\u7f6e\u8cc7\u6599\u3002\n\u8a3b\uff1a\u6e96\u78ba\u7684\u5730\u7406\u4f4d\u7f6e\u8cc7\u6599\u662f\u6307\u4e26\u7121\u9650\u5236\u7528\u6236\u4f4d\u7f6e\u7684\u6e96\u78ba\u5ea6\uff1b\u53ef\u6e96\u78ba\u81f3\u6578\u7c73\u4ee5\u5167\u3002\n\u8a3b\uff1a\u70ba\u5b89\u5168\u6216\u9632\u6b62\u6b3a\u8a50\u800c\u4f7f\u7528\u6b64\u8cc7\u6599\u7684\u67d0\u4e9b\u7528\u9014\u6703\u53e6\u884c\u6db5\u84cb\uff0c\u800c\u7121\u9700\u7528\u6236\u53e6\u884c\u63a5\u53d7\u4f7f\u7528\u6e96\u78ba\u7684\u5730\u7406\u4f4d\u7f6e\u8cc7\u6599\u3002\n"},"2":{"id":2,"name":"\u4e3b\u52d5\u6383\u63cf\u88dd\u7f6e\u7279\u5fb5\u4ee5\u4f5c\u8b58\u5225","description":"\u900f\u904e\u6383\u63cf\u60a8\u88dd\u7f6e\u7279\u5fb5\u7684\u552f\u4e00\u7d44\u5408\uff0c\u53ef\u8b58\u5225\u60a8\u7684\u88dd\u7f6e\u3002","descriptionLegal":"\u4f9b\u61c9\u5546\u53ef\uff1a\n* \u900f\u904e\u4e3b\u52d5\u6383\u63cf\u88dd\u7f6e\u7684\u5177\u9ad4\u7279\u5fb5\uff08\u4f8b\u5982\u5b89\u88dd\u5b57\u578b\u6216\u5c4f\u5e55\u89e3\u50cf\u5ea6\uff09\u800c\u6536\u96c6\u8cc7\u6599\uff0c\u4ee5\u5275\u5efa\u8b58\u5225\u7b26\u3002 \n* \u4f7f\u7528\u8a72\u8b58\u5225\u7b26\u4ee5\u91cd\u65b0\u8b58\u5225\u88dd\u7f6e\u3002\n\u8a3b\uff1a\u70ba\u5b89\u5168\u6216\u9632\u6b62\u6b3a\u8a50\u800c\u4f7f\u7528\u6b64\u8cc7\u6599\u7684\u67d0\u4e9b\u7528\u9014\u6703\u53e6\u884c\u6db5\u84cb\uff0c\u800c\u7121\u9700\u7528\u6236\u53e6\u884c\u63a5\u53d7\u4e3b\u52d5\u6383\u63cf\u88dd\u7f6e\u7279\u5fb5\u4ee5\u4f5c\u8b58\u5225\u3002"}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"\u6e96\u78ba\u7684\u5730\u7406\u4f4d\u7f6e\u8cc7\u6599\uff0c\u4ee5\u53ca\u900f\u904e\u6383\u63cf\u88dd\u7f6e\u4f5c\u51fa\u8b58\u5225","description":"\u53ef\u4ee5\u4f7f\u7528\u6e96\u78ba\u7684\u5730\u7406\u4f4d\u7f6e\u4ee5\u53ca\u6709\u95dc\u88dd\u7f6e\u7279\u5fb5\u7684\u8cc7\u6599\u3002"},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"\u57fa\u672c\u5ee3\u544a\u53ca\u5ee3\u544a\u6e2c\u91cf","description":"\u53ef\u63d0\u4f9b\u57fa\u672c\u5ee3\u544a\u3002\u53ef\u6e2c\u91cf\u5ee3\u544a\u6548\u679c\u3002"},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"\u500b\u4eba\u5316\u5ee3\u544a","description":"\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5ee3\u544a\u3002\u53ef\u65b0\u589e\u66f4\u591a\u8cc7\u6599\u4ee5\u4f7f\u5ee3\u544a\u66f4\u52a0\u500b\u4eba\u5316\u3002"},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"\u57fa\u672c\u5ee3\u544a\u53ca\u5ee3\u544a\u6e2c\u91cf","description":"\u53ef\u63d0\u4f9b\u57fa\u672c\u5ee3\u544a\u3002\u53ef\u6e2c\u91cf\u5ee3\u544a\u6548\u679c\u3002\u53ef\u6d1e\u5bdf\u6aa2\u8996\u5ee3\u544a\u53ca\u5167\u5bb9\u7684\u53d7\u773e\u3002"},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"\u57fa\u672c\u5ee3\u544a\u3001\u500b\u4eba\u5316\u5ee3\u544a\u6a94\u6848\u53ca\u5ee3\u544a\u6e2c\u91cf","description":"\u53ef\u63d0\u4f9b\u57fa\u672c\u5ee3\u544a\u3002\u53ef\u65b0\u589e\u66f4\u591a\u8cc7\u6599\u4ee5\u4f7f\u5ee3\u544a\u66f4\u52a0\u500b\u4eba\u5316\u3002\u53ef\u6e2c\u91cf\u5ee3\u544a\u6548\u679c\u3002"},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"\u500b\u4eba\u5316\u5ee3\u544a\u986f\u793a\u53ca\u6e2c\u91cf","description":"\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5ee3\u544a\u3002\u53ef\u6e2c\u91cf\u5ee3\u544a\u6548\u679c\u3002"},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"\u500b\u4eba\u5316\u5ee3\u544a\u53ca\u5ee3\u544a\u6e2c\u91cf","description":"\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5ee3\u544a\u3002\u53ef\u65b0\u589e\u66f4\u591a\u8cc7\u6599\u4ee5\u4f7f\u5ee3\u544a\u66f4\u52a0\u500b\u4eba\u5316\u3002\u53ef\u6e2c\u91cf\u5ee3\u544a\u6548\u679c\u3002"},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"\u500b\u4eba\u5316\u5ee3\u544a\u3001\u5ee3\u544a\u6e2c\u91cf\u53ca\u53d7\u773e\u6d1e\u5bdf","description":"\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5ee3\u544a\u3002\u53ef\u65b0\u589e\u66f4\u591a\u8cc7\u6599\u4ee5\u4f7f\u5ee3\u544a\u66f4\u52a0\u500b\u4eba\u5316\u3002\u53ef\u6e2c\u91cf\u5ee3\u544a\u6548\u679c\u3002\u53ef\u6d1e\u5bdf\u6aa2\u8996\u5ee3\u544a\u53ca\u5167\u5bb9\u7684\u53d7\u773e\u3002"},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"\u500b\u4eba\u5316\u5ee3\u544a\u6a94\u6848\u53ca\u986f\u793a","description":"\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5ee3\u544a\u3002\u53ef\u65b0\u589e\u66f4\u591a\u8cc7\u6599\u4ee5\u4f7f\u5ee3\u544a\u66f4\u52a0\u500b\u4eba\u5316\u3002"},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"\u500b\u4eba\u5316\u5167\u5bb9","description":"\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5167\u5bb9\u3002\u53ef\u65b0\u589e\u66f4\u591a\u8cc7\u6599\u4ee5\u4f7f\u5167\u5bb9\u66f4\u52a0\u500b\u4eba\u5316\u3002"},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"\u500b\u4eba\u5316\u5167\u5bb9\u986f\u793a\u53ca\u5167\u5bb9\u6e2c\u91cf","description":"\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5167\u5bb9\u3002\u53ef\u6e2c\u91cf\u5167\u5bb9\u6548\u679c\u3002"},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"\u500b\u4eba\u5316\u5167\u5bb9\u986f\u793a\u3001\u5167\u5bb9\u6e2c\u91cf\u53ca\u53d7\u773e\u6d1e\u5bdf","description":"\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5167\u5bb9\u3002\u53ef\u6e2c\u91cf\u5167\u5bb9\u6548\u679c\u3002\u53ef\u6d1e\u5bdf\u6aa2\u8996\u5ee3\u544a\u53ca\u5167\u5bb9\u7684\u53d7\u773e\u3002"},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"\u500b\u4eba\u5316\u5167\u5bb9\u53ca\u5167\u5bb9\u6e2c\u91cf","description":"\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5167\u5bb9\u3002\u53ef\u65b0\u589e\u66f4\u591a\u8cc7\u6599\u4ee5\u4f7f\u5167\u5bb9\u66f4\u52a0\u500b\u4eba\u5316\u3002\u53ef\u6e2c\u91cf\u5167\u5bb9\u6548\u679c\u3002"},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"\u500b\u4eba\u5316\u5167\u5bb9\u3001\u5167\u5bb9\u6e2c\u91cf\u53ca\u53d7\u773e\u6d1e\u5bdf","description":"\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5167\u5bb9\u3002\u53ef\u65b0\u589e\u66f4\u591a\u8cc7\u6599\u4ee5\u4f7f\u5167\u5bb9\u66f4\u52a0\u500b\u4eba\u5316\u3002\u53ef\u6e2c\u91cf\u5167\u5bb9\u6548\u679c\u3002\u53ef\u6d1e\u5bdf\u6aa2\u8996\u5ee3\u544a\u53ca\u5167\u5bb9\u7684\u53d7\u773e\u3002"},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"\u500b\u4eba\u5316\u5167\u5bb9\u3001\u5167\u5bb9\u6e2c\u91cf\u3001\u53d7\u773e\u6d1e\u5bdf\u53ca\u7522\u54c1\u7814\u767c","description":"\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5167\u5bb9\u3002\u53ef\u65b0\u589e\u66f4\u591a\u8cc7\u6599\u4ee5\u4f7f\u5167\u5bb9\u66f4\u52a0\u500b\u4eba\u5316\u3002\u53ef\u6e2c\u91cf\u5167\u5bb9\u6548\u679c\u3002 \u53ef\u6d1e\u5bdf\u6aa2\u8996\u5ee3\u544a\u53ca\u5167\u5bb9\u7684\u53d7\u773e\u3002\u53ef\u4f7f\u7528\u8cc7\u6599\u4ee5\u5efa\u7acb\u6216\u6539\u5584\u7528\u6236\u9ad4\u9a57\u3001\u7cfb\u7d71\u53ca\u8edf\u4ef6"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"\u5ee3\u544a\u548c\u5167\u5bb9\u6e2c\u91cf\u4ee5\u53ca\u53d7\u773e\u6d1e\u5bdf","description":"\u53ef\u6e2c\u91cf\u5ee3\u544a\u53ca\u5167\u5bb9\u6548\u679c\u3002 \u53ef\u6d1e\u5bdf\u6aa2\u8996\u5ee3\u544a\u53ca\u5167\u5bb9\u7684\u53d7\u773e\u3002"},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"\u5ee3\u544a\u53ca\u5167\u5bb9\u6e2c\u91cf","description":"\u53ef\u6e2c\u91cf\u5ee3\u544a\u53ca\u5167\u5bb9\u6548\u679c\u3002"},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"\u5ee3\u544a\u6e2c\u91cf\u53ca\u53d7\u773e\u6d1e\u5bdf","description":"\u53ef\u6e2c\u91cf\u5ee3\u544a\u3002 \u53ef\u6d1e\u5bdf\u6aa2\u8996\u5ee3\u544a\u53ca\u5167\u5bb9\u7684\u53d7\u773e\u3002"},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"\u5ee3\u544a\u53ca\u5167\u5bb9\u6e2c\u91cf\u3001\u53d7\u773e\u6d1e\u5bdf\u53ca\u7522\u54c1\u7814\u767c","description":"\u53ef\u6e2c\u91cf\u5ee3\u544a\u53ca\u5167\u5bb9\u6548\u679c\u3002 \u53ef\u6d1e\u5bdf\u6aa2\u8996\u5ee3\u544a\u53ca\u5167\u5bb9\u7684\u53d7\u773e\u3002\u53ef\u4f7f\u7528\u8cc7\u6599\u4ee5\u5efa\u7acb\u6216\u6539\u5584\u7528\u6236\u9ad4\u9a57\u3001\u7cfb\u7d71\u53ca\u8edf\u4ef6\u3002 \u53ef\u6d1e\u5bdf\u6aa2\u8996\u5ee3\u544a\u53ca\u5167\u5bb9\u7684\u53d7\u773e\u3002"},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"\u5167\u5bb9\u6e2c\u91cf\u53ca\u7522\u54c1\u7814\u767c","description":"\u53ef\u6e2c\u91cf\u5167\u5bb9\u6548\u679c\u3002\u53ef\u4f7f\u7528\u8cc7\u6599\u4ee5\u5efa\u7acb\u6216\u6539\u5584\u7528\u6236\u9ad4\u9a57\u3001\u7cfb\u7d71\u53ca\u8edf\u4ef6\u3002"},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"\u500b\u4eba\u5316\u5ee3\u544a\u53ca\u5167\u5bb9\u986f\u793a\u3001\u5ee3\u544a\u53ca\u5167\u5bb9\u6e2c\u91cf","description":"\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5ee3\u544a\u53ca\u5167\u5bb9\u3002\u53ef\u6e2c\u91cf\u5ee3\u544a\u53ca\u5167\u5bb9\u6548\u679c\u3002"},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"\u500b\u4eba\u5316\u5ee3\u544a\u53ca\u5167\u5bb9\u986f\u793a\u3001\u5ee3\u544a\u53ca\u5167\u5bb9\u6e2c\u91cf\u4ee5\u53ca\u53d7\u773e\u6d1e\u5bdf","description":"\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5ee3\u544a\u53ca\u5167\u5bb9\u3002\u53ef\u6e2c\u91cf\u5ee3\u544a\u53ca\u5167\u5bb9\u6548\u679c\u3002 \u53ef\u6d1e\u5bdf\u6aa2\u8996\u5ee3\u544a\u53ca\u5167\u5bb9\u7684\u53d7\u773e\u3002\u53ef\u4f7f\u7528\u8cc7\u6599\u4ee5\u5efa\u7acb\u6216\u6539\u5584\u7528\u6236\u9ad4\u9a57\u3001\u7cfb\u7d71\u53ca\u8edf\u4ef6\u3002"},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"\u500b\u4eba\u5316\u5ee3\u544a\u53ca\u5167\u5bb9\u3001\u5ee3\u544a\u53ca\u5167\u5bb9\u6e2c\u91cf","description":"\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5ee3\u544a\u53ca\u5167\u5bb9\u3002\u53ef\u65b0\u589e\u66f4\u591a\u8cc7\u6599\u4ee5\u4f7f\u5ee3\u544a\u53ca\u5167\u5bb9\u66f4\u52a0\u500b\u4eba\u5316\u3002\u53ef\u6e2c\u91cf\u5ee3\u544a\u53ca\u5167\u5bb9\u6548\u679c\u3002"},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"\u500b\u4eba\u5316\u5ee3\u544a\u53ca\u5167\u5bb9\u3001\u5ee3\u544a\u53ca\u5167\u5bb9\u6e2c\u91cf\u4ee5\u53ca\u53d7\u773e\u6d1e\u5bdf","description":"\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5ee3\u544a\u53ca\u5167\u5bb9\u3002\u53ef\u65b0\u589e\u66f4\u591a\u8cc7\u6599\u4ee5\u4f7f\u5ee3\u544a\u53ca\u5167\u5bb9\u66f4\u52a0\u500b\u4eba\u5316\u3002\u53ef\u6e2c\u91cf\u5ee3\u544a\u53ca\u5167\u5bb9\u6548\u679c\u3002\u53ef\u6d1e\u5bdf\u6aa2\u8996\u5ee3\u544a\u53ca\u5167\u5bb9\u7684\u53d7\u773e\u3002"},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"\u500b\u4eba\u5316\u5ee3\u544a\u53ca\u5167\u5bb9\u6a94\u6848","description":"\u53ef\u65b0\u589e\u66f4\u591a\u8cc7\u6599\u4ee5\u63d0\u4f9b\u500b\u4eba\u5316\u5ee3\u544a\u53ca\u5167\u5bb9\u3002"},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"\u500b\u4eba\u5316\u5ee3\u544a\u53ca\u5167\u5bb9\u986f\u793a","description":"\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5ee3\u544a\u53ca\u5167\u5bb9\u3002"},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"\u57fa\u672c\u5ee3\u544a\u3001\u5ee3\u544a\u53ca\u5167\u5bb9\u6e2c\u91cf\u4ee5\u53ca\u53d7\u773e\u6d1e\u5bdf","description":"\u53ef\u63d0\u4f9b\u57fa\u672c\u5ee3\u544a\u3002\u53ef\u6e2c\u91cf\u5ee3\u544a\u53ca\u5167\u5bb9\u6548\u679c\u3002\u53ef\u6d1e\u5bdf\u6aa2\u8996\u5ee3\u544a\u53ca\u5167\u5bb9\u7684\u53d7\u773e\u3002"},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"\u500b\u4eba\u5316\u5ee3\u544a\u986f\u793a\u3001\u500b\u4eba\u5316\u5167\u5bb9\u3001\u5ee3\u544a\u53ca\u5167\u5bb9\u6e2c\u91cf\u4ee5\u53ca\u53d7\u773e\u6d1e\u5bdf","description":"\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5ee3\u544a\u53ca\u5167\u5bb9\u3002\u53ef\u65b0\u589e\u66f4\u591a\u8cc7\u6599\u4ee5\u4f7f\u5167\u5bb9\u66f4\u52a0\u500b\u4eba\u5316\u3002\u53ef\u6e2c\u91cf\u5ee3\u544a\u53ca\u5167\u5bb9\u6548\u679c\u3002\u53ef\u6d1e\u5bdf\u6aa2\u8996\u5ee3\u544a\u53ca\u5167\u5bb9\u7684\u53d7\u773e\u3002"},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"\u500b\u4eba\u5316\u5ee3\u544a\u986f\u793a\u3001\u500b\u4eba\u5316\u5167\u5bb9\u3001\u5ee3\u544a\u53ca\u5167\u5bb9\u6e2c\u91cf\u3001\u53d7\u773e\u6d1e\u5bdf\u4ee5\u53ca\u7522\u54c1\u7814\u767c","description":"\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5ee3\u544a\u53ca\u5167\u5bb9\u3002\u53ef\u65b0\u589e\u66f4\u591a\u8cc7\u6599\u4ee5\u4f7f\u5167\u5bb9\u66f4\u52a0\u500b\u4eba\u5316\u3002\u53ef\u6e2c\u91cf\u5ee3\u544a\u53ca\u5167\u5bb9\u6548\u679c\u3002\u53ef\u6d1e\u5bdf\u6aa2\u8996\u5ee3\u544a\u53ca\u5167\u5bb9\u7684\u53d7\u773e\u3002\u53ef\u4f7f\u7528\u8cc7\u6599\u4ee5\u5efa\u7acb\u6216\u6539\u5584\u7528\u6236\u9ad4\u9a57\u3001\u7cfb\u7d71\u53ca\u8edf\u4ef6\u3002"},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"\u57fa\u672c\u5ee3\u544a\u3001\u500b\u4eba\u5316\u5167\u5bb9\u3001\u5ee3\u544a\u53ca\u5167\u5bb9\u6e2c\u91cf\u4ee5\u53ca\u53d7\u773e\u6d1e\u5bdf","description":"\u53ef\u63d0\u4f9b\u57fa\u672c\u5ee3\u544a\u3002\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5167\u5bb9\u3002\u53ef\u65b0\u589e\u66f4\u591a\u8cc7\u6599\u4ee5\u4f7f\u5167\u5bb9\u66f4\u52a0\u500b\u4eba\u5316\u3002\u53ef\u6e2c\u91cf\u5ee3\u544a\u53ca\u5167\u5bb9\u6548\u679c\u3002\u53ef\u6d1e\u5bdf\u6aa2\u8996\u5ee3\u544a\u53ca\u5167\u5bb9\u7684\u53d7\u773e\u3002"},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"\u57fa\u672c\u5ee3\u544a\u3001\u500b\u4eba\u5316\u5167\u5bb9\u3001\u5167\u5bb9\u6e2c\u91cf\u4ee5\u53ca\u53d7\u773e\u6d1e\u5bdf","description":"\u53ef\u63d0\u4f9b\u57fa\u672c\u5ee3\u544a\u3002\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5167\u5bb9\u3002\u53ef\u65b0\u589e\u66f4\u591a\u8cc7\u6599\u4ee5\u4f7f\u5167\u5bb9\u66f4\u52a0\u500b\u4eba\u5316\u3002\u53ef\u6e2c\u91cf\u5ee3\u544a\u53ca\u5167\u5bb9\u6548\u679c\u3002\u53ef\u6d1e\u5bdf\u6aa2\u8996\u5ee3\u544a\u53ca\u5167\u5bb9\u7684\u53d7\u773e\u3002"},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"\u57fa\u672c\u5ee3\u544a\u3001\u500b\u4eba\u5316\u5167\u5bb9\u3001\u5167\u5bb9\u6e2c\u91cf\u3001\u53d7\u773e\u6d1e\u5bdf\u4ee5\u53ca\u7522\u54c1\u7814\u767c","description":"\u53ef\u63d0\u4f9b\u57fa\u672c\u5ee3\u544a\u3002\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5167\u5bb9\u3002\u53ef\u65b0\u589e\u66f4\u591a\u8cc7\u6599\u4ee5\u4f7f\u5167\u5bb9\u66f4\u52a0\u500b\u4eba\u5316\u3002\u53ef\u6e2c\u91cf\u5167\u5bb9\u6548\u679c\u3002\u53ef\u6d1e\u5bdf\u6aa2\u8996\u5ee3\u544a\u53ca\u5167\u5bb9\u7684\u53d7\u773e\u3002\u53ef\u4f7f\u7528\u8cc7\u6599\u4ee5\u5efa\u7acb\u6216\u6539\u5584\u7528\u6236\u9ad4\u9a57\u3001\u7cfb\u7d71\u53ca\u8edf\u4ef6\u3002"},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"\u57fa\u672c\u5ee3\u544a\u3001\u500b\u4eba\u5316\u5167\u5bb9\u53ca\u5ee3\u544a\u6e2c\u91cf","description":"\u53ef\u63d0\u4f9b\u57fa\u672c\u5ee3\u544a\u3002\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5167\u5bb9\u3002\u53ef\u65b0\u589e\u66f4\u591a\u8cc7\u6599\u4ee5\u4f7f\u5167\u5bb9\u66f4\u52a0\u500b\u4eba\u5316\u3002\u53ef\u6e2c\u91cf\u5ee3\u544a\u6548\u679c\u3002\n\n"},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"\u57fa\u672c\u5ee3\u544a\u3001\u500b\u4eba\u5316\u5167\u5bb9\u3001\u5ee3\u544a\u6e2c\u91cf\u53ca\u7522\u54c1\u7814\u767c","description":"\u53ef\u63d0\u4f9b\u57fa\u672c\u5ee3\u544a\u3002\u53ef\u6309\u7167\u500b\u4eba\u6a94\u6848\u63d0\u4f9b\u500b\u4eba\u5316\u5167\u5bb9\u3002\u53ef\u65b0\u589e\u66f4\u591a\u8cc7\u6599\u4ee5\u4f7f\u5167\u5bb9\u66f4\u52a0\u500b\u4eba\u5316\u3002\u53ef\u6e2c\u91cf\u5ee3\u544a\u6548\u679c\u3002\u53ef\u4f7f\u7528\u8cc7\u6599\u4ee5\u5efa\u7acb\u6216\u6539\u5584\u7528\u6236\u9ad4\u9a57\u3001\u7cfb\u7d71\u53ca\u8edf\u4ef6\u3002"},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"\u53f7\u5806\u53e0\u65b9\u6848 - \u5e7f\u544a\u4e2a\u6027\u5316\u5b9a\u5236\u3001\u5e7f\u544a\u8861\u91cf\u548c\u5e7f\u544a\u4ea7\u54c1\u5f00\u53d1","description":"\u53ef\u4ee5\u6839\u636e\u8d44\u6599\u4e2a\u6027\u5316\u5b9a\u5236\u5e7f\u544a\u3002\u53ef\u4ee5\u6dfb\u52a0\u66f4\u591a\u6570\u636e\u4ee5\u4fbf\u66f4\u597d\u5730\u4e2a\u6027\u5316\u5b9a\u5236\u5e7f\u544a\u3002\u53ef\u4ee5\u8861\u91cf\u5e7f\u544a\u6548\u679c\u3002\u6570\u636e\u53ef\u7528\u4e8e\u6784\u5efa\u6216\u6539\u5584\u7528\u6237\u4f53\u9a8c\u3001\u7cfb\u7edf\u548c\u8f6f\u4ef6\u3002"},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"\u53f7\u5806\u53e0\u65b9\u6848 - \u5e7f\u544a\u4e2a\u6027\u5316\u5b9a\u5236\u3001\u5e7f\u544a\u8861\u91cf\u3001\u5e7f\u544a\u53d7\u4f17\u5206\u6790\u548c\u5e7f\u544a\u4ea7\u54c1\u5f00\u53d1","description":"\u53ef\u4ee5\u6839\u636e\u8d44\u6599\u4e2a\u6027\u5316\u5b9a\u5236\u5e7f\u544a\u3002\u53ef\u4ee5\u6dfb\u52a0\u66f4\u591a\u6570\u636e\u4ee5\u4fbf\u66f4\u597d\u5730\u4e2a\u6027\u5316\u5b9a\u5236\u5e7f\u544a\u3002\u53ef\u4ee5\u8861\u91cf\u5e7f\u544a\u6548\u679c\u3002\u53ef\u4ee5\u5bf9\u89c2\u770b\u8fc7\u5e7f\u544a\u53ca\u5176\u5185\u5bb9\u7684\u53d7\u4f17\u8fdb\u884c\u5206\u6790\u3002\u6570\u636e\u53ef\u7528\u4e8e\u6784\u5efa\u6216\u6539\u5584\u7528\u6237\u4f53\u9a8c\u3001\u7cfb\u7edf\u548c\u8f6f\u4ef6\u3002"},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"\u53f7\u5806\u53e0\u65b9\u6848 - \u5e7f\u544a\u4e2a\u6027\u5316\u5b9a\u5236\u3001\u5e7f\u544a\u53ca\u5176\u5185\u5bb9\u8861\u91cf\u3001\u5e7f\u544a\u53d7\u4f17\u5206\u6790\u548c\u5e7f\u544a\u4ea7\u54c1\u5f00\u53d1","description":"\u53ef\u4ee5\u6839\u636e\u8d44\u6599\u4e2a\u6027\u5316\u5b9a\u5236\u5e7f\u544a\u3002\u53ef\u4ee5\u6dfb\u52a0\u66f4\u591a\u6570\u636e\u4ee5\u4fbf\u66f4\u597d\u5730\u4e2a\u6027\u5316\u5b9a\u5236\u5e7f\u544a\u3002\u53ef\u4ee5\u8861\u91cf\u5e7f\u544a\u53ca\u5176\u5185\u5bb9\u6548\u679c\u3002\u53ef\u4ee5\u5bf9\u89c2\u770b\u8fc7\u5e7f\u544a\u53ca\u5176\u5185\u5bb9\u7684\u53d7\u4f17\u8fdb\u884c\u5206\u6790\u3002\u6570\u636e\u53ef\u7528\u4e8e\u6784\u5efa\u6216\u6539\u5584\u7528\u6237\u4f53\u9a8c\u3001\u7cfb\u7edf\u548c\u8f6f\u4ef6\u3002"},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"\u53f7\u5806\u53e0\u65b9\u6848 - \u5e7f\u544a\u4e2a\u6027\u5316\u5b9a\u5236\u3001\u4e2a\u6027\u5316\u5e7f\u544a\u5185\u5bb9\u5c55\u793a\u3001\u5e7f\u544a\u53ca\u5176\u5185\u5bb9\u8861\u91cf\u3001\u5e7f\u544a\u53d7\u4f17\u5206\u6790\u548c\u5e7f\u544a\u4ea7\u54c1\u5f00\u53d1","description":"\u53ef\u4ee5\u6839\u636e\u8d44\u6599\u4e2a\u6027\u5316\u5b9a\u5236\u5e7f\u544a\u53ca\u5176\u5185\u5bb9\u3002\u53ef\u4ee5\u6dfb\u52a0\u66f4\u591a\u6570\u636e\u4ee5\u4fbf\u66f4\u597d\u5730\u4e2a\u6027\u5316\u5b9a\u5236\u5e7f\u544a\u3002\u53ef\u4ee5\u8861\u91cf\u5e7f\u544a\u53ca\u5176\u5185\u5bb9\u6548\u679c\u3002\u53ef\u4ee5\u5bf9\u89c2\u770b\u8fc7\u5e7f\u544a\u53ca\u5176\u5185\u5bb9\u7684\u53d7\u4f17\u8fdb\u884c\u5206\u6790\u3002\u6570\u636e\u53ef\u7528\u4e8e\u6784\u5efa\u6216\u6539\u5584\u7528\u6237\u4f53\u9a8c\u3001\u7cfb\u7edf\u548c\u8f6f\u4ef6\u3002"},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"\u53f7\u5806\u53e0\u65b9\u6848 - \u5e7f\u544a\u53ca\u5185\u5bb9\u5b9a\u5236\u3001\u5e7f\u544a\u53ca\u5176\u5185\u5bb9\u8861\u91cf\u3001\u5e7f\u544a\u53d7\u4f17\u5206\u6790\u548c\u5e7f\u544a\u4ea7\u54c1\u5f00\u53d1","description":"\u53ef\u4ee5\u6839\u636e\u8d44\u6599\u4e2a\u6027\u5316\u5b9a\u5236\u5e7f\u544a\u53ca\u5176\u5185\u5bb9\u3002\u53ef\u4ee5\u6dfb\u52a0\u66f4\u591a\u6570\u636e\u4ee5\u4fbf\u66f4\u597d\u5730\u5b9a\u5236\u5e7f\u544a\u53ca\u5176\u5185\u5bb9\u3002\u53ef\u4ee5\u8861\u91cf\u5e7f\u544a\u53ca\u5176\u5185\u5bb9\u6548\u679c\u3002\u53ef\u4ee5\u5bf9\u89c2\u770b\u8fc7\u5e7f\u544a\u53ca\u5176\u5185\u5bb9\u7684\u53d7\u4f17\u8fdb\u884c\u5206\u6790\u3002\u6570\u636e\u53ef\u7528\u4e8e\u6784\u5efa\u6216\u6539\u5584\u7528\u6237\u4f53\u9a8c\u3001\u7cfb\u7edf\u548c\u8f6f\u4ef6\u3002"}}} \ No newline at end of file diff --git a/src/s1/config/2.0/vendor-list.json b/src/s1/config/2.0/vendor-list.json index 82abbb25..b72c67f4 100644 --- a/src/s1/config/2.0/vendor-list.json +++ b/src/s1/config/2.0/vendor-list.json @@ -1 +1 @@ -{"gvlSpecificationVersion":2,"vendorListVersion":79,"tcfPolicyVersion":2,"lastUpdated":"2021-02-25T16:05:24Z","purposes":{"1":{"id":1,"name":"Store and/or access information on a device","description":"Cookies, device identifiers, or other information can be stored or accessed on your device for the purposes presented to you.","descriptionLegal":"Vendors can:\n* Store and access information on the device such as cookies and device identifiers presented to a user."},"2":{"id":2,"name":"Select basic ads","description":"Ads can be shown to you based on the content you\u2019re viewing, the app you\u2019re using, your approximate location, or your device type.","descriptionLegal":"To do basic ad selection vendors can:\n* Use real-time information about the context in which the ad will be shown, to show the ad, including information about the content and the device, such as: device type and capabilities, user agent, URL, IP address\n* Use a user\u2019s non-precise geolocation data\n* Control the frequency of ads shown to a user.\n* Sequence the order in which ads are shown to a user.\n* Prevent an ad from serving in an unsuitable editorial (brand-unsafe) context\nVendors cannot:\n* Create a personalised ads profile using this information for the selection of future ads without a separate legal basis to create a personalised ads profile.\n* N.B. Non-precise means only an approximate location involving at least a radius of 500 meters is permitted."},"3":{"id":3,"name":"Create a personalised ads profile","description":"A profile can be built about you and your interests to show you personalised ads that are relevant to you.","descriptionLegal":"To create a personalised ads profile vendors can:\n* Collect information about a user, including a user's activity, interests, demographic information, or location, to create or edit a user profile for use in personalised advertising.\n* Combine this information with other information previously collected, including from across websites and apps, to create or edit a user profile for use in personalised advertising."},"4":{"id":4,"name":"Select personalised ads","description":"Personalised ads can be shown to you based on a profile about you.","descriptionLegal":"To select personalised ads vendors can:\n* Select personalised ads based on a user profile or other historical user data, including a user\u2019s prior activity, interests, visits to sites or apps, location, or demographic information."},"5":{"id":5,"name":"Create a personalised content profile","description":"A profile can be built about you and your interests to show you personalised content that is relevant to you.","descriptionLegal":"To create a personalised content profile vendors can:\n* Collect information about a user, including a user's activity, interests, visits to sites or apps, demographic information, or location, to create or edit a user profile for personalising content.\n* Combine this information with other information previously collected, including from across websites and apps, to create or edit a user profile for use in personalising content."},"6":{"id":6,"name":"Select personalised content","description":"Personalised content can be shown to you based on a profile about you.","descriptionLegal":"To select personalised content vendors can:\n* Select personalised content based on a user profile or other historical user data, including a user\u2019s prior activity, interests, visits to sites or apps, location, or demographic information."},"7":{"id":7,"name":"Measure ad performance","description":"The performance and effectiveness of ads that you see or interact with can be measured.","descriptionLegal":"To measure ad performance vendors can:\n* Measure whether and how ads were delivered to and interacted with by a user\n* Provide reporting about ads including their effectiveness and performance\n* Provide reporting about users who interacted with ads using data observed during the course of the user's interaction with that ad\n* Provide reporting to publishers about the ads displayed on their property\n* Measure whether an ad is serving in a suitable editorial environment (brand-safe) context\n* Determine the percentage of the ad that had the opportunity to be seen and the duration of that opportunity\n* Combine this information with other information previously collected, including from across websites and apps\nVendors cannot:\n*Apply panel- or similarly-derived audience insights data to ad measurement data without a Legal Basis to apply market research to generate audience insights (Purpose 9)"},"8":{"id":8,"name":"Measure content performance","description":"The performance and effectiveness of content that you see or interact with can be measured.","descriptionLegal":"To measure content performance vendors can:\n* Measure and report on how content was delivered to and interacted with by users.\n* Provide reporting, using directly measurable or known information, about users who interacted with the content\n* Combine this information with other information previously collected, including from across websites and apps.\nVendors cannot:\n* Measure whether and how ads (including native ads) were delivered to and interacted with by a user.\n* Apply panel- or similarly derived audience insights data to ad measurement data without a Legal Basis to apply market research to generate audience insights (Purpose 9)"},"9":{"id":9,"name":"Apply market research to generate audience insights","description":"Market research can be used to learn more about the audiences who visit sites/apps and view ads.","descriptionLegal":"To apply market research to generate audience insights vendors can:\n* Provide aggregate reporting to advertisers or their representatives about the audiences reached by their ads, through panel-based and similarly derived insights.\n* Provide aggregate reporting to publishers about the audiences that were served or interacted with content and/or ads on their property by applying panel-based and similarly derived insights.\n* Associate offline data with an online user for the purposes of market research to generate audience insights if vendors have declared to match and combine offline data sources (Feature 1)\n* Combine this information with other information previously collected including from across websites and apps. \nVendors cannot:\n* Measure the performance and effectiveness of ads that a specific user was served or interacted with, without a Legal Basis to measure ad performance.\n* Measure which content a specific user was served and how they interacted with it, without a Legal Basis to measure content performance."},"10":{"id":10,"name":"Develop and improve products","description":"Your data can be used to improve existing systems and software, and to develop new products","descriptionLegal":"To develop new products and improve products vendors can:\n* Use information to improve their existing products with new features and to develop new products\n* Create new models and algorithms through machine learning\nVendors cannot:\n* Conduct any other data processing operation allowed under a different purpose under this purpose"}},"specialPurposes":{"1":{"id":1,"name":"Ensure security, prevent fraud, and debug","description":"Your data can be used to monitor for and prevent fraudulent activity, and ensure systems and processes work properly and securely.","descriptionLegal":"To ensure security, prevent fraud and debug vendors can:\n* Ensure data are securely transmitted\n* Detect and prevent malicious, fraudulent, invalid, or illegal activity.\n* Ensure correct and efficient operation of systems and processes, including to monitor and enhance the performance of systems and processes engaged in permitted purposes\nVendors cannot:\n* Conduct any other data processing operation allowed under a different purpose under this purpose.\nNote: Data collected and used to ensure security, prevent fraud, and debug may include automatically-sent device characteristics for identification, precise geolocation data, and data obtained by actively scanning device characteristics for identification without separate disclosure and/or opt-in."},"2":{"id":2,"name":"Technically deliver ads or content","description":"Your device can receive and send information that allows you to see and interact with ads and content.","descriptionLegal":"To deliver information and respond to technical requests vendors can:\n* Use a user\u2019s IP address to deliver an ad over the internet\n* Respond to a user\u2019s interaction with an ad by sending the user to a landing page\n* Use a user\u2019s IP address to deliver content over the internet\n* Respond to a user\u2019s interaction with content by sending the user to a landing page\n* Use information about the device type and capabilities for delivering ads or content, for example, to deliver the right size ad creative or video file in a format supported by the device\nVendors cannot:\n* Conduct any other data processing operation allowed under a different purpose under this purpose"}},"features":{"1":{"id":1,"name":"Match and combine offline data sources","description":"Data from offline data sources can be combined with your online activity in support of one or more purposes","descriptionLegal":"Vendors can:\n* Combine data obtained offline with data collected online in support of one or more Purposes or Special Purposes."},"2":{"id":2,"name":"Link different devices","description":"Different devices can be determined as belonging to you or your household in support of one or more of purposes.","descriptionLegal":"Vendors can:\n* Deterministically determine that two or more devices belong to the same user or household\n* Probabilistically determine that two or more devices belong to the same user or household\n* Actively scan device characteristics for identification for probabilistic identification if users have allowed vendors to actively scan device characteristics for identification (Special Feature 2)"},"3":{"id":3,"name":"Receive and use automatically-sent device characteristics for identification","description":"Your device might be distinguished from other devices based on information it automatically sends, such as IP address or browser type.","descriptionLegal":"Vendors can:\n* Create an identifier using data collected automatically from a device for specific characteristics, e.g. IP address, user-agent string.\n* Use such an identifier to attempt to re-identify a device.\nVendors cannot:\n* Create an identifier using data collected via actively scanning a device for specific characteristics, e.g. installed font or screen resolution without users\u2019 separate opt-in to actively scanning device characteristics for identification.\n* Use such an identifier to re-identify a device."}},"specialFeatures":{"1":{"id":1,"name":"Use precise geolocation data","description":"Your precise geolocation data can be used in support of one or more purposes. This means your location can be accurate to within several meters.","descriptionLegal":"Vendors can:\n* Collect and process precise geolocation data in support of one or more purposes.\nN.B. Precise geolocation means that there are no restrictions on the precision of a user\u2019s location; this can be accurate to within several meters."},"2":{"id":2,"name":"Actively scan device characteristics for identification","description":"Your device can be identified based on a scan of your device's unique combination of characteristics.","descriptionLegal":"Vendors can:\n* Create an identifier using data collected via actively scanning a device for specific characteristics, e.g. installed fonts or screen resolution.\n* Use such an identifier to re-identify a device."}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Precise geolocation data, and identification through device scanning","description":"Precise geolocation and information about device characteristics can be used."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Basic ads, and ad measurement","description":"Basic ads can be served. Ad performance can be measured."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Personalised ads","description":"Ads can be personalised based on a profile. More data can be added to better personalise ads."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Basic ads, ad measurement, and audience insights","description":"Basic ads can be served. Ad performance can be measured. Insights about the audiences who saw the ads and content can be derived."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Basic ads, personalised ads profile, and ad measurement","description":"Basic ads can be served. More data can be added to better personalise ads. Ad performance can be measured."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Personalised ads display and ad measurement","description":"Ads can be personalised based on a profile. Ad performance can be measured."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Personalised ads display, ad measurement, and audience insights","description":"Ads can be personalised based on a profile. Ad performance can be measured. Insights about the audiences who saw the ads and content can be derived."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Personalised ads, and ad measurement","description":"Ads can be personalised based on a profile. More data can be added to better personalise ads. Ad performance can be measured."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Personalised ads, ad measurement, and audience insights","description":"Ads can be personalised based on a profile. More data can be added to better personalise ads. Ad performance can be measured. Insights about the audiences who saw the ads and content can be derived."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Personalised ads profile and display","description":"Ads can be personalised based on a profile. More data can be added to better personalise ads."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Personalised content","description":"Content can be personalised based on a profile. More data can be added to better personalise content."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Personalised content display, and content measurement","description":"Content can be personalised based on a profile. Content performance can be measured."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Personalised content display, content measurement and audience insights","description":"Content can be personalised based on a profile. Content performance can be measured. Insights about the audiences who saw the ads and content can be derived."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Personalised content, and content measurement","description":"Content can be personalised based on a profile. More data can be added to better personalise content. Content performance can be measured."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Personalised content, content measurement and audience insights","description":"Content can be personalised based on a profile. More data can be added to better personalise content. Content performance can be measured. Insights about the audiences who saw the ads and content can be derived."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Personalised content, content measurement, audience insights, and product development","description":"Content can be personalised based on a profile. More data can be added to better personalise content. Content performance can be measured. Insights about the audiences who saw the ads and content can be derived. Data can be used to build or improve user experience, systems, and software"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Ad and content measurement, and audience insights","description":"Ad and content performance can be measured. Insights about the audiences who saw the ads and content can be derived."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Ad and content measurement","description":"Ad and content performance can be measured."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Ad measurement, and audience insights","description":"Ad can be measured. Insights about the audiences who saw the ads and content can be derived."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Ad and content measurement, audience insights, and product development","description":"Ad and content performance can be measured. Insights about the audiences who saw the ads and content can be derived. Data can be used to build or improve user experience, systems, and software. Insights about the audiences who saw the ads and content can be derived."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Content measurement, audience insights, and product development.","description":"Content performance can be measured. Insights about the audiences who saw the ads and content can be derived. Data can be used to build or improve user experience, systems, and software."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Content measurement, and product development","description":"Content performance can be measured. Data can be used to build or improve user experience, systems, and software."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Personalised ads and content display, ad and content measurement","description":"Ads and content can be personalised based on a profile. Ad and content performance can be measured."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Personalised ads and content display, ad and content measurement, and audience insights","description":"Ads and content can be personalised based on a profile. Ad and content performance can be measured. Insights about the audiences who saw the ads and content can be derived. Data can be used to build or improve user experience, systems, and software."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Personalised ads and content, ad and content measurement","description":"Ads and content can be personalised based on a profile. More data can be added to better personalise ads and content. Ad and content performance can be measured."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Personalised ads and content, ad and content measurement, and audience insights","description":"Ads and content can be personalised based on a profile. More data can be added to better personalise ads and content. Ad and content performance can be measured. Insights about the audiences who saw the ads and content can be derived."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Personalised ads, and content profile","description":"More data can be added to personalise ads and content."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Personalised ads and content display","description":"Ads and content can be personalised based on a profile."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Basic ads, ad and content measurement, and audience insights","description":"Basic ads can be served. Ad and content performance can be measured. Insights about the audiences who saw the ads and content can be derived."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Personalised ads display, personalised content, ad and content measurement, and audience insights","description":"Ads and content can be personalised based on a profile. More data can be added to better personalise content. Ad and content performance can be measured. Insights about the audiences who saw the ads and content can be derived."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Personalised ads display, personalised content, ad and content measurement, audience insights, and product development","description":"Ads and content can be personalised based on a profile. More data can be added to better personalise content. Ad and content performance can be measured. Insights about the audiences who saw the ads and content can be derived. Data can be used to build or improve user experience, systems, and software."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Basic ads, personalised content, ad and content measurement, and audience insights","description":"Basic ads can be served. Content can be personalised based on a profile. More data can be added to better personalise content. Ad and content performance can be measured. Insights about the audiences who saw the ads and content can be derived."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Basic ads, personalised content, ad and content measurement, audience insights, and product development","description":"Basic ads can be served. Content can be personalised based on a profile. More data can be added to better personalise content. Ad and content performance can be measured. Insights about the audiences who saw the ads and content can be derived. Data can be used to build or improve user experience, systems, and software."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Basic ads, personalised content, content measurement, and audience insights","description":"Basic ads can be served. Content can be personalised based on a profile. More data can be added to better personalise content. Ad and content performance can be measured. Insights about the audiences who saw the ads and content can be derived."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Basic ads, personalised content, content measurement, audience insights, and product development","description":"Basic ads can be served. Content can be personalised based on a profile. More data can be added to better personalise content. Content performance can be measured. Insights about the audiences who saw the ads and content can be derived. Data can be used to build or improve user experience, systems, and software."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Basic ads, personalised content, and ad measurement","description":"Basic ads can be served. Content can be personalised based on a profile. More data can be added to better personalise content. Ad performance can be measured."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Basic ads, personalised content, ad measurement, and product development","description":"Basic ads can be served. Content can be personalised based on a profile. More data can be added to better personalise content. Ad performance can be measured. Data can be used to build or improve user experience, systems, and software."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Personalised ads, ad measurement, and product development","description":"Ads can be personalised based on a profile. More data can be added to better personalise ads. Ad performance can be measured. Data can be used to build or improve user experience, systems, and software."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Personalised ads, ad measurement, audience insights and product development","description":"Ads can be personalised based on a profile. More data can be added to better personalise ads. Ad performance can be measured. Insights about the audiences who saw the ads and content can be derived. Data can be used to build or improve user experience, systems and software."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Personalised ads, ad and content measurement, audience insights and product development","description":"Ads can be personalised based on a profile. More data can be added to better personalise ads. Ad and content performance can be measured. Insights about audiences who saw the ads and content can be derived. Data can be used to build or improve user experience, systems and software."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Personalised ads, personalised content display, ad and content measurement, audience insights and product development","description":"Ads and content can be personalised based on a profile. More data can be added to better personalise ads. Ad and content performance can be measured. Insights about audiences who saw the ads and content can be derived. Data can be used to build or improve user experience, systems and software."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Personalised ads and content, ad and content measurement, audience insights and product development","description":"Ads and content can be personalised based on a profile. More data can be added to better personalise ads and content. Ad and content performance can be measured. Insights about audiences who saw the ads and content can be derived. Data can be used to build or improve user experience, systems and software."}},"vendors":{"8":{"id":8,"name":"Emerse Sverige AB","purposes":[1,3,4],"legIntPurposes":[2,7,8,9],"flexiblePurposes":[2,9],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.emerse.com/privacy-policy/","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":false},"12":{"id":12,"name":"BeeswaxIO Corporation","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,3],"specialFeatures":[1],"policyUrl":"https://www.beeswax.com/privacy/","cookieMaxAgeSeconds":33696000,"usesNonCookieAccess":false},"28":{"id":28,"name":"TripleLift, Inc.","purposes":[1],"legIntPurposes":[2,7,9,10],"flexiblePurposes":[2,7,9,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://triplelift.com/privacy/","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":true,"deviceStorageDisclosureUrl":"https://triplelift.com/.well-known/deviceStorage.json"},"27":{"id":27,"name":"ADventori SAS","purposes":[1,2,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.adventori.com/with-us/legal-notice/","cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":false},"25":{"id":25,"name":"Verizon Media EMEA Limited","purposes":[1,3,4,5,6],"legIntPurposes":[2,7,8,9,10],"flexiblePurposes":[2,7,8,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.verizonmedia.com/policies/ie/en/verizonmedia/privacy/index.html","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"26":{"id":26,"name":"Venatus Media Limited","purposes":[1,2,3,4,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[],"policyUrl":"https://www.venatusmedia.com/privacy/","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":false},"1":{"id":1,"name":"Exponential Interactive, Inc d/b/a VDX.tv","purposes":[1,2,3,4,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,8,9,10],"specialPurposes":[1,2],"features":[1,3],"specialFeatures":[],"policyUrl":"https://vdx.tv/privacy/","cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":false},"6":{"id":6,"name":"AdSpirit GmbH","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,9,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.adspirit.de/privacy","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false,"deviceStorageDisclosureUrl":"https://help.adspirit.de/deviceStorage.json"},"30":{"id":30,"name":"BidTheatre AB","purposes":[1,3,4],"legIntPurposes":[2],"flexiblePurposes":[2],"specialPurposes":[1,2],"features":[2],"specialFeatures":[],"policyUrl":"https://www.bidtheatre.com/privacy-policy","cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":false},"24":{"id":24,"name":"Epsilon","purposes":[1,2,3,4,5,6,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://emea.epsilon.com/privacy-policy","cookieMaxAgeSeconds":33696000,"usesNonCookieAccess":true},"39":{"id":39,"name":"ADITION technologies AG","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.adition.com/datenschutz","cookieMaxAgeSeconds":15552000,"usesNonCookieAccess":false},"11":{"id":11,"name":"Quantcast International Limited","purposes":[1,3,4],"legIntPurposes":[2,7,8,9,10],"flexiblePurposes":[2,7,8,9,10],"specialPurposes":[1,2],"features":[1,3],"specialFeatures":[],"policyUrl":"https://www.quantcast.com/privacy/","cookieMaxAgeSeconds":34190000,"usesNonCookieAccess":false},"15":{"id":15,"name":"Adikteev","purposes":[1,3,4,5,6,8,9,10],"legIntPurposes":[2,7],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2],"specialFeatures":[],"policyUrl":"https://www.adikteev.com/privacy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"4":{"id":4,"name":"Roq.ad Inc.","purposes":[1,2,3,4,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2,3],"specialFeatures":[1],"policyUrl":"https://www.roq.ad/privacy-policy","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"7":{"id":7,"name":"Vibrant Media Limited","purposes":[1,3,4,5,6,7,8],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[1],"policyUrl":"https://www.vibrantmedia.com/en/privacy-policy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"2":{"id":2,"name":"Captify Technologies Limited","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[2],"specialFeatures":[2],"policyUrl":"https://www.captify.co.uk/privacy-policy-opt/","cookieMaxAgeSeconds":2678400,"usesNonCookieAccess":true},"37":{"id":37,"name":"NEURAL.ONE","purposes":[1,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[2],"policyUrl":"https://web.neural.one/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"13":{"id":13,"name":"Sovrn Holdings Inc","purposes":[1,2,3,5,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.sovrn.com/sovrn-privacy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"34":{"id":34,"name":"NEORY GmbH","purposes":[1,3,4,5,6],"legIntPurposes":[2,7,8,9,10],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.neory.com/privacy.html","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":false},"32":{"id":32,"name":"Xandr, Inc.","purposes":[1,3,4],"legIntPurposes":[2,7,10],"flexiblePurposes":[2,7,10],"specialPurposes":[1,2],"features":[2],"specialFeatures":[1],"policyUrl":"https://www.xandr.com/privacy/platform-privacy-policy/","cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":true},"10":{"id":10,"name":"Index Exchange, Inc. ","purposes":[1,2,7],"legIntPurposes":[],"flexiblePurposes":[2,7],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://www.indexexchange.com/privacy","cookieMaxAgeSeconds":34128000,"usesNonCookieAccess":true},"57":{"id":57,"name":"ADARA MEDIA UNLIMITED","purposes":[1,2,3,4],"legIntPurposes":[7,9,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://adara.com/privacy-promise/","cookieMaxAgeSeconds":63072000,"usesNonCookieAccess":false},"63":{"id":63,"name":"Avocet Systems Limited","purposes":[1,2,3,4,5,6],"legIntPurposes":[7,8,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://avocet.io/privacy-portal","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"51":{"id":51,"name":"xAd, Inc. dba GroundTruth","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.groundtruth.com/privacy-policy/","deletedDate":"2020-10-15T00:00:00Z","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"49":{"id":49,"name":"Jellyfish France","purposes":[1,2,3,4,5,6],"legIntPurposes":[7,8,9,10],"flexiblePurposes":[7,8,9,10],"specialPurposes":[],"features":[1,2],"specialFeatures":[1],"policyUrl":"https://www.jellyfish.com/fr-fr/privacy-policy","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":34190000,"usesNonCookieAccess":true},"45":{"id":45,"name":"Smart Adserver","purposes":[1,2,4,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://smartadserver.com/end-user-privacy-policy/","cookieMaxAgeSeconds":33696000,"usesNonCookieAccess":true},"52":{"id":52,"name":"The Rubicon Project, Inc. ","purposes":[1],"legIntPurposes":[2,7,10],"flexiblePurposes":[2,7,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://www.rubiconproject.com/rubicon-project-yield-optimization-privacy-policy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"71":{"id":71,"name":"Roku Advertising Services","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://docs.roku.com/published/userprivacypolicy/en/us","cookieMaxAgeSeconds":63113904,"usesNonCookieAccess":true},"79":{"id":79,"name":"MediaMath, Inc.","purposes":[1,3,4],"legIntPurposes":[2,7,10],"flexiblePurposes":[2,3,4,7,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.mediamath.com/privacy-policy/","cookieMaxAgeSeconds":33955200,"usesNonCookieAccess":true},"91":{"id":91,"name":"Criteo SA","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.criteo.com/privacy/","cookieMaxAgeSeconds":33696000,"usesNonCookieAccess":true},"85":{"id":85,"name":"Crimtan Holdings Limited","purposes":[1,3,4],"legIntPurposes":[2,7,8,9,10],"flexiblePurposes":[2,7,8,9,10],"specialPurposes":[1,2],"features":[1,3],"specialFeatures":[1],"policyUrl":"https://crimtan.com/privacy/","cookieMaxAgeSeconds":3153600,"usesNonCookieAccess":false},"16":{"id":16,"name":"RTB House S.A.","purposes":[1,2,3,4,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[],"specialFeatures":[],"policyUrl":"https://www.rtbhouse.com/privacy-center/services-privacy-policy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"86":{"id":86,"name":"Scene Stealer Limited","purposes":[1],"legIntPurposes":[2,3,4,7,10],"flexiblePurposes":[2,3,4,7],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://scenestealer.tv/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"94":{"id":94,"name":"Blis Media Limited","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.blis.com/privacy/","cookieMaxAgeSeconds":34190000,"usesNonCookieAccess":true,"deviceStorageDisclosureUrl":"https://privacy.blismedia.com/.well-known/deviceStorage.json"},"73":{"id":73,"name":"Simplifi Holdings Inc","purposes":[1,2,3,4,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2],"specialFeatures":[1],"policyUrl":"https://simpli.fi/site-privacy-policy/","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":false},"33":{"id":33,"name":"ShareThis, Inc","purposes":[1,3],"legIntPurposes":[9,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://sharethis.com/privacy/","cookieMaxAgeSeconds":33696000,"usesNonCookieAccess":false},"20":{"id":20,"name":"N Technologies Inc.","purposes":[1,3,4],"legIntPurposes":[2,5,6,7,8,9,10],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[2],"specialFeatures":[1],"policyUrl":"https://n.rich/privacy-notice","cookieMaxAgeSeconds":777600,"usesNonCookieAccess":false},"53":{"id":53,"name":"Sirdata","purposes":[1,3,4,5,6,9],"legIntPurposes":[2,7,10],"flexiblePurposes":[2,7,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.sirdata.com/en/Privacy","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"69":{"id":69,"name":"OpenX","purposes":[1],"legIntPurposes":[2,7,10],"flexiblePurposes":[2,7,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.openx.com/legal/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"98":{"id":98,"name":"GroupM UK Limited","purposes":[1,2,3,4,5,6],"legIntPurposes":[7,8,9,10],"flexiblePurposes":[7,8,9,10],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.groupm.com/privacy-notice","cookieMaxAgeSeconds":34128000,"usesNonCookieAccess":false},"62":{"id":62,"name":"Justpremium BV","purposes":[1,2,4,5,10],"legIntPurposes":[7],"flexiblePurposes":[4,7,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://justpremium.com/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"36":{"id":36,"name":"RhythmOne DBA Unruly Group Ltd","purposes":[1,2,3,4,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.rhythmone.com/privacy-policy","cookieMaxAgeSeconds":34128000,"usesNonCookieAccess":false},"80":{"id":80,"name":"Sharethrough, Inc","purposes":[1,2,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[2,4,7,9,10],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://platform-cdn.sharethrough.com/privacy-policy","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"23":{"id":23,"name":"Amobee Inc.","purposes":[1,2,3,4],"legIntPurposes":[7,9,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.amobee.com/trust/gdpr/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"67":{"id":67,"name":"LifeStreet Corporation","purposes":[1,3,4],"legIntPurposes":[2,5,6,7,8,10],"flexiblePurposes":[2,5,6,7,8,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://lifestreet.com/privacy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"459":{"id":459,"name":"uppr GmbH","purposes":[1],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://netzwerk.uppr.de/privacy-policy.do","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"68":{"id":68,"name":"Sizmek by Amazon","purposes":[1,3,4],"legIntPurposes":[2,7,9,10],"flexiblePurposes":[2,3,4,7,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.sizmek.com/privacy-policy/","cookieMaxAgeSeconds":34190000,"usesNonCookieAccess":true},"61":{"id":61,"name":"GumGum, Inc.","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://gumgum.com/privacy-policy","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"40":{"id":40,"name":"Active Agent (ADITION technologies AG)","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.active-agent.com/de/unternehmen/datenschutzerklaerung/","cookieMaxAgeSeconds":15552000,"usesNonCookieAccess":false},"76":{"id":76,"name":"PubMatic, Inc.","purposes":[1,3,4],"legIntPurposes":[2,5,6,7,8,9,10],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://pubmatic.com/privacy-policy/","cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":false},"89":{"id":89,"name":"Tapad, Inc.","purposes":[1],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2],"specialFeatures":[],"policyUrl":"https://www.tapad.com/eu-privacy-policy","cookieMaxAgeSeconds":5184000,"usesNonCookieAccess":true},"46":{"id":46,"name":"Skimbit Ltd","purposes":[1,3],"legIntPurposes":[7,8],"flexiblePurposes":[7,8],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://skimlinks.com/pages/privacy-policy","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":false},"66":{"id":66,"name":"adsquare GmbH","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.adsquare.com/privacy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"41":{"id":41,"name":"Adverline","purposes":[1,2,3,4,5,6,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.adverline.com/privacy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"82":{"id":82,"name":"Smaato, Inc.","purposes":[1,2,3,4,7,9],"legIntPurposes":[10],"flexiblePurposes":[2,7,9,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://www.smaato.com/privacy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"60":{"id":60,"name":"Rakuten Marketing LLC","purposes":[1,3,4],"legIntPurposes":[2,7,9,10],"flexiblePurposes":[2,3,4,7,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://rakutenadvertising.com/legal-notices/services-privacy-policy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"70":{"id":70,"name":"Yieldlab AG","purposes":[1,2,3,4,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.yieldlab.de/meta-navigation/datenschutz/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"50":{"id":50,"name":"Adform","purposes":[1,2,3,4,7,10],"legIntPurposes":[],"flexiblePurposes":[2,7,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://site.adform.com/privacy-center/platform-privacy/product-and-services-privacy-policy/","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":5184000,"usesNonCookieAccess":false},"48":{"id":48,"name":"NetSuccess, s.r.o.","purposes":[1,3,4],"legIntPurposes":[2,7,9,10],"flexiblePurposes":[2,3,4,7,9,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.inres.sk/pp/","cookieMaxAgeSeconds":15552000,"usesNonCookieAccess":true},"100":{"id":100,"name":"Fifty Technology Limited","purposes":[1,2,3,4],"legIntPurposes":[7,9,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[],"policyUrl":"https://fifty.io/privacy-policy.php","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"21":{"id":21,"name":"The Trade Desk","purposes":[1,3,4],"legIntPurposes":[2,7,10],"flexiblePurposes":[2,7,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.thetradedesk.com/general/privacy-policy","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"110":{"id":110,"name":"Dynata LLC","purposes":[1,7,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.opinionoutpost.co.uk/en-gb/policies/privacy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"42":{"id":42,"name":"Taboola Europe Limited","purposes":[1],"legIntPurposes":[2,3,4,5,6,7,8,10],"flexiblePurposes":[2,3,4,5,6,7,8,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.taboola.com/privacy-policy","cookieMaxAgeSeconds":31556926,"usesNonCookieAccess":true},"77":{"id":77,"name":"comScore, Inc.","purposes":[1,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[7,8,9,10],"specialPurposes":[1],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.scorecardresearch.com/privacy.aspx?newlanguage=1","cookieMaxAgeSeconds":62208000,"usesNonCookieAccess":false},"109":{"id":109,"name":"LoopMe Limited","purposes":[1,2,3,4,5,6,7,8],"legIntPurposes":[9,10],"flexiblePurposes":[9],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[1],"policyUrl":"https://loopme.com/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"120":{"id":120,"name":"Eyeota Pte Ltd","purposes":[1,3,5,9,10],"legIntPurposes":[],"flexiblePurposes":[3,5,9,10],"specialPurposes":[1],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.eyeota.com/privacy-center","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"93":{"id":93,"name":"Adloox SA","purposes":[],"legIntPurposes":[7],"flexiblePurposes":[],"specialPurposes":[1],"features":[],"specialFeatures":[],"policyUrl":"https://adloox.com/disclaimer","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"132":{"id":132,"name":"Teads ","purposes":[1,3,4],"legIntPurposes":[2,7,9,10],"flexiblePurposes":[2,7,9,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.teads.com/privacy-policy/","cookieMaxAgeSeconds":34164000,"usesNonCookieAccess":true},"22":{"id":22,"name":"admetrics GmbH","purposes":[1,7,8],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://admetrics.io/en/privacy_policy/","cookieMaxAgeSeconds":31,"usesNonCookieAccess":false},"102":{"id":102,"name":"Telaria SAS","purposes":[1,2,3,4,5,6],"legIntPurposes":[7,8,9,10],"flexiblePurposes":[5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://telaria.com/outstream-services/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":31556900,"usesNonCookieAccess":false},"108":{"id":108,"name":"Rich Audience Technologies SL","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://richaudience.com/privacy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false,"deviceStorageDisclosureUrl":"https://richaudience.com/en/cookies/"},"18":{"id":18,"name":"Widespace AB","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7],"specialPurposes":[],"features":[2],"specialFeatures":[],"policyUrl":"https://www.widespace.com/legal/privacy-policy-notice/","cookieMaxAgeSeconds":32061600,"usesNonCookieAccess":false,"deviceStorageDisclosureUrl":"http://widespace.com/deviceStorage.json"},"122":{"id":122,"name":"Avid Media Ltd","purposes":[1,3,4,5,10],"legIntPurposes":[2,7,8],"flexiblePurposes":[2,7,8],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.avidglobalmedia.com/privacy-policy.html","cookieMaxAgeSeconds":63072000,"usesNonCookieAccess":true},"97":{"id":97,"name":"LiveRamp, Inc.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://liveramp.fr/iab-transparency-consent-framework/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"138":{"id":138,"name":"ConnectAd Realtime GmbH","purposes":[1,3,4,5],"legIntPurposes":[2,7],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://connectadrealtime.com/privacy/","cookieMaxAgeSeconds":2628000,"usesNonCookieAccess":false},"72":{"id":72,"name":"Nano Interactive GmbH","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.nanointeractive.com/privacy-policy/","cookieMaxAgeSeconds":15724800,"usesNonCookieAccess":true},"127":{"id":127,"name":"PIXIMEDIA SAS","purposes":[1,3,4,5,6,9,10],"legIntPurposes":[2,7,8],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://piximedia.com/privacy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":34186698,"usesNonCookieAccess":false},"136":{"id":136,"name":"Str\u00f6er SSP GmbH (SSP)","purposes":[1],"legIntPurposes":[2,7,9,10],"flexiblePurposes":[2,7,9,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.stroeer.de/fileadmin/de/Konvergenz_und_Konzepte/Daten_und_Technologien/Stroeer_SSP/Downloads/Datenschutz_Stroeer_SSP.pdf","cookieMaxAgeSeconds":31336000,"usesNonCookieAccess":true,"deviceStorageDisclosureUrl":"https://www.stroeer.com/fileadmin/com/StroeerSSP_deviceStorage.json"},"111":{"id":111,"name":"Showheroes SE","purposes":[1,3,4,9,10],"legIntPurposes":[2,7,8],"flexiblePurposes":[2,3,4,7,8,9,10],"specialPurposes":[1,2],"features":[1],"specialFeatures":[],"policyUrl":"https://showheroes.com/privacy/","cookieMaxAgeSeconds":63072000,"usesNonCookieAccess":false},"124":{"id":124,"name":"Teemo SA","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1],"specialFeatures":[1],"policyUrl":"https://teemo.co/fr/confidentialite/","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":false},"154":{"id":154,"name":"YOC AG","purposes":[1,3,4,10],"legIntPurposes":[2,7],"flexiblePurposes":[2,7],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://yoc.com/privacy/","cookieMaxAgeSeconds":63072000,"usesNonCookieAccess":true},"101":{"id":101,"name":"MiQ","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://wearemiq.com/privacy-policy/","cookieMaxAgeSeconds":31540000,"usesNonCookieAccess":false},"149":{"id":149,"name":"ADman Interactive SLU","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2],"specialPurposes":[],"features":[2,3],"specialFeatures":[],"policyUrl":"https://admanmedia.com/politica.html?setLng=es","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"151":{"id":151,"name":"Admedo Technology Ltd","purposes":[1,3,4],"legIntPurposes":[2,7],"flexiblePurposes":[2,3,4,7],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.admedo.com/privacy-policy","cookieMaxAgeSeconds":259200,"usesNonCookieAccess":false},"153":{"id":153,"name":"MADVERTISE MEDIA","purposes":[1,2,3,4,5,6,7,9,10],"legIntPurposes":[],"flexiblePurposes":[5,6,10],"specialPurposes":[2],"features":[],"specialFeatures":[1,2],"policyUrl":"https://madvertise.com/en/gdpr/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":33696000,"usesNonCookieAccess":true,"deviceStorageDisclosureUrl":"https://mobile.mng-ads.com/deviceStorage.json"},"159":{"id":159,"name":"Underdog Media LLC ","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://underdogmedia.com/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"157":{"id":157,"name":"Seedtag Advertising S.L","purposes":[1,2,3,4,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.seedtag.com/en/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"145":{"id":145,"name":"Snapsort Inc., operating as Sortable","purposes":[1],"legIntPurposes":[2,7,8,9,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://help.sortable.com/help/privacy-policy","cookieMaxAgeSeconds":31557600,"usesNonCookieAccess":true},"131":{"id":131,"name":"ID5 Technology SAS","purposes":[1],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[],"policyUrl":"https://www.id5.io/privacy","cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":false},"158":{"id":158,"name":"Reveal Mobile Inc","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://revealmobile.com/privacy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"147":{"id":147,"name":"Adacado Technologies Inc. (DBA Adacado)","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[7,8,9,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://adacado.com/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"130":{"id":130,"name":"NextRoll, Inc.","purposes":[1,2,3,4,5,6,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.nextroll.com/privacy","cookieMaxAgeSeconds":34128000,"usesNonCookieAccess":false},"129":{"id":129,"name":"IPONWEB GmbH","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.iponweb.com/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"128":{"id":128,"name":"BIDSWITCH GmbH","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,3],"specialFeatures":[1],"policyUrl":"https://www.bidswitch.com/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"168":{"id":168,"name":"EASYmedia GmbH","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://login.rtbmarket.com/gdpr","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"164":{"id":164,"name":"Outbrain UK Ltd","purposes":[1,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1,3],"specialFeatures":[],"policyUrl":"https://www.outbrain.com/legal/privacy#privacy-policy","cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":false},"144":{"id":144,"name":"district m inc.","purposes":[1,2,4,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[3],"specialFeatures":[1],"policyUrl":"https://districtm.net/en/page/platforms-data-and-privacy-policy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":false},"163":{"id":163,"name":"Bombora Inc.","purposes":[1,3],"legIntPurposes":[7,9,10],"flexiblePurposes":[7,9,10],"specialPurposes":[1],"features":[1,3],"specialFeatures":[],"policyUrl":"https://bombora.com/privacy","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"173":{"id":173,"name":"Yieldmo, Inc.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.yieldmo.com/privacy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"88":{"id":88,"name":"TreSensa Technologies, Inc.","purposes":[1,3,4],"legIntPurposes":[2,7,10],"flexiblePurposes":[2,3,4,7,10],"specialPurposes":[1,2],"features":[1,3],"specialFeatures":[],"policyUrl":"https://www.tresensa.com/eu-privacy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"78":{"id":78,"name":"Flashtalking, Inc.","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.flashtalking.com/privacypolicy/","cookieMaxAgeSeconds":63072000,"usesNonCookieAccess":false},"59":{"id":59,"name":"Sift Media, Inc","purposes":[2],"legIntPurposes":[],"flexiblePurposes":[2],"specialPurposes":[],"features":[3],"specialFeatures":[1],"policyUrl":"https://www.sift.co/privacy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"114":{"id":114,"name":"Sublime","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://ayads.co/privacy.php","cookieMaxAgeSeconds":34164060,"usesNonCookieAccess":true},"133":{"id":133,"name":"digitalAudience","purposes":[1,3,5,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2],"specialFeatures":[],"policyUrl":"https://digitalaudience.io/legal/privacy-cookies/","cookieMaxAgeSeconds":31557600,"usesNonCookieAccess":false},"14":{"id":14,"name":"Adkernel LLC","purposes":[1,3,4],"legIntPurposes":[2,7,9],"flexiblePurposes":[3,4],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://adkernel.com/privacy-policy/","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":false},"183":{"id":183,"name":"EMX Digital LLC","purposes":[1,3,4,5,6,8],"legIntPurposes":[2,7,9,10],"flexiblePurposes":[2,7,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://emxdigital.com/privacy/","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":false},"58":{"id":58,"name":"33Across","purposes":[1,2,4,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2],"specialFeatures":[],"policyUrl":"https://www.33across.com/privacy-policy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"140":{"id":140,"name":"Platform161","purposes":[1,2,3,4,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[1],"policyUrl":"https://platform161.com/cookie-and-privacy-policy/","cookieMaxAgeSeconds":34164000,"usesNonCookieAccess":true},"90":{"id":90,"name":"Teroa S.A.","purposes":[1,2,3,4,5,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.e-planning.net/en/privacy.html","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"141":{"id":141,"name":"1020, Inc. dba Placecast and Ericsson Emodo","purposes":[2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[1,3],"specialFeatures":[1],"policyUrl":"https://www.emodoinc.com/privacy-policy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"142":{"id":142,"name":"Media.net Advertising FZ-LLC","purposes":[1,3,4],"legIntPurposes":[2,5,6,7,8,9,10],"flexiblePurposes":[2,5,6,7,8,9],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.media.net/en/privacy-policy","cookieMaxAgeSeconds":157680000,"usesNonCookieAccess":true},"209":{"id":209,"name":"Delta Projects AB","purposes":[1,2,3,4],"legIntPurposes":[7,10],"flexiblePurposes":[2,7,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://deltaprojects.com/data-collection-policy","cookieMaxAgeSeconds":47335389,"usesNonCookieAccess":false},"195":{"id":195,"name":"advanced store GmbH","purposes":[1,3,4],"legIntPurposes":[2,7],"flexiblePurposes":[2,7],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.advanced-store.com/de/datenschutz/","cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":true},"190":{"id":190,"name":"video intelligence AG","purposes":[1,2,3,4,9],"legIntPurposes":[7,8,10],"flexiblePurposes":[2],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.vi.ai/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"84":{"id":84,"name":"Semasio GmbH","purposes":[1,3,9,10],"legIntPurposes":[],"flexiblePurposes":[3,9,10],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.semasio.com/privacy-policy/","cookieMaxAgeSeconds":31556952,"usesNonCookieAccess":false,"deviceStorageDisclosureUrl":"https://semasio-tcf-storage.s3-eu-west-1.amazonaws.com/deviceStorage.json"},"65":{"id":65,"name":"Location Sciences AI Ltd.","purposes":[1,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1],"specialFeatures":[1],"policyUrl":"https://www.locationsciencesgroup.ai/privacy-policy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"210":{"id":210,"name":"Zemanta, Inc.","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1],"specialFeatures":[],"policyUrl":"https://www.zemanta.com/legal/privacy","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"200":{"id":200,"name":"Tapjoy, Inc.","purposes":[1],"legIntPurposes":[2,3,4,7],"flexiblePurposes":[2,3,4,7],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.tapjoy.com/legal/#privacy-policy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"217":{"id":217,"name":"2KDirect, Inc. (dba iPromote)","purposes":[1],"legIntPurposes":[2,3,4,7,9,10],"flexiblePurposes":[2,3,4,7,9,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.ipromote.com/privacy-policy/","cookieMaxAgeSeconds":63072000,"usesNonCookieAccess":false,"deviceStorageDisclosureUrl":"https://www.ipromote.com/.well-known/deviceStorage.json"},"194":{"id":194,"name":"Rezonence Limited","purposes":[1,2,3,4],"legIntPurposes":[7,8,9,10],"flexiblePurposes":[2,7,8,9,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://rezonence.com/privacy-policy/","cookieMaxAgeSeconds":15768000,"usesNonCookieAccess":true},"226":{"id":226,"name":"Publicis Media GmbH","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.publicismedia.de/datenschutz/","cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":true},"198":{"id":198,"name":"SYNC","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[3,4,7],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.sync.tv/privacy.html","cookieMaxAgeSeconds":0,"usesNonCookieAccess":false,"deviceStorageDisclosureUrl":"https://sync.tv/deviceStorage.json"},"227":{"id":227,"name":"ORTEC B.V.","purposes":[1,2,3,4,5,6,7,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.ortecadscience.com/privacy-policy/","cookieMaxAgeSeconds":31622400,"usesNonCookieAccess":false},"205":{"id":205,"name":"Adssets AB","purposes":[1,3,4,5,8,9],"legIntPurposes":[2,7],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://adssets.com/policy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"179":{"id":179,"name":"Collective Europe Ltd.","purposes":[1,2,3,4,9],"legIntPurposes":[7],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://www.collectiveuk.com/privacy.html","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":15552000,"usesNonCookieAccess":false},"31":{"id":31,"name":"Ogury Ltd.","purposes":[1,3,4,9],"legIntPurposes":[2,7,10],"flexiblePurposes":[2,7,10],"specialPurposes":[1,2],"features":[2],"specialFeatures":[],"policyUrl":"https://www.ogury.com/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"92":{"id":92,"name":"1plusX AG","purposes":[1],"legIntPurposes":[2,3,4,5,6,7,8,9,10],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.1plusx.com/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"155":{"id":155,"name":"AntVoice","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.antvoice.com/en/privacypolicy/","cookieMaxAgeSeconds":34128000,"usesNonCookieAccess":false},"115":{"id":115,"name":"smartclip Europe GmbH","purposes":[1,3,4],"legIntPurposes":[2,7,10],"flexiblePurposes":[2,3,4,7,10],"specialPurposes":[1,2],"features":[2],"specialFeatures":[],"policyUrl":"https://privacy-portal.smartclip.net/","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":false},"126":{"id":126,"name":"DoubleVerify Inc.\u200b","purposes":[2,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.doubleverify.com/privacy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"193":{"id":193,"name":"Mediasmart Mobile S.L.","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2,3],"specialFeatures":[1],"policyUrl":"https://mediasmart.io/privacy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"213":{"id":213,"name":"emetriq GmbH","purposes":[1,3,4,5,6,7,8],"legIntPurposes":[2,9,10],"flexiblePurposes":[2,9,10],"specialPurposes":[2],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.emetriq.com/datenschutz/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"244":{"id":244,"name":"Ermes","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.ermes.ai/politique-de-confidentialite/","cookieMaxAgeSeconds":34164000,"usesNonCookieAccess":false},"224":{"id":224,"name":"adrule mobile GmbH","purposes":[1,2,3,4,5,6,7,8],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8],"specialPurposes":[],"features":[],"specialFeatures":[1],"policyUrl":"https://www.adrule.net/de/datenschutz/","cookieMaxAgeSeconds":62985600,"usesNonCookieAccess":false},"174":{"id":174,"name":"A Million Ads Ltd","purposes":[2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[1],"policyUrl":"https://www.amillionads.com/privacy-policy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"192":{"id":192,"name":"remerge GmbH","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://remerge.io/privacy-policy.html","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"256":{"id":256,"name":"Bounce Exchange, Inc","purposes":[1],"legIntPurposes":[2,3,4,7,9,10],"flexiblePurposes":[2,3,4],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[1],"policyUrl":"https://www.bouncex.com/privacy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":33696000,"usesNonCookieAccess":true},"234":{"id":234,"name":"ZBO Media","purposes":[1,3,4,9],"legIntPurposes":[2,7,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1],"specialFeatures":[],"policyUrl":"https://zbo.media/mentions-legales/politique-de-confidentialite-service-publicitaire/","cookieMaxAgeSeconds":2628000,"usesNonCookieAccess":false},"246":{"id":246,"name":"Smartology Limited","purposes":[1,3,4,8],"legIntPurposes":[2,7],"flexiblePurposes":[2,7],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.smartology.net/privacy-policy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"241":{"id":241,"name":"OneTag Limited","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[7],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.onetag.com/privacy/","cookieMaxAgeSeconds":64000000,"usesNonCookieAccess":true},"254":{"id":254,"name":"LiquidM Technology GmbH","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://liquidm.com/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"215":{"id":215,"name":"ARMIS SAS","purposes":[1,2,7],"legIntPurposes":[10],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://armis.tech/en/armis-personal-data-privacy-policy/","cookieMaxAgeSeconds":33696000,"usesNonCookieAccess":false},"167":{"id":167,"name":"Audiens S.r.l.","purposes":[1,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.audiens.com/privacy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"240":{"id":240,"name":"7Hops.com Inc. (ZergNet)","purposes":[1],"legIntPurposes":[5,6,8,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://zergnet.com/privacy","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":false},"235":{"id":235,"name":"Bucksense Inc","purposes":[2,3,4,7,9],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,9],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.bucksense.com/platform-privacy-policy/","cookieMaxAgeSeconds":89200,"usesNonCookieAccess":false},"185":{"id":185,"name":"Bidtellect, Inc","purposes":[1,2,3,4,7,8],"legIntPurposes":[9,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.bidtellect.com/privacy-policy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":false},"211":{"id":211,"name":"AdTheorent, Inc","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://adtheorent.com/privacy-policy","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":1051200,"usesNonCookieAccess":false},"273":{"id":273,"name":"Bannerflow AB","purposes":[1,4],"legIntPurposes":[7],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.bannerflow.com/privacy ","cookieMaxAgeSeconds":31556952,"usesNonCookieAccess":false,"deviceStorageDisclosureUrl":"https://shared.bannerflow.com/deviceStorage.json"},"104":{"id":104,"name":"Sonobi, Inc","purposes":[1,2,3,4],"legIntPurposes":[7,8],"flexiblePurposes":[],"specialPurposes":[2],"features":[1],"specialFeatures":[],"policyUrl":"https://sonobi.com/privacy-policy/","cookieMaxAgeSeconds":5184000,"usesNonCookieAccess":false},"162":{"id":162,"name":"Unruly Group Ltd","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://unruly.co/privacy/","cookieMaxAgeSeconds":34128000,"usesNonCookieAccess":false},"249":{"id":249,"name":"Spolecznosci Sp. z o.o. Sp. k.","purposes":[1,2,3,4,5,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,7,8,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[2],"policyUrl":"https://www.spolecznosci.pl/polityka-prywatnosci","cookieMaxAgeSeconds":33696000,"usesNonCookieAccess":false},"170":{"id":170,"name":"Goodway Group, Inc.","purposes":[7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[7,8,9,10],"specialPurposes":[],"features":[1,2],"specialFeatures":[1],"policyUrl":"https://goodwaygroup.com/privacy-policy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"160":{"id":160,"name":"Audience Solutions S.A.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://audience-solutions.com/privacy.html","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":63072000,"usesNonCookieAccess":false},"279":{"id":279,"name":"Mirando GmbH & Co KG","purposes":[],"legIntPurposes":[2,7],"flexiblePurposes":[2,7],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.mirando.de/datenschutz/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"276":{"id":276,"name":"Viralize SRL","purposes":[1,2,3,4,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1],"specialFeatures":[],"policyUrl":"https://viralize.com/privacy-policy","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"87":{"id":87,"name":"Betgenius Ltd","purposes":[1,2,3,4,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,8,9,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.geniussports.com/privacy-policy","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"255":{"id":255,"name":"Onnetwork Sp. z o.o.","purposes":[1,2,5,6],"legIntPurposes":[7,8],"flexiblePurposes":[7,8],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.onnetwork.tv/pp_services.php","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"203":{"id":203,"name":"Revcontent, LLC","purposes":[1],"legIntPurposes":[2,3,4,5,6,7,8,9,10],"flexiblePurposes":[2,3,4,5,6],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://intercom.help/revcontent2/en/articles/4192775-revcontent-privacy-policy-residents-of-european-economic-area","cookieMaxAgeSeconds":0,"usesNonCookieAccess":false},"274":{"id":274,"name":"Golden Bees","purposes":[1,2,3,4,6,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2],"specialFeatures":[],"policyUrl":"https://www.goldenbees.fr/en/privacy-charter/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"280":{"id":280,"name":"OpenWeb LTD","purposes":[],"legIntPurposes":[2,3,4,5,6,7,8,9,10],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.openweb.com/legal-and-privacy/privacy/","cookieMaxAgeSeconds":300000000,"usesNonCookieAccess":false},"239":{"id":239,"name":"Triton Digital Canada Inc.","purposes":[1,3,4,5,6],"legIntPurposes":[2,7,8,9,10],"flexiblePurposes":[2,7,8,9,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://www.tritondigital.com/privacy-policies","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":true},"177":{"id":177,"name":"plista GmbH","purposes":[1],"legIntPurposes":[7,8,10],"flexiblePurposes":[7,8,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.plista.com/about/privacy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"150":{"id":150,"name":"Inskin Media LTD","purposes":[1,3,4,9,10],"legIntPurposes":[2,7],"flexiblePurposes":[2,7],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[],"policyUrl":"https://www.inskinmedia.com/privacy-policy.html","cookieMaxAgeSeconds":31622400,"usesNonCookieAccess":true},"252":{"id":252,"name":"Jaduda GmbH","purposes":[1],"legIntPurposes":[2,3,4,5,6,7,8,9,10],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://www.jadudamobile.com/datenschutzerklaerung/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"248":{"id":248,"name":"Converge-Digital","purposes":[1],"legIntPurposes":[2],"flexiblePurposes":[2],"specialPurposes":[2],"features":[3],"specialFeatures":[],"policyUrl":"https://converge-digital.com/privacy-policy/","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":63113904,"usesNonCookieAccess":false},"161":{"id":161,"name":"Smadex SL","purposes":[1,2,3,4,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://smadex.com/end-user-privacy-policy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"285":{"id":285,"name":"Comcast International France SAS","purposes":[1],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.freewheel.com/privacy-policy","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"228":{"id":228,"name":"McCann Discipline LTD","purposes":[1,2,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.primis.tech/privacy-policy/","cookieMaxAgeSeconds":1209600,"usesNonCookieAccess":false},"299":{"id":299,"name":"AdClear GmbH","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[2],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.adclear.de/datenschutzerklaerung/","cookieMaxAgeSeconds":7948800,"usesNonCookieAccess":false},"277":{"id":277,"name":"CentralNic Poland sp. z o.o.","purposes":[1,2,3,4,7,9],"legIntPurposes":[10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://voluumdsp.com/end-user-privacy-policy/","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":false},"259":{"id":259,"name":"ADYOULIKE SA","purposes":[1,3,4],"legIntPurposes":[2,7],"flexiblePurposes":[2,7],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.adyoulike.com/privacy_policy.php","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"289":{"id":289,"name":"mobalo GmbH","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1],"specialFeatures":[1],"policyUrl":"https://www.mobalo.com/en/privacy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"272":{"id":272,"name":"A.Mob","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.we-are-adot.com/privacy-policy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"253":{"id":253,"name":"Improve Digital BV","purposes":[1,3,4,9],"legIntPurposes":[2,7,10],"flexiblePurposes":[2,7,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://www.improvedigital.com/platform-privacy-policy","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":false},"304":{"id":304,"name":"On Device Research Limited","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://s.on-device.com/privacyPolicy","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":false},"314":{"id":314,"name":"Keymantics","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,9,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.kmtx.com/privacy/","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":false,"deviceStorageDisclosureUrl":"https://cdn.keymantics.com/.well-known/deviceStorage.json"},"317":{"id":317,"name":"mainADV Srl","purposes":[1,2,3,4,5,6,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.mainad.com/privacy-policy/","cookieMaxAgeSeconds":60,"usesNonCookieAccess":false},"278":{"id":278,"name":"Integral Ad Science, Inc.","purposes":[],"legIntPurposes":[7,10],"flexiblePurposes":[7,10],"specialPurposes":[1],"features":[],"specialFeatures":[],"policyUrl":"https://integralads.com/privacy-policy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"295":{"id":295,"name":"Sojern, Inc.","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,9,10],"specialPurposes":[2],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.sojern.com/privacy/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"315":{"id":315,"name":"Celtra, Inc.","purposes":[1,2,4,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://www.celtra.com/privacy-policy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"165":{"id":165,"name":"SpotX, Inc.","purposes":[1,3,4],"legIntPurposes":[2,7,9,10],"flexiblePurposes":[2,3,4,7,9,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.spotx.tv/privacy-policy/","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":1209600,"usesNonCookieAccess":true},"47":{"id":47,"name":"ADMAN - Phaistos Networks, S.A.","purposes":[1,2,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.adman.gr/privacy","cookieMaxAgeSeconds":315360000,"usesNonCookieAccess":false},"134":{"id":134,"name":"SMARTSTREAM.TV GmbH","purposes":[1],"legIntPurposes":[2,3,4,7,9,10],"flexiblePurposes":[2,3,4,7,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.smartstream.tv/en/productprivacy","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"325":{"id":325,"name":"Knorex","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.knorex.com/privacy","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"316":{"id":316,"name":"Gamned","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[1],"policyUrl":"https://www.gamned.com/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"318":{"id":318,"name":"Accorp Sp. z o.o.","purposes":[1,2,3,4,5,6],"legIntPurposes":[7,8,9,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.instytut-pollster.pl/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"199":{"id":199,"name":"ADUX","purposes":[1,2,3,4,6,7,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[1],"policyUrl":"https://www.adux.com/donnees-personelles/","cookieMaxAgeSeconds":15552000,"usesNonCookieAccess":false},"236":{"id":236,"name":"PowerLinks Media Limited","purposes":[1,2],"legIntPurposes":[3,4,5,6,7,8],"flexiblePurposes":[3,4,5,6],"specialPurposes":[1,2],"features":[1],"specialFeatures":[],"policyUrl":"https://www.powerlinks.com/privacy-policy/","cookieMaxAgeSeconds":31556952,"usesNonCookieAccess":false},"294":{"id":294,"name":"Jivox Corporation","purposes":[1,2,3,4,5,7],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,7],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.jivox.com/privacy","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":false},"143":{"id":143,"name":"Connatix Native Exchange Inc.","purposes":[1,2,4,6,7,8,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[],"policyUrl":"https://connatix.com/privacy-policy/","cookieMaxAgeSeconds":2600000,"usesNonCookieAccess":false},"297":{"id":297,"name":"Polar Mobile Group Inc.","purposes":[1,3,4],"legIntPurposes":[2,7,8,10],"flexiblePurposes":[2,7,8,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://privacy.polar.me","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"319":{"id":319,"name":"Clipcentric, Inc.","purposes":[1],"legIntPurposes":[2,7,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://clipcentric.com/privacy.bhtml","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true,"deviceStorageDisclosureUrl":"https://clipcentric.com/.well-known/deviceStorage.json"},"290":{"id":290,"name":"Readpeak Oy","purposes":[1,2,3,4,7],"legIntPurposes":[10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://readpeak.com/privacy-policy/","cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":false},"323":{"id":323,"name":"DAZN Media Services Limited","purposes":[1,3,4,7],"legIntPurposes":[2,8,10],"flexiblePurposes":[8,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://www.goal.com/en-gb/legal/privacy-policy","cookieMaxAgeSeconds":63072000,"usesNonCookieAccess":false},"119":{"id":119,"name":"Fusio by S4M","purposes":[1,3,4,10],"legIntPurposes":[],"flexiblePurposes":[3,4,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://www.s4m.io/privacy-policy/","cookieMaxAgeSeconds":86400,"usesNonCookieAccess":false},"302":{"id":302,"name":"Mobile Professionals BV","purposes":[1,2,3,4,5,7,8,9],"legIntPurposes":[],"flexiblePurposes":[3,5,7,8],"specialPurposes":[],"features":[3],"specialFeatures":[1],"policyUrl":"https://mobpro.com/privacy.html","cookieMaxAgeSeconds":0,"usesNonCookieAccess":false},"212":{"id":212,"name":"usemax advertisement (Emego GmbH)","purposes":[1],"legIntPurposes":[2,3,4,5,6,7,8,9,10],"flexiblePurposes":[2,3,4,5,6,7,8],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.usemax.de/?l=privacy","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"264":{"id":264,"name":"Adobe Advertising Cloud","purposes":[1,2,3,4,10],"legIntPurposes":[7],"flexiblePurposes":[2],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.adobe.com/privacy/experience-cloud.html","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"44":{"id":44,"name":"The ADEX GmbH","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://theadex.com/privacy-opt-out/","cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":true},"282":{"id":282,"name":"Welect GmbH","purposes":[1],"legIntPurposes":[2],"flexiblePurposes":[2],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.welect.de/datenschutz","cookieMaxAgeSeconds":604800,"usesNonCookieAccess":false},"238":{"id":238,"name":"StackAdapt","purposes":[1,2,3,4],"legIntPurposes":[7,9,10],"flexiblePurposes":[],"specialPurposes":[2],"features":[1,2],"specialFeatures":[1],"policyUrl":"https://www.stackadapt.com/privacy","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"284":{"id":284,"name":"Weborama","purposes":[1,3,4],"legIntPurposes":[2,5,6,7,8,9,10],"flexiblePurposes":[2,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[1],"policyUrl":"https://weborama.com/privacy_en/","cookieMaxAgeSeconds":34128000,"usesNonCookieAccess":false},"148":{"id":148,"name":"Liveintent Inc.","purposes":[1],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://liveintent.com/services-privacy-policy/","cookieMaxAgeSeconds":63113904,"usesNonCookieAccess":true},"301":{"id":301,"name":"zeotap GmbH","purposes":[1,3,4,5,6,7,9,10],"legIntPurposes":[],"flexiblePurposes":[3,4,5,6,7,9,10],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://zeotap.com/privacy_policy","cookieMaxAgeSeconds":1051200,"usesNonCookieAccess":false},"275":{"id":275,"name":"TabMo SAS","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://static.tabmo.io.s3.amazonaws.com/privacy-policy/index.html","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"310":{"id":310,"name":"Adevinta Spain S.L.U.","purposes":[1,2,3,4,9],"legIntPurposes":[7,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.adevinta.com/about/privacy/","cookieMaxAgeSeconds":15552000,"usesNonCookieAccess":false},"139":{"id":139,"name":"Permodo GmbH","purposes":[1,2,3,4,7,8,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,8,10],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[1],"policyUrl":"https://permodo.com/de/privacy.html","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"262":{"id":262,"name":"Fyber ","purposes":[1,2,3,4,5,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[1],"policyUrl":"https://www.fyber.com/legal/privacy-policy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"331":{"id":331,"name":"ad6media","purposes":[1],"legIntPurposes":[2,3,4,5,6,7,8,10],"flexiblePurposes":[2,3,4,5,6],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[1,2],"policyUrl":"https://www.ad6media.fr/privacy","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"345":{"id":345,"name":"The Kantar Group Limited","purposes":[1,2,3,4,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,8,9,10],"specialPurposes":[2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.kantar.com/cookies-policies","cookieMaxAgeSeconds":78892380,"usesNonCookieAccess":false},"308":{"id":308,"name":"Rockabox Media Ltd t/a Scoota","purposes":[1,2,4],"legIntPurposes":[],"flexiblePurposes":[2,4],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://scoota.com/privacy-policy","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"270":{"id":270,"name":"Marfeel Solutions, SL","purposes":[1],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.marfeel.com/privacy-policy/","cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":false},"333":{"id":333,"name":"InMobi Pte Ltd","purposes":[1,2,3,4,9,10],"legIntPurposes":[],"flexiblePurposes":[9],"specialPurposes":[1],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.inmobi.com/privacy-policy-for-eea","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"202":{"id":202,"name":"Telaria, Inc","purposes":[1,2,3,4,5,6],"legIntPurposes":[7,8,9,10],"flexiblePurposes":[5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://telaria.com/privacy-policy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":31556900,"usesNonCookieAccess":false},"328":{"id":328,"name":"Gemius SA","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[],"policyUrl":"https://www.gemius.com/cookie-policy.html","cookieMaxAgeSeconds":189216000,"usesNonCookieAccess":true},"281":{"id":281,"name":"Wizaly","purposes":[1,7,8,9],"legIntPurposes":[],"flexiblePurposes":[7,8,9],"specialPurposes":[],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.wizaly.com/terms-of-use#privacy-policy","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"354":{"id":354,"name":"Apester Ltd","purposes":[1,2,4],"legIntPurposes":[6,7,8,10],"flexiblePurposes":[7],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://apester.com/privacy-policy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"359":{"id":359,"name":"AerServ LLC","purposes":[1,2,3,4,9,10],"legIntPurposes":[],"flexiblePurposes":[9],"specialPurposes":[1],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.inmobi.com/privacy-policy-for-eea","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"265":{"id":265,"name":"Instinctive, Inc.","purposes":[1,2,3,4,5,6,7,8],"legIntPurposes":[9,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://instinctive.io/privacy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"349":{"id":349,"name":"Optomaton UG","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.optomaton.com/privacy.html","cookieMaxAgeSeconds":31556952,"usesNonCookieAccess":false},"266":{"id":266,"name":"Rebold Marketing & Communication SLU","purposes":[1,2,3,4,5,6,7,8,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://letsrebold.com/es/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"303":{"id":303,"name":"Orion Semantics","purposes":[1,2,3,4,7,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://static.orion-semantics.com/privacy.html","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"261":{"id":261,"name":"Signal Digital Inc.","purposes":[1],"legIntPurposes":[3,5,7,8],"flexiblePurposes":[3],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.signal.co/privacy-policy/","cookieMaxAgeSeconds":63113904,"usesNonCookieAccess":false},"83":{"id":83,"name":"Visarity Technologies GmbH","purposes":[2,6,7,8],"legIntPurposes":[],"flexiblePurposes":[2],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://primo.design/docs/PrivacyPolicyPrimo.html","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"343":{"id":343,"name":"DIGITEKA Technologies","purposes":[1],"legIntPurposes":[2,3,4,5,6,7,8,9,10],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1,3],"specialFeatures":[1],"policyUrl":"https://www.ultimedia.com/POLICY.html","cookieMaxAgeSeconds":34300800,"usesNonCookieAccess":true},"231":{"id":231,"name":"AcuityAds Inc.","purposes":[1,3,4],"legIntPurposes":[2,7,8,10],"flexiblePurposes":[3,4],"specialPurposes":[1,2],"features":[2],"specialFeatures":[],"policyUrl":"https://privacy.acuityads.com/corporate-privacy-policy.html","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"216":{"id":216,"name":"Mindlytix SAS","purposes":[1,2,3,5,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[1,2],"specialFeatures":[],"policyUrl":"https://mindlytix.com/privacy/","cookieMaxAgeSeconds":5356800,"usesNonCookieAccess":false},"360":{"id":360,"name":"Permutive Technologies, Inc.","purposes":[1],"legIntPurposes":[3,5,7,8,9],"flexiblePurposes":[3,5,7,8,9],"specialPurposes":[],"features":[1,2],"specialFeatures":[],"policyUrl":"https://permutive.com/privacy/","cookieMaxAgeSeconds":94608000,"usesNonCookieAccess":false},"361":{"id":361,"name":"Permutive Limited","purposes":[1],"legIntPurposes":[3,5,7,8,9],"flexiblePurposes":[3,5,7,8,9],"specialPurposes":[],"features":[1,2],"specialFeatures":[],"policyUrl":"https://permutive.com/privacy/","cookieMaxAgeSeconds":94608000,"usesNonCookieAccess":false},"311":{"id":311,"name":"Mobfox US LLC","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://www.mobfox.com/privacy-policy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"358":{"id":358,"name":"MGID Inc.","purposes":[2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[2],"policyUrl":"https://www.mgid.com/privacy-policy","cookieMaxAgeSeconds":2147483646,"usesNonCookieAccess":true},"152":{"id":152,"name":"Meetrics GmbH","purposes":[1,9],"legIntPurposes":[7],"flexiblePurposes":[7],"specialPurposes":[1],"features":[],"specialFeatures":[],"policyUrl":"https://www.meetrics.com/en/data-privacy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"251":{"id":251,"name":"Yieldlove GmbH","purposes":[1],"legIntPurposes":[2,6,7,8,10],"flexiblePurposes":[2,6,7,8,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.yieldlove.com/cookie-policy","cookieMaxAgeSeconds":0,"usesNonCookieAccess":false},"371":{"id":371,"name":"Seeding Alliance GmbH","purposes":[1,3,4,5,6],"legIntPurposes":[2,7,8,10],"flexiblePurposes":[2,7,8,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://seeding-alliance.de/datenschutz/","cookieMaxAgeSeconds":15552000,"usesNonCookieAccess":false},"347":{"id":347,"name":"Ezoic Inc.","purposes":[1,7,8,9],"legIntPurposes":[6,10],"flexiblePurposes":[6,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://www.ezoic.com/terms/","cookieMaxAgeSeconds":220752000,"usesNonCookieAccess":false},"218":{"id":218,"name":"Bigabid Media ltd","purposes":[1,3,4],"legIntPurposes":[2,5,6,7,8,9,10],"flexiblePurposes":[],"specialPurposes":[1],"features":[3],"specialFeatures":[1],"policyUrl":"https://www.bigabid.com/privacy-policy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"350":{"id":350,"name":"Free Stream Media Corp. dba Samba TV","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://samba.tv/legal/privacy-policy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":0,"usesNonCookieAccess":false},"351":{"id":351,"name":"Samba TV UK Limited","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://samba.tv/legal/privacy-policy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":0,"usesNonCookieAccess":false},"380":{"id":380,"name":"Vidoomy Media SL","purposes":[2,3,4,5,6,7,8],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://vidoomy.com/privacy-policy.html","cookieMaxAgeSeconds":86400,"usesNonCookieAccess":false},"378":{"id":378,"name":"communicationAds GmbH & Co. KG","purposes":[1],"legIntPurposes":[7],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.communicationads.net/aboutus/privacy/","cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":true},"184":{"id":184,"name":"mediarithmics SAS","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,7],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.mediarithmics.com/en-us/content/privacy-policy","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"368":{"id":368,"name":"VECTAURY","purposes":[1,2,3,4,7,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.vectaury.io/en/personal-data","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"373":{"id":373,"name":"Nielsen Marketing Cloud","purposes":[1,3],"legIntPurposes":[7,9,10],"flexiblePurposes":[7,9],"specialPurposes":[1],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.nielsen.com/us/en/legal/privacy-statement/nielsen-marketing-cloud-privacy-notice/","cookieMaxAgeSeconds":10368000,"usesNonCookieAccess":true},"388":{"id":388,"name":"numberly","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://numberly.com/en/privacy/","cookieMaxAgeSeconds":34187400,"usesNonCookieAccess":false},"250":{"id":250,"name":"Qriously Ltd","purposes":[2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.brandwatch.com/legal/qriously-privacy-notice/","cookieMaxAgeSeconds":0,"usesNonCookieAccess":false},"223":{"id":223,"name":"Audience Trading Platform Ltd.","purposes":[1],"legIntPurposes":[7,8],"flexiblePurposes":[7,8],"specialPurposes":[],"features":[2],"specialFeatures":[],"policyUrl":"https://atp.io/privacy-policy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"384":{"id":384,"name":"Pixalate, Inc.","purposes":[],"legIntPurposes":[7,8,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1,2],"policyUrl":"https://pixalate.com/privacypolicy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"387":{"id":387,"name":"Triapodi Ltd.","purposes":[2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[],"policyUrl":"https://appreciate.mobi/page.html#/end-user-privacy-policy","cookieMaxAgeSeconds":0,"usesNonCookieAccess":false},"312":{"id":312,"name":"Exactag GmbH","purposes":[1,3,7,8],"legIntPurposes":[],"flexiblePurposes":[3,7,8],"specialPurposes":[1],"features":[2],"specialFeatures":[],"policyUrl":"https://www.exactag.com/en/data-privacy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":15552000,"usesNonCookieAccess":false},"178":{"id":178,"name":"Hybrid Theory","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[7,8,9,10],"specialPurposes":[1],"features":[],"specialFeatures":[],"policyUrl":"https://hybridtheory.com/privacy-policy/","cookieMaxAgeSeconds":34190000,"usesNonCookieAccess":false},"377":{"id":377,"name":"AddApptr GmbH","purposes":[1],"legIntPurposes":[7,10],"flexiblePurposes":[7,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://www.addapptr.com/data-privacy","cookieMaxAgeSeconds":0,"usesNonCookieAccess":true},"382":{"id":382,"name":"The Reach Group GmbH","purposes":[1,3,4,5,6,9],"legIntPurposes":[2,7,8],"flexiblePurposes":[2,3,4,5,6,7,8,9],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://trg.de/en/privacy-statement/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":false},"206":{"id":206,"name":"Hybrid Adtech GmbH","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://hybrid.ai/data_protection_policy","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true,"deviceStorageDisclosureUrl":"https://st.hybrid.ai/policy/deviceStorage.json"},"385":{"id":385,"name":"Oracle Data Cloud","purposes":[1,3,5,9,10],"legIntPurposes":[7],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.oracle.com/legal/privacy/marketing-cloud-data-cloud-privacy-policy.html","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"242":{"id":242,"name":"twiago GmbH","purposes":[1,2,3,4,7,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.twiago.com/datenschutz/","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":432000,"usesNonCookieAccess":false},"402":{"id":402,"name":"Effiliation / Effinity","purposes":[1,7],"legIntPurposes":[],"flexiblePurposes":[7],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://inter.effiliation.com/politique-confidentialite.html","cookieMaxAgeSeconds":5184000,"usesNonCookieAccess":true},"413":{"id":413,"name":"Eulerian Technologies","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.eulerian.com/en/privacy/","cookieMaxAgeSeconds":33696000,"usesNonCookieAccess":true},"415":{"id":415,"name":"Seenthis AB","purposes":[],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://seenthis.co/privacy-notice-2018-04-18.pdf","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"263":{"id":263,"name":"Nativo, Inc.","purposes":[1,3,4,10],"legIntPurposes":[2,7],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2],"specialFeatures":[],"policyUrl":"https://www.nativo.com/interest-based-ads","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"329":{"id":329,"name":"Browsi","purposes":[1,7,8],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://gobrowsi.com/browsi-privacy-policy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"337":{"id":337,"name":"SheMedia, LLC","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2,3],"specialFeatures":[],"policyUrl":"https://www.shemedia.com/ad-services-privacy-policy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"422":{"id":422,"name":"Brand Metrics Sweden AB","purposes":[1,6,7,8,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://collector.brandmetrics.com/brandmetrics_privacypolicy.pdf","cookieMaxAgeSeconds":33350400,"usesNonCookieAccess":true},"394":{"id":394,"name":"AudienceProject Aps","purposes":[1,3,4,5,6],"legIntPurposes":[2,7,8,9,10],"flexiblePurposes":[2,7,8,9,10],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[],"policyUrl":"https://privacy.audienceproject.com","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"243":{"id":243,"name":"Cloud Technologies S.A.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.cloudtechnologies.pl/en/internet-advertising-privacy-policy","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"416":{"id":416,"name":"Commanders Act","purposes":[1,2,3,4,5,6,7,8,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.commandersact.com/en/privacy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"434":{"id":434,"name":"DynAdmic","purposes":[1,2,4,7],"legIntPurposes":[3,6,8],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,3],"specialFeatures":[1],"policyUrl":"https://eu.dynadmic.com/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"435":{"id":435,"name":"SINGLESPOT SAS ","purposes":[1,3,4,7,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.singlespot.com/privacy_policy?locale=fr","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"409":{"id":409,"name":"Arrivalist Co.","purposes":[1,7,8,9],"legIntPurposes":[],"flexiblePurposes":[7,8],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.arrivalist.com/privacy","deletedDate":"2020-08-18T00:00:00Z","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"321":{"id":321,"name":"Ziff Davis LLC","purposes":[1,3,4,5,6,9],"legIntPurposes":[2,7,8,10],"flexiblePurposes":[2,7,8,10],"specialPurposes":[1,2],"features":[2],"specialFeatures":[],"policyUrl":"https://www.ziffdavis.com/privacy-policy","cookieMaxAgeSeconds":15552000,"usesNonCookieAccess":false},"436":{"id":436,"name":"INVIBES GROUP","purposes":[1,3,4,5,6,9],"legIntPurposes":[2,7,8,10],"flexiblePurposes":[2,7,8,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.invibes.com/terms","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"418":{"id":418,"name":"PROXISTORE","purposes":[1,4,7,9,10],"legIntPurposes":[2],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.proxistore.com/common/en/cgv","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":true},"429":{"id":429,"name":"Signals (Next14 Group)","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://get.next14.com/docs/platform_privacy_policy_SIGNALS_it.html","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"335":{"id":335,"name":"Beachfront Media LLC","purposes":[1],"legIntPurposes":[2,3,4,7,8,9],"flexiblePurposes":[2,3,4,7,8,9],"specialPurposes":[1,2],"features":[1,3],"specialFeatures":[1],"policyUrl":"https://beachfront.com/privacy-policy/","cookieMaxAgeSeconds":604800,"usesNonCookieAccess":false},"427":{"id":427,"name":"Proxi.cloud sp. z.o.o","purposes":[1,2,3,4,7,8,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1],"specialFeatures":[1],"policyUrl":"https://proxi.cloud/privacy-policy/","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":0,"usesNonCookieAccess":false},"374":{"id":374,"name":"Bmind a Sales Maker Company, S.L.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.bmind.es/legal-notice/","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":false},"438":{"id":438,"name":"INVIDI technologies AB","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,9,10],"specialPurposes":[],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.invidi.com/wp-content/uploads/2020/02/ad-tech-services-privacy-policy.pdf","cookieMaxAgeSeconds":315360000,"usesNonCookieAccess":true},"450":{"id":450,"name":"Neodata Group srl","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.neodatagroup.com/en/security-policy","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":31556952,"usesNonCookieAccess":true,"deviceStorageDisclosureUrl":"https://support.neodatagroup.com/deviceStorage.json"},"452":{"id":452,"name":"Innovid Inc.","purposes":[1,3,4],"legIntPurposes":[2,7,9],"flexiblePurposes":[2,7,9],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.innovid.com/privacy-policy","cookieMaxAgeSeconds":7884000,"usesNonCookieAccess":false},"444":{"id":444,"name":"Playbuzz Ltd (aka EX.CO)","purposes":[1],"legIntPurposes":[2,3,4,5,6,7,8,9,10],"flexiblePurposes":[2,3,5,6],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://ex.co/privacy-policy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"412":{"id":412,"name":"Cxense ASA","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.cxense.com/about-us/privacy-policy","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"455":{"id":455,"name":"GDMServices, Inc. d/b/a FiksuDSP","purposes":[1,2,3,4,10],"legIntPurposes":[7],"flexiblePurposes":[2,3,4,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://fiksu.com/privacy-policy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"298":{"id":298,"name":"Cuebiq","purposes":[1,3,10],"legIntPurposes":[7],"flexiblePurposes":[7],"specialPurposes":[1],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://privacy.cuebiq.com","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"423":{"id":423,"name":"travel audience GmbH","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2],"specialFeatures":[1],"policyUrl":"https://travelaudience.com/product-privacy-policy/","cookieMaxAgeSeconds":34300800,"usesNonCookieAccess":false},"397":{"id":397,"name":"Demandbase, Inc.","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"demandbase.com/privacy-policy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":0,"usesNonCookieAccess":true},"381":{"id":381,"name":"Solocal","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://frontend.adhslx.com/privacy.html?","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"365":{"id":365,"name":"Impact Tech Inc.","purposes":[],"legIntPurposes":[7],"flexiblePurposes":[],"specialPurposes":[1],"features":[1,3],"specialFeatures":[1],"policyUrl":"https://impact.com/privacy-policy/","cookieMaxAgeSeconds":62208000,"usesNonCookieAccess":false},"447":{"id":447,"name":"Adludio Ltd.","purposes":[2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[1],"policyUrl":"https://adludio.com/privacypolicy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"410":{"id":410,"name":"Adtelligent Inc.","purposes":[1,2,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://adtelligent.com/privacy-policy/","cookieMaxAgeSeconds":2678000,"usesNonCookieAccess":false},"137":{"id":137,"name":"Str\u00f6er SSP GmbH (DSP)","purposes":[1,3,4],"legIntPurposes":[2,7,9,10],"flexiblePurposes":[2,3,4,7,9,10],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[1],"policyUrl":"https://www.stroeer.de/fileadmin/de/Konvergenz_und_Konzepte/Daten_und_Technologien/Stroeer_SSP/Downloads/Datenschutz_Stroeer_SSP.pdf","cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":true,"deviceStorageDisclosureUrl":"https://www.stroeer.com/fileadmin/com/StroeerDSP_deviceStorage.json"},"462":{"id":462,"name":"Bidstack Limited","purposes":[1,2,3,4,5,6,9],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,9],"specialPurposes":[1,2],"features":[2],"specialFeatures":[],"policyUrl":"https://www.bidstack.com/privacy-policy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"466":{"id":466,"name":"TACTIC\u2122 Real-Time Marketing AS","purposes":[],"legIntPurposes":[7],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://tacticrealtime.com/privacy/","cookieMaxAgeSeconds":0,"usesNonCookieAccess":false},"431":{"id":431,"name":"White Ops, Inc.","purposes":[],"legIntPurposes":[7,9,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,3],"specialFeatures":[2],"policyUrl":"https://www.whiteops.com/privacy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"336":{"id":336,"name":"Telecoming S.A.","purposes":[2,4],"legIntPurposes":[7,9],"flexiblePurposes":[2,4],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.telecoming.com/privacy-policy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"469":{"id":469,"name":"Zeta Global","purposes":[1],"legIntPurposes":[2,3,4,5,6,7,8,9,10],"flexiblePurposes":[3,4],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://zetaglobal.com/privacy-policy/","cookieMaxAgeSeconds":33696000,"usesNonCookieAccess":false},"440":{"id":440,"name":"DEFINE MEDIA GMBH","purposes":[1,4],"legIntPurposes":[2,7,9,10],"flexiblePurposes":[2,7,9,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.definemedia.de/datenschutz-conative/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"375":{"id":375,"name":"Affle International","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[1],"policyUrl":"https://revx.io/privacy-policy","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"196":{"id":196,"name":"AdElement Media Solutions Pvt Ltd","purposes":[1,2,3,4,7,8],"legIntPurposes":[],"flexiblePurposes":[2,7,8],"specialPurposes":[1,2],"features":[2],"specialFeatures":[1],"policyUrl":"http://adelement.com/privacy-policy.html","cookieMaxAgeSeconds":30456000,"usesNonCookieAccess":true},"475":{"id":475,"name":"TAPTAP Digital SL","purposes":[1,2,3,4,5,6,7],"legIntPurposes":[8,10],"flexiblePurposes":[],"specialPurposes":[1],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.taptapnetworks.com/privacy_policy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"448":{"id":448,"name":"Targetspot Belgium SPRL","purposes":[1,2,3,4,7,9],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,9],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://marketing.targetspot.com/Targetspot/Legal/TargetSpot%20Privacy%20Policy%20-%20June%202018.pdf","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"428":{"id":428,"name":"Internet BillBoard a.s.","purposes":[1],"legIntPurposes":[2,3,4,7],"flexiblePurposes":[2,3,4],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.ibillboard.com/en/privacy-information/","cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":false},"461":{"id":461,"name":"B2B Media Group EMEA","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.b2bmg.com/en/data-privacy/","cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":false},"486":{"id":486,"name":"Madington","purposes":[1],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://delivered-by-madington.com/dat-privacy-policy/","cookieMaxAgeSeconds":0,"usesNonCookieAccess":false},"468":{"id":468,"name":"NeuStar, Inc.","purposes":[1],"legIntPurposes":[3,7,8,9],"flexiblePurposes":[7,8,9],"specialPurposes":[],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.home.neustar/privacy","cookieMaxAgeSeconds":315360000,"usesNonCookieAccess":false},"458":{"id":458,"name":"AdColony, Inc.","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,9,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.adcolony.com/privacy-policy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"293":{"id":293,"name":"SpringServe, LLC","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[3],"specialFeatures":[2],"policyUrl":"https://springserve.com/privacy-policy/","cookieMaxAgeSeconds":31449600,"usesNonCookieAccess":false},"484":{"id":484,"name":"STRIATUM SAS","purposes":[],"legIntPurposes":[7,10],"flexiblePurposes":[],"specialPurposes":[1],"features":[],"specialFeatures":[],"policyUrl":"https://adledge.com/data-privacy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"493":{"id":493,"name":"Carbon (AI) Limited","purposes":[1,2,3,4,5,6,7,8,10],"legIntPurposes":[],"flexiblePurposes":[2,7,8],"specialPurposes":[2],"features":[1,2,3],"specialFeatures":[2],"policyUrl":"https://carbonrmp.com/privacy.html","cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":true},"495":{"id":495,"name":"Arcspire Limited","purposes":[2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://public.arcspire.io/privacy.pdf","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":0,"usesNonCookieAccess":false},"496":{"id":496,"name":"Automattic Ads","purposes":[1,2,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://wordads.co/privacy-info/","cookieMaxAgeSeconds":63072000,"usesNonCookieAccess":false},"424":{"id":424,"name":"KUPONA GmbH","purposes":[4,7],"legIntPurposes":[],"flexiblePurposes":[4],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.kupona.de/dsgvo/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"408":{"id":408,"name":"Fidelity Media","purposes":[1,2,7],"legIntPurposes":[],"flexiblePurposes":[2,7],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://fidelity-media.com/privacy-policy/","deletedDate":"2020-08-25T00:00:00Z","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"473":{"id":473,"name":"Sub2 Technologies Ltd","purposes":[1,2,3,4,5,6,7,8,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,10],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.sub2tech.com/privacy-policy/","cookieMaxAgeSeconds":63072000,"usesNonCookieAccess":true},"467":{"id":467,"name":"Haensel AMS GmbH","purposes":[1],"legIntPurposes":[7],"flexiblePurposes":[7],"specialPurposes":[],"features":[2,3],"specialFeatures":[],"policyUrl":"https://haensel-ams.com/data-privacy/","cookieMaxAgeSeconds":63072000,"usesNonCookieAccess":false},"488":{"id":488,"name":"Opinary GmbH","purposes":[1],"legIntPurposes":[2,7,8,10],"flexiblePurposes":[2,7,8,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://opinary.com/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"490":{"id":490,"name":"PLAYGROUND XYZ EMEA LTD","purposes":[1,2,3,4,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7],"specialPurposes":[1],"features":[1],"specialFeatures":[],"policyUrl":"https://playground.xyz/privacy","cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":false},"491":{"id":491,"name":"ShinyStat S.p.a.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.shinystat.com/it/informativa_privacy_generale.html","cookieMaxAgeSeconds":15552000,"usesNonCookieAccess":true},"502":{"id":502,"name":"NEXD","purposes":[7,10],"legIntPurposes":[9],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://nexd.com/privacy-policy","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":60,"usesNonCookieAccess":false},"508":{"id":508,"name":"Lucid Holdings, LLC","purposes":[1,7,8,9],"legIntPurposes":[],"flexiblePurposes":[7,8,9],"specialPurposes":[1],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://luc.id/privacy-policy/","cookieMaxAgeSeconds":63072000,"usesNonCookieAccess":false},"512":{"id":512,"name":"PubNative GmbH","purposes":[1,2,3,4,7,8,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[1,2],"policyUrl":"https://pubnative.net/privacy-notice/","cookieMaxAgeSeconds":0,"usesNonCookieAccess":false},"471":{"id":471,"name":"Flexoffers.com, LLC","purposes":[1,2,7,8],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[],"policyUrl":"https://www.flexoffers.com/privacy","cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":false},"516":{"id":516,"name":"Pexi B.V.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://pexi.nl/privacy-policy/","cookieMaxAgeSeconds":86400,"usesNonCookieAccess":false},"507":{"id":507,"name":"AdsWizz Inc.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.adswizz.com/our-privacy-policy/","cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":false},"482":{"id":482,"name":"UberMedia, Inc.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1],"specialFeatures":[1],"policyUrl":"https://ubermedia.com/summary-of-privacy-policy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"505":{"id":505,"name":"Shopalyst Inc","purposes":[1,7,8],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[1],"policyUrl":"https://www.shortlyst.com/eu/privacy_terms.html","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"517":{"id":517,"name":"SunMedia ","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.sunmedia.tv/en/cookies","cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":false},"511":{"id":511,"name":"Admixer EU GmbH","purposes":[1,2,3,4,5,7,9],"legIntPurposes":[10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[1],"policyUrl":"https://admixer.com/privacy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":604800,"usesNonCookieAccess":false},"479":{"id":479,"name":"INFINIA MOBILE S.L.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.infiniamobile.com/privacy_policy","cookieMaxAgeSeconds":0,"usesNonCookieAccess":true},"509":{"id":509,"name":"One Tech Group GmbH","purposes":[2,7],"legIntPurposes":[],"flexiblePurposes":[2,7],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://ad-tech-group.com/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"521":{"id":521,"name":"netzeffekt GmbH","purposes":[1,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[1],"policyUrl":"https://www.netzeffekt.de/en/imprint","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":false},"520":{"id":520,"name":"ChannelSight ","purposes":[1],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.channelsight.com/privacypolicy/","deletedDate":"2020-10-01T00:00:00Z","cookieMaxAgeSeconds":0,"usesNonCookieAccess":false},"524":{"id":524,"name":"The Ozone Project Limited","purposes":[1,2,3,4,5,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2,3],"specialFeatures":[1],"policyUrl":"https://ozoneproject.com/privacy-policy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"528":{"id":528,"name":"Kayzen","purposes":[1,2,3,4,9,10],"legIntPurposes":[7],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1],"specialFeatures":[],"policyUrl":"https://kayzen.io/data-privacy-policy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"527":{"id":527,"name":"Jampp LTD","purposes":[1,2,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://jampp.com/privacy.html","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"506":{"id":506,"name":"Salesforce.com, Inc.","purposes":[1,3,5,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.salesforce.com/company/privacy/","cookieMaxAgeSeconds":15552000,"usesNonCookieAccess":true},"535":{"id":535,"name":"INNITY","purposes":[1,2,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.innity.com/privacy-policy.php","cookieMaxAgeSeconds":62208000,"usesNonCookieAccess":true},"530":{"id":530,"name":"Near Pte Ltd","purposes":[1,2,3,4,5,6,7,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,9,10],"specialPurposes":[],"features":[1,2],"specialFeatures":[1],"policyUrl":"https://near.co/privacy","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"539":{"id":539,"name":"AdDefend GmbH","purposes":[1],"legIntPurposes":[2,3,4,7],"flexiblePurposes":[2,3,4,7],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.addefend.com/en/privacy-policy/","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":false},"501":{"id":501,"name":"Alliance Gravity Data Media","purposes":[1,2,3,4,7,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.alliancegravity.com/politiquedeprotectiondesdonneespersonnelles","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"519":{"id":519,"name":"Newsroom AI Ltd","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://studio.nws.ai/privacy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"531":{"id":531,"name":"Smartclip Hispania SL","purposes":[1,2,3,4,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://rgpd-smartclip.com/","cookieMaxAgeSeconds":0,"usesNonCookieAccess":false,"deviceStorageDisclosureUrl":"https://cdn.smartclip-services.com/.well-known/deviceStorage.json"},"536":{"id":536,"name":"GlobalWebIndex","purposes":[1,7,8,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://legal.trendstream.net/non-panellist_privacy_policy","cookieMaxAgeSeconds":31622400,"usesNonCookieAccess":false},"544":{"id":544,"name":"Kochava Inc.","purposes":[7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.kochava.com/support-privacy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"543":{"id":543,"name":"PaperG, Inc. dba Thunder Industries","purposes":[1,3,4,5,6],"legIntPurposes":[2,7,8],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[1],"policyUrl":"https://www.makethunder.com/privacy","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":false},"334":{"id":334,"name":"Cydersoft","purposes":[],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,3],"specialFeatures":[1,2],"policyUrl":"https://www.videmob.com/privacy.html","deletedDate":"2020-11-30T00:00:00Z","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"547":{"id":547,"name":"Reach Media GmbH","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.videoreach.com/about/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"546":{"id":546,"name":"Smart Traffik","purposes":[1],"legIntPurposes":[7],"flexiblePurposes":[7],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://okube-attribution.com/politique-de-confidentialite/","cookieMaxAgeSeconds":34187400,"usesNonCookieAccess":true},"541":{"id":541,"name":"DeepIntent, Inc.","purposes":[1],"legIntPurposes":[2,3,4,7,9,10],"flexiblePurposes":[2,3,4,7,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.deepintent.com/platform-privacy-policy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":63113904,"usesNonCookieAccess":true},"545":{"id":545,"name":"Reignn Platform Ltd","purposes":[1,2,3,4,7,8,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[2],"policyUrl":"https://reignn.com/user-privacy-policy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"439":{"id":439,"name":"Bit Q Holdings Limited","purposes":[1,7,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[1],"policyUrl":"https://www.rippll.com/privacy","deletedDate":"2020-12-21T00:00:00Z","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"553":{"id":553,"name":"Adhese","purposes":[1,2,3,4,7,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[1],"policyUrl":"https://adhese.com/privacy-and-cookie-policy","cookieMaxAgeSeconds":30,"usesNonCookieAccess":true},"556":{"id":556,"name":"adhood.com","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[1],"policyUrl":"https://v3.adhood.com/en/site/politikavekurallar/gizlilik.php?lang=en","cookieMaxAgeSeconds":63072000,"usesNonCookieAccess":false},"550":{"id":550,"name":"Happydemics","purposes":[1,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.iubenda.com/privacy-policy/93308573/full-legal","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"554":{"id":554,"name":"RMSi Radio Marketing Service interactive GmbH","purposes":[1],"legIntPurposes":[3,7,9],"flexiblePurposes":[3,7,9],"specialPurposes":[1],"features":[1],"specialFeatures":[1,2],"policyUrl":"https://www.rms.de/datenschutz/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":true},"498":{"id":498,"name":"Mediakeys Platform","purposes":[1,6,10],"legIntPurposes":[2,3,4,7,9],"flexiblePurposes":[2,3,4,9],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://drbanner.com/privacypolicy_en/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"565":{"id":565,"name":"Adobe Audience Manager, Adobe Experience Platform","purposes":[1,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[],"specialFeatures":[],"policyUrl":"https://www.adobe.com/privacy/policy.html","cookieMaxAgeSeconds":15552000,"usesNonCookieAccess":false},"571":{"id":571,"name":"ViewPay","purposes":[1,2,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,4,5,6,7,8,9,10],"specialPurposes":[],"features":[3],"specialFeatures":[],"policyUrl":"https://viewpay.tv/mentions-legales/","cookieMaxAgeSeconds":15552000,"usesNonCookieAccess":true},"568":{"id":568,"name":"Jointag (Next14 Group)","purposes":[1,2,3,4,5,6,7,8],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[1,2],"policyUrl":"https://www.jointag.com/privacy/kariboo/publisher/third/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"570":{"id":570,"name":"Czech Publisher Exchange z.s.p.o.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.cpex.cz/pro-uzivatele/ochrana-soukromi/","cookieMaxAgeSeconds":31556952,"usesNonCookieAccess":false},"559":{"id":559,"name":"Otto (GmbH & Co KG)","purposes":[1],"legIntPurposes":[2,3,4,7,9,10],"flexiblePurposes":[2,3,4,7,9,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.otto.de/shoppages/service/datenschutz","cookieMaxAgeSeconds":315446400,"usesNonCookieAccess":false},"569":{"id":569,"name":"Kairos Fire","purposes":[1,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[7,8,9,10],"specialPurposes":[],"features":[1],"specialFeatures":[1],"policyUrl":"https://www.kairosfire.com/privacy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"577":{"id":577,"name":"Neustar on behalf of The Procter & Gamble Company","purposes":[1,2,3,4,6,9],"legIntPurposes":[5,7,8],"flexiblePurposes":[2,3,4,5,6,7,8,9],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.pg.com/privacy/english/privacy_statement.shtml","cookieMaxAgeSeconds":34164000,"usesNonCookieAccess":false},"590":{"id":590,"name":"Sourcepoint Technologies, Inc.","purposes":[],"legIntPurposes":[6,8],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.sourcepoint.com/privacy-policy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"587":{"id":587,"name":"Localsensor B.V.","purposes":[1,2,3,4,7,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.localsensor.com/privacy.html","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"578":{"id":578,"name":"MairDumont Netletix GmbH&CoKG","purposes":[1],"legIntPurposes":[2,3,4,7,8],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.mairdumont-netletix.com/wer-wir-sind/datenschutzerklaerung/","deletedDate":"2021-02-03T00:00:00Z","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"580":{"id":580,"name":"Goldbach Group AG","purposes":[1],"legIntPurposes":[2,3,4,7,8,9,10],"flexiblePurposes":[2,3,4,7,8,9,10],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[1],"policyUrl":"https://goldbach.com/ch/de/datenschutz","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"593":{"id":593,"name":"Programatica de publicidad S.L.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://datmean.com/politica-privacidad/","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":true},"574":{"id":574,"name":"Realeyes OU","purposes":[1,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1],"specialFeatures":[],"policyUrl":"https://realview.realeyesit.com/privacy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"581":{"id":581,"name":"Mobilewalla, Inc.","purposes":[],"legIntPurposes":[2,3,4,5,6,7,8,9,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.mobilewalla.com/business-services-privacy-policy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"598":{"id":598,"name":"audio content & control GmbH","purposes":[1],"legIntPurposes":[2,7,9],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://www.audio-cc.com/audiocc_privacy_policy.pdf","cookieMaxAgeSeconds":0,"usesNonCookieAccess":false},"596":{"id":596,"name":"InsurAds Technologies SA.","purposes":[1,2,3,4,5,6,9,10],"legIntPurposes":[7,8],"flexiblePurposes":[7,8],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://www.insurads.com/privacy.html","cookieMaxAgeSeconds":86400,"usesNonCookieAccess":false},"549":{"id":549,"name":"Bandsintown Amplified LLC","purposes":[2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://corp.bandsintown.com/privacy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"597":{"id":597,"name":"Better Banners A/S","purposes":[1,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://betterbanners.com/en/privacy","cookieMaxAgeSeconds":600000,"usesNonCookieAccess":false},"584":{"id":584,"name":"Dynamic 1001 GmbH","purposes":[1,7,10],"legIntPurposes":[],"flexiblePurposes":[7,10],"specialPurposes":[2],"features":[3],"specialFeatures":[2],"policyUrl":"https://dynamic-tracking.com/Datenschutz.aspx","cookieMaxAgeSeconds":63072000,"usesNonCookieAccess":true},"601":{"id":601,"name":"WebAds B.V","purposes":[1,2],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://privacy.webads.eu/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"599":{"id":599,"name":"Maximus Live LLC","purposes":[],"legIntPurposes":[7,8],"flexiblePurposes":[],"specialPurposes":[1],"features":[],"specialFeatures":[1],"policyUrl":"https://maximusx.com/privacy-policy/","cookieMaxAgeSeconds":0,"usesNonCookieAccess":false},"606":{"id":606,"name":"Impactify ","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://impactify.io/privacy-policy/","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":true},"602":{"id":602,"name":"Online Solution","purposes":[1,2,3,4,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,8,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://adsafety.net/privacy.html","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"612":{"id":612,"name":"Adnami Aps","purposes":[2],"legIntPurposes":[7],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.adnami.io/privacy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"591":{"id":591,"name":"Consumable, Inc.","purposes":[1,2,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://consumable.com/privacy-policy.html","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"614":{"id":614,"name":"Market Resource Partners LLC","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[2],"policyUrl":"https://www.mrpfd.com/privacy-policy/","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":false},"615":{"id":615,"name":"Adsolutions BV","purposes":[1,2],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.adsolutions.com/privacy-policy/","cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":false},"607":{"id":607,"name":"ucfunnel Co., Ltd.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[1],"policyUrl":"https://www.ucfunnel.com/privacy-policy","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"609":{"id":609,"name":"Predicio","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.predic.io/privacy","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"617":{"id":617,"name":"Onfocus (Adagio)","purposes":[1,2,7,8],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[1],"policyUrl":"https://adagio.io/privacy","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":true},"620":{"id":620,"name":"Blue","purposes":[1],"legIntPurposes":[2,3,4,5,6,7,8,9,10],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[1],"policyUrl":"https://www.getblue.io/privacy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"610":{"id":610,"name":"Azerion Holding B.V.","purposes":[1,3,4,9],"legIntPurposes":[2,5,6,7,8,10],"flexiblePurposes":[2,5,6],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[1],"policyUrl":"https://azerion.com/business/privacy.html","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"621":{"id":621,"name":"Seznam.cz, a.s.","purposes":[1,3,4,5,6],"legIntPurposes":[2,7,8,9,10],"flexiblePurposes":[],"specialPurposes":[],"features":[2,3],"specialFeatures":[1,2],"policyUrl":"https://www.seznam.cz/ochranaudaju","cookieMaxAgeSeconds":31556926,"usesNonCookieAccess":false},"624":{"id":624,"name":"Norstat AS","purposes":[1,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.norstatpanel.com/en/data-protection","cookieMaxAgeSeconds":63113904,"usesNonCookieAccess":true},"95":{"id":95,"name":"Lotame Solutions, inc","purposes":[1,3,5],"legIntPurposes":[7,8,9,10],"flexiblePurposes":[7,8,9,10],"specialPurposes":[],"features":[2,3],"specialFeatures":[],"policyUrl":"https://www.lotame.com/about-lotame/privacy/lotame-corporate-websites-privacy-policy/","cookieMaxAgeSeconds":23652000,"usesNonCookieAccess":false},"618":{"id":618,"name":"BEINTOO SPA","purposes":[1,2,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1],"specialFeatures":[1],"policyUrl":"https://www.beintoo.com/privacy-cookie-policy/","cookieMaxAgeSeconds":0,"usesNonCookieAccess":false},"625":{"id":625,"name":"BILENDI SA","purposes":[1,6,7,8,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1],"specialFeatures":[],"policyUrl":"https://www.maximiles.com/privacy-policy","cookieMaxAgeSeconds":0,"usesNonCookieAccess":false},"628":{"id":628,"name":": Tappx","purposes":[1,2,4,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2],"specialFeatures":[1,2],"policyUrl":"https://www.tappx.com/en/privacy-policy/","cookieMaxAgeSeconds":10800,"usesNonCookieAccess":false},"630":{"id":630,"name":"Contact Impact GmbH","purposes":[1],"legIntPurposes":[2,3,4,7,10],"flexiblePurposes":[2,3,4,7,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://contactimpact.de/privacy","cookieMaxAgeSeconds":43200000,"usesNonCookieAccess":false},"626":{"id":626,"name":"Hivestack Inc.","purposes":[1,7,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[1],"policyUrl":"https://hivestack.com/privacy-policy","cookieMaxAgeSeconds":0,"usesNonCookieAccess":true},"631":{"id":631,"name":"Relay42 Netherlands B.V.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://relay42.com/privacy","cookieMaxAgeSeconds":63113851,"usesNonCookieAccess":false},"638":{"id":638,"name":"Passendo Aps","purposes":[1,2,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://passendo.com/users-privacy-policy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"644":{"id":644,"name":"Gamoshi Ltd","purposes":[1,2,3,4,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,8,9,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.gamoshi.com/privacy-policy","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":false},"639":{"id":639,"name":"Smile Wanted Group","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[2],"policyUrl":"https://www.smilewanted.com/privacy.php","cookieMaxAgeSeconds":7884000,"usesNonCookieAccess":false},"579":{"id":579,"name":"Ve Global UK Limited","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.optomaton.com/privacy.html","cookieMaxAgeSeconds":31556952,"usesNonCookieAccess":false},"645":{"id":645,"name":"Noster Finance S.L.","purposes":[1,2,3,4,5,6,9,10],"legIntPurposes":[7,8],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.finect.com/terminos-legales/politica-de-cookies","cookieMaxAgeSeconds":63115200,"usesNonCookieAccess":true},"653":{"id":653,"name":"Smartme Analytics","purposes":[7,8,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,3],"specialFeatures":[],"policyUrl":"https://smartmeapp.com/info/smartme/aviso_legal.php","deletedDate":"2020-07-03T00:00:00Z","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"613":{"id":613,"name":"Adserve.zone / Artworx AS","purposes":[1],"legIntPurposes":[2,7,10],"flexiblePurposes":[2],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://adserve.zone/adserveprivacypolicy.html","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":true},"573":{"id":573,"name":"Dailymotion SA","purposes":[1,3,4],"legIntPurposes":[2,5,6,7,8,9,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2],"specialFeatures":[],"policyUrl":"https://www.dailymotion.com/legal/privacy","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":33696000,"usesNonCookieAccess":true},"652":{"id":652,"name":"Skaze","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.skaze.fr/rgpd/","cookieMaxAgeSeconds":31557600,"usesNonCookieAccess":true},"646":{"id":646,"name":"Notify","purposes":[9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1],"specialFeatures":[],"policyUrl":"https://notify-group.com/en/mentions-legales/","cookieMaxAgeSeconds":34164060,"usesNonCookieAccess":false},"648":{"id":648,"name":"TrueData Solutions, Inc.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.truedata.co/privacy-policy/","deletedDate":"2020-09-02T00:00:00Z","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"647":{"id":647,"name":"Axel Springer Teaser Ad GmbH","purposes":[1,3,4],"legIntPurposes":[2,7,10],"flexiblePurposes":[2,7,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.adup-tech.com/privacy","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"654":{"id":654,"name":"GRAPHINIUM","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.graphinium.com/privacy/","cookieMaxAgeSeconds":25920000,"usesNonCookieAccess":false},"659":{"id":659,"name":"Research and Analysis of Media in Sweden AB","purposes":[1],"legIntPurposes":[7,8,9],"flexiblePurposes":[],"specialPurposes":[],"features":[2],"specialFeatures":[],"policyUrl":"https://www2.rampanel.com/privacy-policy/","cookieMaxAgeSeconds":32000000,"usesNonCookieAccess":false},"656":{"id":656,"name":"Think Clever Media","purposes":[1,2,3,4,5,6,9],"legIntPurposes":[7,8,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.contentignite.com/privacy-policy/","cookieMaxAgeSeconds":0,"usesNonCookieAccess":false},"657":{"id":657,"name":"GP One GmbH","purposes":[1],"legIntPurposes":[2,3,4],"flexiblePurposes":[2,3,4],"specialPurposes":[1,2],"features":[],"specialFeatures":[1,2],"policyUrl":"https://www.gsi-one.org/de/privacy-policy.html","cookieMaxAgeSeconds":0,"usesNonCookieAccess":false},"655":{"id":655,"name":"Sportradar AG","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,7,9],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.sportradar.com/about-us/privacy/","cookieMaxAgeSeconds":31556952,"usesNonCookieAccess":true},"662":{"id":662,"name":"SoundCast","purposes":[1,2,3,4,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[1],"policyUrl":"https://soundcast.fm/en/data-privacy","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":0,"usesNonCookieAccess":false},"665":{"id":665,"name":"Digital East GmbH","purposes":[2,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://www.digitaleast.mobi/en/legal/privacy-policy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"650":{"id":650,"name":"Telefonica Investigaci\u00f3n y Desarrollo S.A.U","purposes":[1,2,3,4,5,6,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://www.cognitivemarketing.tid.es/","cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":false},"666":{"id":666,"name":"BeOp","purposes":[1,2],"legIntPurposes":[7,8,10],"flexiblePurposes":[2,7,8,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://beop.io/privacy","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false,"deviceStorageDisclosureUrl":"https://beop.io/deviceStorage.json"},"663":{"id":663,"name":"Mobsuccess","purposes":[1,2,3,4,7,9],"legIntPurposes":[],"flexiblePurposes":[2,7],"specialPurposes":[1,2],"features":[1],"specialFeatures":[1],"policyUrl":"https://www.mobsuccess.com/en/privacy","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false,"deviceStorageDisclosureUrl":"https://www.mobsuccess.com/deviceStorage.json"},"658":{"id":658,"name":"BLIINK SAS","purposes":[1,2,3,4,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,8,9,10],"specialPurposes":[2],"features":[],"specialFeatures":[1],"policyUrl":"https://bliink.io/privacy-policy","cookieMaxAgeSeconds":34186669,"usesNonCookieAccess":false},"667":{"id":667,"name":"Liftoff Mobile, Inc.","purposes":[1,2,3,4,6,7,8,10],"legIntPurposes":[5],"flexiblePurposes":[2,3,4,5,6,7,8,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://liftoff.io/privacy-policy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"668":{"id":668,"name":"WhatRocks Inc. ","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2],"specialFeatures":[1,2],"policyUrl":"https://www.whatrocks.co/en/privacy-policy ","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"670":{"id":670,"name":"Timehop, Inc.","purposes":[1,2,4,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[],"policyUrl":"https://www.adsbynimbus.com/privacy-policy","cookieMaxAgeSeconds":0,"usesNonCookieAccess":false},"674":{"id":674,"name":"Duration Media, LLC.","purposes":[1,2,3,4,5,6,7,8,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.durationmedia.net/privacy-policy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"675":{"id":675,"name":"Instreamatic inc.","purposes":[2,3,4,7,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[3],"specialFeatures":[],"policyUrl":"https://instreamatic.com/privacy-policy/","deletedDate":"2020-10-20T00:00:00Z","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"676":{"id":676,"name":"BusinessClick","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[1],"policyUrl":"https://www.businessclick.com/documents/RegulaminProgramuBusinessClick-2019.pdf","cookieMaxAgeSeconds":94670777,"usesNonCookieAccess":true},"672":{"id":672,"name":"Cedato Technologies Ltd","purposes":[1,2],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.cedato.com/privacy-policy/","cookieMaxAgeSeconds":0,"usesNonCookieAccess":false},"664":{"id":664,"name":"adMarketplace, Inc.","purposes":[1,2,3,4],"legIntPurposes":[7,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.admarketplace.com/privacy-policy/","cookieMaxAgeSeconds":5270400,"usesNonCookieAccess":false},"671":{"id":671,"name":"Mediaforce LTD","purposes":[1,2,3,4,5,6,7,8,9],"legIntPurposes":[10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,3],"specialFeatures":[],"policyUrl":"https://casino.mindthebet.co.uk/themes/mindthebetv2-casino/privacy.php","cookieMaxAgeSeconds":63072000,"usesNonCookieAccess":false},"561":{"id":561,"name":"AuDigent","purposes":[1,2,3,4,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2,3],"specialFeatures":[],"policyUrl":"https://audigent.com/platform-privacy-policy","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":false},"682":{"id":682,"name":"Radio Net Media Limited","purposes":[1,2,3,4],"legIntPurposes":[7],"flexiblePurposes":[],"specialPurposes":[2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.adtonos.com/service-privacy-policy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"684":{"id":684,"name":"Blue Billywig BV","purposes":[],"legIntPurposes":[7],"flexiblePurposes":[7],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.bluebillywig.com/privacy-statement/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"686":{"id":686,"name":"The MediaGrid Inc.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.themediagrid.com/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"685":{"id":685,"name":"Arkeero","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://arkeero.com/privacy-2/","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":false},"687":{"id":687,"name":"MISSENA","purposes":[1,2,3,4,5,6,7,8],"legIntPurposes":[],"flexiblePurposes":[2,7],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://missena.com/confidentialite/","cookieMaxAgeSeconds":34128000,"usesNonCookieAccess":false},"690":{"id":690,"name":"Go.pl sp. z o.o.","purposes":[1,2,3,4],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[1],"policyUrl":"https://go.pl/polityka-prywatnosci/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"691":{"id":691,"name":"Lifesight Pte. Ltd.","purposes":[2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.lifesight.io/privacy-policy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"697":{"id":697,"name":"ADWAYS SAS","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.adways.com/confidentialite/?lang=en","cookieMaxAgeSeconds":31556926,"usesNonCookieAccess":false},"699":{"id":699,"name":"HyperTV Inc.","purposes":[1,2,4,9],"legIntPurposes":[7,10],"flexiblePurposes":[],"specialPurposes":[2],"features":[1],"specialFeatures":[],"policyUrl":"https://www.hypertvx.com/privacy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"703":{"id":703,"name":"MindTake Research GmbH","purposes":[1,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[2,3],"specialFeatures":[],"policyUrl":"https://www.mindtake.com/en/reppublika-privacy-policy","cookieMaxAgeSeconds":8035200,"usesNonCookieAccess":false},"706":{"id":706,"name":"VRTCAL Markets Inc","purposes":[],"legIntPurposes":[2],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://vrtcal.com/docs/PrivacyPolicy-Advertising.pdf","cookieMaxAgeSeconds":86400,"usesNonCookieAccess":true},"681":{"id":681,"name":"MyTraffic","purposes":[1,9],"legIntPurposes":[],"flexiblePurposes":[9],"specialPurposes":[],"features":[],"specialFeatures":[1],"policyUrl":"https://www.mytraffic.io/en/privacy","cookieMaxAgeSeconds":9198000,"usesNonCookieAccess":false},"649":{"id":649,"name":"adality GmbH","purposes":[3,4],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1],"specialFeatures":[],"policyUrl":"https://adality.de/en/privacy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"711":{"id":711,"name":"SITU8ED SA","purposes":[1,3,4,5,6,7,8,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[1],"policyUrl":"https://www.situ8ed.com/privacy-policy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"712":{"id":712,"name":"Inspired Mobile Limited","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://byinspired.com/privacypolicy.pdf","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":false},"688":{"id":688,"name":"Effinity","purposes":[],"legIntPurposes":[],"flexiblePurposes":[7],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.effiliation.com/politique-de-confidentialite/","deletedDate":"2020-11-16T00:00:00Z","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":false},"702":{"id":702,"name":"Kwanko","purposes":[1,2,7,8],"legIntPurposes":[],"flexiblePurposes":[2,7,8],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.kwanko.com/fr/rgpd/","cookieMaxAgeSeconds":5184000,"usesNonCookieAccess":true},"715":{"id":715,"name":"BidBerry SRL","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[],"policyUrl":"https://www.bidberrymedia.com/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"714":{"id":714,"name":"Survata Inc.","purposes":[1],"legIntPurposes":[7,9],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.survata.com/respondent-privacy-policy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"713":{"id":713,"name":"Dataseat Ltd","purposes":[1,2,3,4,5,6,7,8,9],"legIntPurposes":[],"flexiblePurposes":[2,7,8],"specialPurposes":[],"features":[3],"specialFeatures":[],"policyUrl":"https://dataseat.com/privacy-policy","cookieMaxAgeSeconds":86400,"usesNonCookieAccess":true},"716":{"id":716,"name":"OnAudience Ltd","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.onaudience.com/internet-advertising-privacy-policy","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"708":{"id":708,"name":"Dugout Limited ","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://dugout.com/privacy-policy","deletedDate":"2019-11-02T00:00:00Z","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"694":{"id":694,"name":"Snapupp Technologies SL","purposes":[2,3,4,5,6,9],"legIntPurposes":[7,8,10],"flexiblePurposes":[10],"specialPurposes":[2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.enterprise.noddus.com/privacy-policy","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"717":{"id":717,"name":"Audience Network","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[],"policyUrl":"https://www.en.audiencenetwork.pl/internet-advertising-privacy-policy","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"718":{"id":718,"name":"XChange by SFBX\u00ae","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://appconsent.io/en/privacy-policy","cookieMaxAgeSeconds":12,"usesNonCookieAccess":true},"683":{"id":683,"name":"Cookie Market LTD","purposes":[1,3,4,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2,3],"specialFeatures":[1],"policyUrl":"https://cookie.market/privacyPolicy.php","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"720":{"id":720,"name":"AAX LLC","purposes":[1,3,4],"legIntPurposes":[2,7,10],"flexiblePurposes":[2,7],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://aax.media/privacy/","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":189302400,"usesNonCookieAccess":true},"678":{"id":678,"name":"Axonix LTD","purposes":[2],"legIntPurposes":[7,10],"flexiblePurposes":[2],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://axonix.com/privacy-cookie-policy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"719":{"id":719,"name":"Online Advertising Network Sp. z o.o.","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[1],"policyUrl":"https://www.oan.pl/en/privacy-policy","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"707":{"id":707,"name":"Dentsu Aegis Network Italia SpA","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.dentsuaegisnetwork.com/it/it/policies/info-cookie","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"721":{"id":721,"name":"Beaconspark Ltd","purposes":[1,2,3,4,5,7],"legIntPurposes":[6,8],"flexiblePurposes":[2,3,4,5,6,7,8],"specialPurposes":[1,2],"features":[1],"specialFeatures":[],"policyUrl":"https://www.engageya.com/privacy","cookieMaxAgeSeconds":315360000,"usesNonCookieAccess":false},"724":{"id":724,"name":"Between Exchange","purposes":[1],"legIntPurposes":[7],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://en.betweenx.com/pdata.pdf","cookieMaxAgeSeconds":315360000,"usesNonCookieAccess":true},"728":{"id":728,"name":"Appier PTE Ltd","purposes":[1,3,4],"legIntPurposes":[2,5,6,7,8,9,10],"flexiblePurposes":[2,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.appier.com/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"729":{"id":729,"name":"Cavai AS & UK ","purposes":[],"legIntPurposes":[7,8],"flexiblePurposes":[7,8],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://cav.ai/privacy-policy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"730":{"id":730,"name":"INFOnline GmbH","purposes":[],"legIntPurposes":[8],"flexiblePurposes":[8],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.infonline.de/en/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"722":{"id":722,"name":"agof - daily campaign facts","purposes":[1,7,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[],"specialFeatures":[],"policyUrl":"https://www.agof.de/datenschutz/","deletedDate":"2020-09-14T00:00:00Z","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"723":{"id":723,"name":"Adzymic Pte Ltd","purposes":[1,2,3,4,7,8],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2],"specialFeatures":[],"policyUrl":"https://www.adzymic.co/privacy","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"725":{"id":725,"name":"Pubfinity LLC","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[2],"policyUrl":"https://pubfinity.com/privacy-policy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":315360000,"usesNonCookieAccess":true},"733":{"id":733,"name":"Anzu Virtual Reality LTD","purposes":[1,2,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[1],"specialFeatures":[1],"policyUrl":"https://anzu.io/privacy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"737":{"id":737,"name":"Monet Engine Inc","purposes":[1,2,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://appmonet.com/privacy-policy/","cookieMaxAgeSeconds":2678400,"usesNonCookieAccess":true},"740":{"id":740,"name":"6Sense Insights, Inc.","purposes":[1],"legIntPurposes":[2,3,4,5,7,8,10],"flexiblePurposes":[2,3,4,5,7,8,10],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://6sense.com/privacy-policy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":63072000,"usesNonCookieAccess":true},"744":{"id":744,"name":"Vidazoo Ltd","purposes":[1],"legIntPurposes":[2,3,4,5,6,7,8,9,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://vidazoo.gitbook.io/vidazoo-legal/privacy-policy","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":2600000,"usesNonCookieAccess":false},"731":{"id":731,"name":"GeistM Technologies LTD","purposes":[2,4,6,7,8],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2],"specialFeatures":[],"policyUrl":"https://geistm.com/en/legal/privacy","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":false},"741":{"id":741,"name":"Brand Advance Limited","purposes":[7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1,2],"policyUrl":"https://www.wearebrandadvance.com/website-privacy-policy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"735":{"id":735,"name":"Deutsche Post AG","purposes":[1,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1],"specialFeatures":[],"policyUrl":"https://www.deutschepost.de/de/c/consentric/datenschutz.html","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"734":{"id":734,"name":"Cint AB","purposes":[1,7,8,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1],"specialFeatures":[],"policyUrl":"https://www.cint.com/participant-privacy-notice","cookieMaxAgeSeconds":63072000,"usesNonCookieAccess":false},"709":{"id":709,"name":"NC Audience Exchange, LLC (NewsIQ)","purposes":[1,3,4,5],"legIntPurposes":[2,7,8,9,10],"flexiblePurposes":[2,3,4,5,7,8,9,10],"specialPurposes":[2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.ncaudienceexchange.com/privacy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"739":{"id":739,"name":"Blingby LLC","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[1],"policyUrl":"https://blingby.com/privacy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"727":{"id":727,"name":"Pinpoll GmbH (Private Limited)","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1],"specialFeatures":[],"policyUrl":"https://www.pinpoll.com/#data_protection_declaration","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":true},"732":{"id":732,"name":"Performax.cz, s.r.o.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2],"specialFeatures":[],"policyUrl":"https://reg.tiscali.cz/privacy-policy","cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":true},"736":{"id":736,"name":"BidMachine Inc.","purposes":[1,2,3,4,5,6],"legIntPurposes":[7,8,10],"flexiblePurposes":[7,8,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://explorestack.com/privacy-policy/","cookieMaxAgeSeconds":0,"usesNonCookieAccess":false},"738":{"id":738,"name":"adbility media GmbH","purposes":[2,3,4,9],"legIntPurposes":[7],"flexiblePurposes":[2,3,4,9],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.adbility-media.com/datenschutzerklaerung/","cookieMaxAgeSeconds":0,"usesNonCookieAccess":true},"742":{"id":742,"name":"Audiencerate LTD","purposes":[1,2,3,5,6],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.audiencerate.com/privacy/","cookieMaxAgeSeconds":1296000,"usesNonCookieAccess":false},"743":{"id":743,"name":"MOVIads Sp. z o.o. Sp. k.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2,3],"specialFeatures":[1],"policyUrl":"https://moviads.pl/polityka-prywatnosci/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":0,"usesNonCookieAccess":false},"745":{"id":745,"name":"Justtag Sp. z o.o.","purposes":[1,3,4,9],"legIntPurposes":[7],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.justtag.com/pdf/PRIVACY_POLICY_Koalametrics_english.pdf","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"746":{"id":746,"name":"Adxperience SAS","purposes":[4],"legIntPurposes":[2,7],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://adxperience.com/privacy-policy/","cookieMaxAgeSeconds":0,"usesNonCookieAccess":true},"747":{"id":747,"name":"Kairion GmbH","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[],"features":[2,3],"specialFeatures":[1,2],"policyUrl":"https://kairion.de/datenschutzbestimmungen/","cookieMaxAgeSeconds":0,"usesNonCookieAccess":false},"748":{"id":748,"name":"AUDIOMOB LTD","purposes":[1,2,3,4,7,8,9],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,8,9],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[1],"policyUrl":"https://www.audiomob.io/privacy","cookieMaxAgeSeconds":0,"usesNonCookieAccess":false},"749":{"id":749,"name":"Good-Loop Ltd","purposes":[1,3,4,5,6],"legIntPurposes":[2,7,8,9,10],"flexiblePurposes":[7,8,9,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://doc.good-loop.com/policy/privacy-policy.html","cookieMaxAgeSeconds":0,"usesNonCookieAccess":false},"750":{"id":750,"name":"THE NEWCO S.R.L.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.thenewco.it/privacy_policy_servizi_prodotti.html","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"751":{"id":751,"name":"Kiosked Ltd","purposes":[],"legIntPurposes":[2,7],"flexiblePurposes":[2,7],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://kiosked.com/privacy-policy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"753":{"id":753,"name":"ScaleMonk Inc.","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,9,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.scalemonk.com/privacy-policy/index.html","cookieMaxAgeSeconds":0,"usesNonCookieAccess":false},"754":{"id":754,"name":"DistroScale, Inc.","purposes":[1],"legIntPurposes":[2,6,8,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.distroscale.com/privacy-policy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":63072000,"usesNonCookieAccess":true},"756":{"id":756,"name":"Fandom, Inc.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.fandom.com/privacy-policy","cookieMaxAgeSeconds":15780000,"usesNonCookieAccess":false},"757":{"id":757,"name":"UAB Meazy","purposes":[1,2,3,4,5,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://meazy.co/privacy-policy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"758":{"id":758,"name":"GfK SE","purposes":[1,7,8,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://help.sensic.net/privacypolicy_en.html","cookieMaxAgeSeconds":63072000,"usesNonCookieAccess":true},"759":{"id":759,"name":"RevJet","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1],"specialFeatures":[],"policyUrl":"https://www.revjet.com/privacy","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":31449000,"usesNonCookieAccess":false},"760":{"id":760,"name":"VEXPRO TECHNOLOGIES LTD","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[2],"policyUrl":"https://onedash.com/privacy-policy.html","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"761":{"id":761,"name":"Digiseg ApS","purposes":[1,3,5,7,8,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1],"specialFeatures":[],"policyUrl":"https://digiseg.io/privacy-center/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"762":{"id":762,"name":"Protected Media LTD","purposes":[1],"legIntPurposes":[3,5,7,8,9,10],"flexiblePurposes":[],"specialPurposes":[1],"features":[3],"specialFeatures":[],"policyUrl":"https://www.protected.media/privacy-policy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"763":{"id":763,"name":"Delidatax SL","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.delidatax.net/privacy.htm","cookieMaxAgeSeconds":0,"usesNonCookieAccess":true},"764":{"id":764,"name":"Lucidity","purposes":[1,2,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://golucidity.com/privacy-policy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"765":{"id":765,"name":"Grabit Interactive Media Inc dba KERV Interctive","purposes":[2,3,4,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2],"specialFeatures":[],"policyUrl":"https://kervit.com/privacy-policy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"766":{"id":766,"name":"ADCELL | Firstlead GmbH","purposes":[1,2],"legIntPurposes":[],"flexiblePurposes":[2],"specialPurposes":[],"features":[],"specialFeatures":[2],"policyUrl":"https://www.adcell.de/agb#sector_6","cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":true},"767":{"id":767,"name":"Clinch Labs LTD","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://clinch.co/privacy-policy","cookieMaxAgeSeconds":63072000,"usesNonCookieAccess":false},"768":{"id":768,"name":"Global Media & Entertainment Limited","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://global.com/privacy-policy/","cookieMaxAgeSeconds":46657000,"usesNonCookieAccess":true},"769":{"id":769,"name":"MEDIAMETRIE","purposes":[1,8],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.mediametrie.fr/fr/gestion-des-cookies","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"770":{"id":770,"name":"MARKETPERF CORP","purposes":[1],"legIntPurposes":[2,3,4,5,6,7,8,10],"flexiblePurposes":[2,3,4,5,6],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.marketperf.com/assets/images/app/marketperf/pdf/privacy-policy.pdf","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"771":{"id":771,"name":"bam! interactive marketing GmbH ","purposes":[1,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://bam-interactive.de/privacy-policy/","cookieMaxAgeSeconds":86400,"usesNonCookieAccess":false},"772":{"id":772,"name":"Oracle Data Cloud - Moat","purposes":[],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[],"specialFeatures":[],"policyUrl":"https://www.oracle.com/legal/privacy/services-privacy-policy.html","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"773":{"id":773,"name":"360e-com Sp. z o.o.","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[1],"policyUrl":"https://www.clickonometrics.com/optout/","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":false},"774":{"id":774,"name":"Wagawin GmbH","purposes":[1],"legIntPurposes":[2,7],"flexiblePurposes":[2,7],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.wagawin.com/privacy-en/#productprivacy","cookieMaxAgeSeconds":604800,"usesNonCookieAccess":false},"775":{"id":775,"name":"SelectMedia International LTD","purposes":[1,2],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.selectmedia.asia/terms-and-privacy/","cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":false},"776":{"id":776,"name":"Mars Media Group","purposes":[2],"legIntPurposes":[],"flexiblePurposes":[2],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://pay-per-leads.com/terms","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"777":{"id":777,"name":"One Planet Only","purposes":[1],"legIntPurposes":[2,3,4,7],"flexiblePurposes":[2,3,4,7],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://oneplanetonly.com/files/PRIVACY%20POLICY.pdf","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":8035200,"usesNonCookieAccess":false},"778":{"id":778,"name":"Discover-Tech ltd","purposes":[2,3,4,5,6,7,8,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[1],"policyUrl":"https://discover-tech.io/dsp-privacy-policy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"779":{"id":779,"name":"Adtarget Medya A.S.","purposes":[1,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[1],"policyUrl":"https://adtarget.com.tr/adtarget-privacy-policy-2020.pdf","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"780":{"id":780,"name":"Aniview LTD","purposes":[1,2,3,4,7,8],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.aniview.com/privacy-policy/","cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":false},"781":{"id":781,"name":"FeedAd GmbH","purposes":[1,3,4,5,6,8,9],"legIntPurposes":[2,7,10],"flexiblePurposes":[2,7,10],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[1,2],"policyUrl":"https://feedad.com/privacy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":43200,"usesNonCookieAccess":false},"782":{"id":782,"name":"AirGrid LTD","purposes":[1,3,5,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://airgid.io/privacy-policy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"783":{"id":783,"name":"Audienzz AG","purposes":[1],"legIntPurposes":[2,3,4,5,6,7,8,9,10],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[1],"policyUrl":"https://audienzz.ch/wp-content/uploads/2020/03/AGB_audienzz_2020.pdf","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"784":{"id":784,"name":"Nubo LTD","purposes":[1],"legIntPurposes":[2,7],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://api.recod3suite.com/privacypolicy.php","cookieMaxAgeSeconds":86400,"usesNonCookieAccess":false},"785":{"id":785,"name":"agof studies","purposes":[1,7,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[],"specialFeatures":[],"policyUrl":"https://www.agof.de/datenschutz/","cookieMaxAgeSeconds":31622400,"usesNonCookieAccess":false},"755":{"id":755,"name":"Google Advertising Products","purposes":[1,3,4],"legIntPurposes":[2,5,6,7,9,10],"flexiblePurposes":[2,5,6,7,9,10],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[],"policyUrl":"https://policies.google.com/privacy","cookieMaxAgeSeconds":34190000,"usesNonCookieAccess":true},"786":{"id":786,"name":"TargetVideo GmbH","purposes":[],"legIntPurposes":[7,8],"flexiblePurposes":[7,8],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.target-video.com/datenschutz/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"787":{"id":787,"name":"Resolution Media M\u00fcnchen GmbH","purposes":[1,7],"legIntPurposes":[],"flexiblePurposes":[7],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.nonstoppartner.net","cookieMaxAgeSeconds":5184000,"usesNonCookieAccess":false},"788":{"id":788,"name":"Ad Alliance GmbH","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2],"specialFeatures":[1],"policyUrl":"https://www.ad-alliance.de/datenschutz/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"789":{"id":789,"name":"IP Deutschland GmbH","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2],"specialFeatures":[1],"policyUrl":"https://www.ip.de/lp/impressum/datenschutz.cfm","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"790":{"id":790,"name":"AdGear Technologies, Inc.","purposes":[1,3,4],"legIntPurposes":[2,7,9,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://adgear.com/en/privacy","cookieMaxAgeSeconds":34128000,"usesNonCookieAccess":false},"791":{"id":791,"name":"Media Square","purposes":[1,2],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.mediasquare.fr/e-privacy/","cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":false,"deviceStorageDisclosureUrl":"https://mediasquare.fr/deviceStorage.json"},"792":{"id":792,"name":"BritePool Inc","purposes":[1],"legIntPurposes":[3,7,10],"flexiblePurposes":[3,7,10],"specialPurposes":[1],"features":[1,2],"specialFeatures":[],"policyUrl":"https://britepool.com/gdpr-privacy-notice","cookieMaxAgeSeconds":63072000,"usesNonCookieAccess":true},"794":{"id":794,"name":"Kubient Inc. ","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://kubient.com/privacy-policy/","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":false},"795":{"id":795,"name":"Factor Eleven GmbH","purposes":[1,2,3,4,7,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.factor-eleven.de/datenschutz/","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":false},"796":{"id":796,"name":"EASY Marketing GmbH","purposes":[1,7],"legIntPurposes":[],"flexiblePurposes":[7],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://easy-m.de/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"797":{"id":797,"name":"Artefact Deutschland GmbH","purposes":[1,7],"legIntPurposes":[],"flexiblePurposes":[7],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[],"policyUrl":"https://aaa.artefact.com/privacy-policy.do","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"798":{"id":798,"name":"Adverticum cPlc.","purposes":[1,2,3,4,5,6,8,9,10],"legIntPurposes":[7],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://adverticum.net/english/privacy-and-data-processing-information/","cookieMaxAgeSeconds":63072000,"usesNonCookieAccess":true},"799":{"id":799,"name":"Adpone SL","purposes":[1,2,4,5,7,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[2],"specialFeatures":[],"policyUrl":"https://www.adpone.com/privacy-policy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"800":{"id":800,"name":"Reppublika- The Research Toolbox GmbH","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[10],"specialPurposes":[1],"features":[2],"specialFeatures":[1],"policyUrl":"https://www.reppublika.com/privacy-policy","cookieMaxAgeSeconds":8035200,"usesNonCookieAccess":false},"801":{"id":801,"name":"Bannernow, Inc.","purposes":[1,4],"legIntPurposes":[2,7],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://bannernow.com/privacy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"802":{"id":802,"name":"NOW GmbH","purposes":[1,3,4,7],"legIntPurposes":[2,5,6,8,9,10],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://static.now-services.de/privacy/index.html","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"803":{"id":803,"name":"Click Tech Limited","purposes":[1],"legIntPurposes":[2,3],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1],"specialFeatures":[],"policyUrl":"https://en.yeahmobi.com/html/privacypolicy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":25200,"usesNonCookieAccess":false},"804":{"id":804,"name":"LinkedIn Ireland Unlimited Company","purposes":[1,3,4],"legIntPurposes":[2,7,10],"flexiblePurposes":[2,3,4,7,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.linkedin.com/legal/privacy-policy","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":true},"805":{"id":805,"name":"LEESTEN INC","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[1,2],"policyUrl":"https://www.leesten.io/privacy-policy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"807":{"id":807,"name":"Moloco, Inc.","purposes":[1],"legIntPurposes":[2,3,4,7,8,9,10],"flexiblePurposes":[2,3,4,7,8,9,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[2],"policyUrl":"https://www.molocoads.com/privacy-policy","cookieMaxAgeSeconds":0,"usesNonCookieAccess":false},"808":{"id":808,"name":"Pure Local Media GmbH","purposes":[1,2,3,4,7,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://purelocalmedia.de/?page_id=593","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":false},"809":{"id":809,"name":"adnanny.com SLU","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://adnanny.com/en/privacy/","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":false},"810":{"id":810,"name":"lead alliance GmbH","purposes":[1],"legIntPurposes":[7],"flexiblePurposes":[7],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.lead-alliance.net/dataprotection2","cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":true},"811":{"id":811,"name":"iPROM","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://iprom.eu/privacy_policy/GDPR","cookieMaxAgeSeconds":7889231,"usesNonCookieAccess":false},"812":{"id":812,"name":"Nielsen LLC","purposes":[1],"legIntPurposes":[7,9],"flexiblePurposes":[7,9],"specialPurposes":[1],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.nielsen.com/eu/en/legal/privacy-statement/digital-measurement/","cookieMaxAgeSeconds":34190000,"usesNonCookieAccess":false},"793":{"id":793,"name":"Amazon Advertising","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,9,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.amazon.co.uk/gp/help/customer/display.html?nodeId=201909010","cookieMaxAgeSeconds":34190000,"usesNonCookieAccess":true},"813":{"id":813,"name":"Adjust GmbH","purposes":[1,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[7,8,9,10],"specialPurposes":[1],"features":[2,3],"specialFeatures":[2],"policyUrl":"https://www.adjust.com/terms/privacy-policy/","deletedDate":"2020-10-07T00:00:00Z","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"814":{"id":814,"name":"UAB Aktyvus sektorius - Eskimi","purposes":[1,3,4],"legIntPurposes":[2,7,10],"flexiblePurposes":[2,7,10],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[1],"policyUrl":"https://business.eskimi.com/privacypolicy/","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":false},"815":{"id":815,"name":"Blockthrough, Inc.","purposes":[],"legIntPurposes":[7],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://blockthrough.com/privacy-policy/","cookieMaxAgeSeconds":2592000000,"usesNonCookieAccess":true},"816":{"id":816,"name":"NoBid, Inc.","purposes":[1,2,3,5,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.nobid.io/privacy-policy/","cookieMaxAgeSeconds":604800,"usesNonCookieAccess":false},"817":{"id":817,"name":"Miaozhen Information Technology Co. Ltd","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2],"specialFeatures":[],"policyUrl":"https://www.miaozhen.com/en/privacy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"818":{"id":818,"name":"ZEDO Inc.","purposes":[1,2,4,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.zedo.com/about-zedo/privacy-policy-december-2019/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"819":{"id":819,"name":"retailAds GmbH & Co. KG","purposes":[1],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.retailads.net/ueberuns/datenschutz/","cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":true},"820":{"id":820,"name":"Kameleoon SAS","purposes":[1,3,5,6,8,10],"legIntPurposes":[],"flexiblePurposes":[10],"specialPurposes":[],"features":[1,2],"specialFeatures":[],"policyUrl":"https://developers.kameleoon.com/local-storage.html#list-of-collected-data","cookieMaxAgeSeconds":32832000,"usesNonCookieAccess":true},"821":{"id":821,"name":"vitrado GmbH","purposes":[1,7,10],"legIntPurposes":[],"flexiblePurposes":[7,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.vitrado.de/datenschutz","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"822":{"id":822,"name":"Adverty AB (publ)","purposes":[1,2,3,4,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[],"policyUrl":"https://adverty.com/privacy-policy/","cookieMaxAgeSeconds":0,"usesNonCookieAccess":false},"823":{"id":823,"name":"G+J Electronic Media Sales GmbH","purposes":[1,7,8,9],"legIntPurposes":[],"flexiblePurposes":[7,8,9],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.gujmedia.de/service/privacy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"824":{"id":824,"name":"42 Ads GmbH","purposes":[1,2,3,4,5,6,7,8,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[2],"policyUrl":"https://42ads.io/42privacy.pdf","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"825":{"id":825,"name":"EDGE NPD Sp. z o.o.","purposes":[1],"legIntPurposes":[2,3,4,5,6,7,8,9,10],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[],"policyUrl":"https://abtshield.com/privacy-policy/","cookieMaxAgeSeconds":63072000000,"usesNonCookieAccess":false},"826":{"id":826,"name":"DNA-I.COM","purposes":[7,8],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.adn.ai/fr/politique-confidentialite-adserver","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"827":{"id":827,"name":"Adtriba GmbH","purposes":[1,7,8],"legIntPurposes":[],"flexiblePurposes":[7,8],"specialPurposes":[],"features":[2],"specialFeatures":[],"policyUrl":"https://privacy.adtriba.com/","cookieMaxAgeSeconds":63072000,"usesNonCookieAccess":false},"828":{"id":828,"name":"TX Group AG","purposes":[],"legIntPurposes":[3,5,6,8,9,10],"flexiblePurposes":[3,5,6,8,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://tx.group/de/rechtliche-hinweise","cookieMaxAgeSeconds":94608000,"usesNonCookieAccess":true},"829":{"id":829,"name":"Unilever Polska sp. z o.o.","purposes":[1,2,3,4,5,6,7,8,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2],"specialFeatures":[],"policyUrl":"https://www.unilevernotices.com/poland/polish/privacy-notice/notice.html","cookieMaxAgeSeconds":63072000,"usesNonCookieAccess":false},"830":{"id":830,"name":"Acxiom","purposes":[],"legIntPurposes":[2,3,4,5,6,7,8,9,10],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.acxiom.com/about-us/privacy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"831":{"id":831,"name":"United Internet Media GmbH","purposes":[1,2,3,4,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,7,8,9,10],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.united-internet-media.de/de/datenschutzhinweis/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"832":{"id":832,"name":"Objective Partners BV","purposes":[1,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://objectivepartners.com/cookie-policy-and-privacy-statement/","cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":false},"833":{"id":833,"name":"Disqus","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[2],"policyUrl":"https://help.disqus.com/en/articles/1717103-disqus-privacy-policy","cookieMaxAgeSeconds":31536000000,"usesNonCookieAccess":false},"834":{"id":834,"name":"ADRENALEAD","purposes":[1],"legIntPurposes":[2,3,4,5,6,7,8,9,10],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://adrenalead.com/politique-de-protection-des-donnees/","cookieMaxAgeSeconds":1123200,"usesNonCookieAccess":true},"835":{"id":835,"name":"Quality Media Network GmbH","purposes":[1,2,3,4,7,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://qualitymedianetwork.de/datenschutz/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":false},"836":{"id":836,"name":"Bring! Labs AG","purposes":[1],"legIntPurposes":[7,8,10],"flexiblePurposes":[7,8],"specialPurposes":[],"features":[],"specialFeatures":[1],"policyUrl":"https://getbring.com/en/legal/privacy.html","cookieMaxAgeSeconds":0,"usesNonCookieAccess":true},"837":{"id":837,"name":"Trinity Audio","purposes":[1,2,5,6],"legIntPurposes":[7,8],"flexiblePurposes":[5,6],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://trinityaudio.ai/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"838":{"id":838,"name":"Jetpack Digital LLC","purposes":[],"legIntPurposes":[2,7],"flexiblePurposes":[],"specialPurposes":[2],"features":[3],"specialFeatures":[],"policyUrl":"https://jetpack.net/privacy","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":86400,"usesNonCookieAccess":true},"839":{"id":839,"name":"PixFuture Media Inc.","purposes":[1,2,3,7,8],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[],"specialFeatures":[],"policyUrl":"https://www.pixfuture.com/data-processing-agreement/","cookieMaxAgeSeconds":604800,"usesNonCookieAccess":false},"840":{"id":840,"name":"Cazamba Servi\u00e7os de Internet Ltda","purposes":[1,3,4],"legIntPurposes":[2,7,9,10],"flexiblePurposes":[2,7,9,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://cazamba.com/platform-privacy/","cookieMaxAgeSeconds":5184000,"usesNonCookieAccess":false},"841":{"id":841,"name":"Adtube AS","purposes":[],"legIntPurposes":[7,8,10],"flexiblePurposes":[7,8,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://api.adtube.no/resources/docs/privacy_policy_AppConnect.pdf","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"842":{"id":842,"name":"PubWise, LLLP","purposes":[1],"legIntPurposes":[2,7,8,9,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://admin.pubwise.io/publisher/privacypolicy","cookieMaxAgeSeconds":1800,"usesNonCookieAccess":true},"843":{"id":843,"name":"LeadsRx, Inc.","purposes":[1],"legIntPurposes":[7,8],"flexiblePurposes":[7,8],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://leadsrx.com/privacy","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"844":{"id":844,"name":"SPICY MOBILE Sp z o.o. Sp.k.","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://spicymobile.pl/polityka-prywatnosci","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"845":{"id":845,"name":"GeoEdge","purposes":[1],"legIntPurposes":[7,10],"flexiblePurposes":[],"specialPurposes":[1],"features":[],"specialFeatures":[],"policyUrl":"https://www.geoedge.com/privacy-policy/","cookieMaxAgeSeconds":0,"usesNonCookieAccess":false},"846":{"id":846,"name":"M,P,NEWMEDIA, GmbH","purposes":[1,3,4,10],"legIntPurposes":[2,7],"flexiblePurposes":[2,3,4,7,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://www.mp-newmedia.com/datenschutz","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"847":{"id":847,"name":"Crowdy News Ltd","purposes":[2,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.crowdynews.com/privacy-policy/","cookieMaxAgeSeconds":0,"usesNonCookieAccess":false},"848":{"id":848,"name":"BSmartData GmbH","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.bsmartdata.com/en/privacy/","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":false},"849":{"id":849,"name":"Epom Ltd.","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://epom.com/privacy-policy","cookieMaxAgeSeconds":63072000,"usesNonCookieAccess":true},"850":{"id":850,"name":"Publisher First, Inc.","purposes":[1],"legIntPurposes":[10],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://freestar.com/data-policy/","cookieMaxAgeSeconds":604800,"usesNonCookieAccess":false},"851":{"id":851,"name":"Strossle International AB","purposes":[1],"legIntPurposes":[2,7,8,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.strossle.com/privacy-policy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"852":{"id":852,"name":"diva-e products ","purposes":[1,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[3],"specialFeatures":[],"policyUrl":"https://www.intelliad.de/datenschutzerklaerung/","cookieMaxAgeSeconds":8640000,"usesNonCookieAccess":false},"854":{"id":854,"name":"eMarketingSolutions, Online Marketing S.L.","purposes":[2,7,8],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://emarketingsolutions.es/privacy-policy","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":true},"855":{"id":855,"name":"Adnuntius AS","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[],"policyUrl":"https://adnuntius.com/resources/privacy-policy/","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":true,"deviceStorageDisclosureUrl":"https://adnuntius.com/.well-known/deviceStorage.json"},"856":{"id":856,"name":"HUAWEI Ads","purposes":[1,3,4],"legIntPurposes":[2,7,9,10],"flexiblePurposes":[2,7,9,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://consumer.huawei.com/minisite/cloudservice/ads/privacy-statement.htm?country=EU&language=en-eu","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"857":{"id":857,"name":"SOMQUERY SOMTAG - (SevenOne Media)","purposes":[1,3,4],"legIntPurposes":[2,10],"flexiblePurposes":[2,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.sevenonemedia.de/datenerhebung-anderer-dienstleister","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":true,"deviceStorageDisclosureUrl":"https://ad.71i.de/consent/deviceStorage.json"},"858":{"id":858,"name":"Mediavine, Inc.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.mediavine.com/privacy-policy","cookieMaxAgeSeconds":31560000,"usesNonCookieAccess":true},"859":{"id":859,"name":"AdQuiver Media SL","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://adquiver.com/privacidad/","cookieMaxAgeSeconds":63072000,"usesNonCookieAccess":true},"860":{"id":860,"name":"Publica LLC","purposes":[1,2,3,4,6,7,8,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://getpublica.com/privacy/","cookieMaxAgeSeconds":5184000,"usesNonCookieAccess":true},"861":{"id":861,"name":"Triple13 Ltd","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[],"features":[1,3],"specialFeatures":[],"policyUrl":"https://www.triple13.io/privacy-policy","cookieMaxAgeSeconds":0,"usesNonCookieAccess":false},"862":{"id":862,"name":"Truvid Inc.","purposes":[1,2,3,4],"legIntPurposes":[5,7,10],"flexiblePurposes":[2],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.truvid.com/terms/privacy_policy","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":false},"863":{"id":863,"name":"respondi AG","purposes":[1,7,8,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2,3],"specialFeatures":[],"policyUrl":"https://www.respondi.com/EN/privacy","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"865":{"id":865,"name":"HEIMSPIEL Medien GmbH & Co KG","purposes":[1,2,7,8],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.heimspiel.de/privacy-policy-iab-vendor/","cookieMaxAgeSeconds":172800,"usesNonCookieAccess":false},"866":{"id":866,"name":"YieldLift LLC","purposes":[1,2,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://yieldlift.com/privacy-policy.html","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"867":{"id":867,"name":"Mintegral international limited","purposes":[1,2,3,4],"legIntPurposes":[7,10],"flexiblePurposes":[2,3,4,7,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[2],"policyUrl":"https://www.mintegral.com/en/privacy/","cookieMaxAgeSeconds":86400,"usesNonCookieAccess":false},"868":{"id":868,"name":"Converto AG","purposes":[1,2,3,4,5,6,7,8,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[],"policyUrl":"https://www.converto.com/datenschutz-privacy-policy","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"869":{"id":869,"name":"Brave People Ltd.","purposes":[2],"legIntPurposes":[],"flexiblePurposes":[2],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://thebrave.io/private-policy","cookieMaxAgeSeconds":30,"usesNonCookieAccess":false},"870":{"id":870,"name":"ad pepper media GmbH - Webgains","purposes":[],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.webgains.com/public/de/datenschutzerklaerung/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"871":{"id":871,"name":"Ingenious Technologies AG","purposes":[1,7],"legIntPurposes":[],"flexiblePurposes":[7],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[],"policyUrl":"https://www.ingenioustechnologies.com/privacy-policy","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"872":{"id":872,"name":"IVO Media Ltd","purposes":[],"legIntPurposes":[2,7],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.ivo.io/privacy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"873":{"id":873,"name":"Impact+","purposes":[],"legIntPurposes":[7],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://impact-plus.fr/en/privacy-policy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"874":{"id":874,"name":"PRECISO SRL","purposes":[1,2,3,4,5,6,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://preciso.net/privacy/","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":false},"875":{"id":875,"name":"cynapsis interactive GmbH","purposes":[2,4,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,4,6,7,8,9,10],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://cynapsis.de/impressum/index.html#datenschutz_d","cookieMaxAgeSeconds":0,"usesNonCookieAccess":false},"876":{"id":876,"name":"3Q nexx GmbH","purposes":[1,6],"legIntPurposes":[7,8],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://3q.video/de/datenschutz_und_richtlinien","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":true},"877":{"id":877,"name":"Experian Limited","purposes":[3,5,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.experian.co.uk/privacy/consumer-information-portal/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"878":{"id":878,"name":"Nat\u00edv Hirdet\u00e9s Korl\u00e1tolt Felel\u0151ss\u00e9g\u0171 T\u00e1rsas\u00e1g","purposes":[1],"legIntPurposes":[2,7,8],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://related.hu/adatkezeles/","cookieMaxAgeSeconds":5184000,"usesNonCookieAccess":false},"879":{"id":879,"name":"Vidstart LTD","purposes":[],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.vidstart.com/wp-content/uploads/2018/09/PrivacyPolicyPDF-Vidstart.pdf","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"880":{"id":880,"name":"Quantyoo GmbH & Co. KG","purposes":[2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2],"specialFeatures":[1],"policyUrl":"https://quantyoo.de/datenschutz","cookieMaxAgeSeconds":630720000,"usesNonCookieAccess":false},"881":{"id":881,"name":"Hillside (Sports) GP Limited","purposes":[],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.bet365affiliates.com/UI/Pages/Affiliates/Affiliates.aspx?ContentPath=%2fAffiliates%2fv2_Root%2finformationPages%2fPrivacyPolicy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"882":{"id":882,"name":"NumberEight Technologies Ltd","purposes":[1,3],"legIntPurposes":[5,9],"flexiblePurposes":[3,5],"specialPurposes":[1],"features":[3],"specialFeatures":[1],"policyUrl":"https://portal.eu.numbereight.me/policies-license#software-privacy-notice","cookieMaxAgeSeconds":7890000,"usesNonCookieAccess":false},"883":{"id":883,"name":"Online Media Solutions LTD (BDA: Brightcom)","purposes":[],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.brightcom.com/privacy-policy/","cookieMaxAgeSeconds":0,"usesNonCookieAccess":false},"884":{"id":884,"name":"Listonic Sp. z o.o.","purposes":[1,5,6,7,8,9,10],"legIntPurposes":[2,3,4],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://listonic.com/privacy/","cookieMaxAgeSeconds":34560000,"usesNonCookieAccess":true},"885":{"id":885,"name":"Dianomi ltd","purposes":[1,3,4,5,6,8,9],"legIntPurposes":[2,7,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.dianomi.com/legal/privacy.epl","cookieMaxAgeSeconds":94608000,"usesNonCookieAccess":false},"886":{"id":886,"name":"Remixd Media, Inc.","purposes":[1,2,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.remixd.com/privacy_policy.html","cookieMaxAgeSeconds":0,"usesNonCookieAccess":false},"887":{"id":887,"name":"Prebid.org","purposes":[1],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[1],"policyUrl":"https://docs.prebid.org/privacy.html","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"888":{"id":888,"name":"GADSME","purposes":[1,2,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[1],"policyUrl":"https://www.gadsme.com/privacy-policy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"889":{"id":889,"name":"Admo.tv (Clickon)","purposes":[1,8,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.admo.tv/en/privacy-policy","cookieMaxAgeSeconds":32000000,"usesNonCookieAccess":false},"890":{"id":890,"name":"Channel Pilot Solutions GmbH","purposes":[1,8],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://channelpilot.co.uk/privacy-policy","cookieMaxAgeSeconds":90,"usesNonCookieAccess":false},"891":{"id":891,"name":"ANINPRO-CREATIVE, S.L.","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://bealion.com/politica-de-cookies","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":false},"892":{"id":892,"name":"GeoProve","purposes":[],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[],"specialFeatures":[1],"policyUrl":"https://www.geoprove.io/privacy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"893":{"id":893,"name":"TIMEONE PERFORMANCE","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[2],"policyUrl":"https://privacy.timeonegroup.com","cookieMaxAgeSeconds":34164000,"usesNonCookieAccess":true},"894":{"id":894,"name":"Threedium","purposes":[2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://threedium.co.uk/privacy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"895":{"id":895,"name":"Maiden Marketing Pte Ltd","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[3,4,7,9,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://www.pokkt.com/privacy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":true},"896":{"id":896,"name":"IPSOS MORI UK LTD","purposes":[1],"legIntPurposes":[8,9],"flexiblePurposes":[8,9],"specialPurposes":[1],"features":[3],"specialFeatures":[2],"policyUrl":"https://iris.ipsos.com/site-centric-privacy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"897":{"id":897,"name":"Fido S.r.l","purposes":[1,8,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.fido.id/privacy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"898":{"id":898,"name":"Mobkoi Ltd","purposes":[],"legIntPurposes":[2,10],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://s3-eu-west-1.amazonaws.com/mobkoi-website-2018/MOBKOI_LTD_T%26Cs.pdf","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"899":{"id":899,"name":"digidip GmbH","purposes":[1,5,8],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[],"specialFeatures":[],"policyUrl":"https://digidip.net/privacy-policy","cookieMaxAgeSeconds":31556952,"usesNonCookieAccess":false},"900":{"id":900,"name":"Advisible AB","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.advisible.com/privacy ","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"901":{"id":901,"name":"STUDIO GONG GmbH & Co. Studiobetriebs KG","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.studio-gong.de/datenschutz.html ","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"902":{"id":902,"name":"Open Mobi","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[1,2],"policyUrl":"https://policy.openmobi.pl/ ","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"903":{"id":903,"name":"Placense Ltd","purposes":[9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[1],"policyUrl":"https://www.placense.com/privacy-notice ","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"905":{"id":905,"name":"CAKE Software, Inc.","purposes":[1,2],"legIntPurposes":[3,4,5,6,7,8,9,10],"flexiblePurposes":[2],"specialPurposes":[1,2],"features":[1,3],"specialFeatures":[1],"policyUrl":"https://getcake.com/privacy-policy/ ","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":157680000,"usesNonCookieAccess":false},"906":{"id":906,"name":"Addrelevance","purposes":[3,5],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://addrelevance.be/disclaimer","cookieMaxAgeSeconds":31556926,"usesNonCookieAccess":true},"907":{"id":907,"name":"AWIN AG","purposes":[1],"legIntPurposes":[7],"flexiblePurposes":[7],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.awin.com/gb/privacy","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"908":{"id":908,"name":"Zoomd Ltd.","purposes":[1,2,3,4,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[1,2],"policyUrl":"https://zoomd.com/privacy-policy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":false},"909":{"id":909,"name":"MobileFuse LLC","purposes":[9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1],"specialFeatures":[],"policyUrl":"https://mobilefuse.com/privacy-policy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"910":{"id":910,"name":"Insticator, Inc.","purposes":[1,2,3,4,5,6,7,8,10],"legIntPurposes":[],"flexiblePurposes":[2,5,6,7,8,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.insticator.com/privacy/","cookieMaxAgeSeconds":62208000,"usesNonCookieAccess":true},"911":{"id":911,"name":"Redbranch, Inc dba Fraudlogix","purposes":[],"legIntPurposes":[7],"flexiblePurposes":[],"specialPurposes":[1],"features":[],"specialFeatures":[2],"policyUrl":"https://www.fraudlogix.com/privacy-policy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"912":{"id":912,"name":"Squared SAS","purposes":[2],"legIntPurposes":[7],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://qwarry.com/imprint/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"913":{"id":913,"name":"Clever Advertising, Lda.","purposes":[1],"legIntPurposes":[2],"flexiblePurposes":[2],"specialPurposes":[1,2],"features":[3],"specialFeatures":[2],"policyUrl":"https://cleveradvertising.com/privacy","cookieMaxAgeSeconds":15552000,"usesNonCookieAccess":false},"914":{"id":914,"name":"Paypersale.ru","purposes":[1],"legIntPurposes":[2,3,4,5,6,7,8],"flexiblePurposes":[2,3,4,5,6,7,8],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://paypersale.ru/index/privacy#about","cookieMaxAgeSeconds":283824000,"usesNonCookieAccess":false},"915":{"id":915,"name":"Opti Digital SAS","purposes":[1,3,4],"legIntPurposes":[2,7,10],"flexiblePurposes":[2,7,10],"specialPurposes":[2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.optidigital.com/privacy-policy/","cookieMaxAgeSeconds":63072000,"usesNonCookieAccess":false},"916":{"id":916,"name":"Sirdata Cookieless","purposes":[],"legIntPurposes":[2,3,4,5,6,7,10],"flexiblePurposes":[2,3,4,5,6,7,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.sirdata.com/en/Privacy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"917":{"id":917,"name":"Spotible","purposes":[1,3,4,9],"legIntPurposes":[2,7],"flexiblePurposes":[2,3,4,7,9],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.spotible.com/privacy.php","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"918":{"id":918,"name":"SPORTORITY UK LTD","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[2,7],"specialPurposes":[1],"features":[],"specialFeatures":[],"policyUrl":"https://www.minutemedia.com/privacy-policy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"919":{"id":919,"name":"Livewrapped AB","purposes":[1],"legIntPurposes":[2,7,10],"flexiblePurposes":[2,7,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://livewrapped.com/privacy-policy","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":false},"920":{"id":920,"name":"Bertelsmann Data Service GmbH","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.bertelsmann.de/meta/datenschutz/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"921":{"id":921,"name":"Imonomy","purposes":[2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://imonomy.com/privacy-policy","cookieMaxAgeSeconds":0,"usesNonCookieAccess":false},"922":{"id":922,"name":"Amnet GmbH","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[3],"specialFeatures":[2],"policyUrl":"https://mediaintelligence.de/privacy-policy.do","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"923":{"id":923,"name":"Fiducia DLT Limited","purposes":[],"legIntPurposes":[7],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.fiducia.eco/privacy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"924":{"id":924,"name":"Viewdeos 2015 LTD","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.viewdeos.com/privacy-policy","cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":false},"925":{"id":925,"name":"Alphalyr SAS","purposes":[],"legIntPurposes":[7],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://alphalyr.fr/en/privacy-policy/","cookieMaxAgeSeconds":30,"usesNonCookieAccess":false},"926":{"id":926,"name":"ZAM Network LLC dba Fanbyte","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[],"policyUrl":"https://corp.fanbyte.com/legal/privacy","cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":true},"927":{"id":927,"name":"Silverbullet Data Services Group","purposes":[],"legIntPurposes":[7,8],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://wearesilverbullet.com/privacy-policy/","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"928":{"id":928,"name":"Parrable, Inc.","purposes":[1,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[],"policyUrl":"https://www.parrable.com/privacy-policy/","cookieMaxAgeSeconds":31449600,"usesNonCookieAccess":false},"929":{"id":929,"name":"eBay Inc","purposes":[1,2,3,4,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.ebayinc.com/company/privacy-center/gdpr/","cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":false},"930":{"id":930,"name":"IQM CORPORATION","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,3],"specialFeatures":[1],"policyUrl":"https://iqm.com/privacy-policy","cookieMaxAgeSeconds":1296000,"usesNonCookieAccess":false},"931":{"id":931,"name":"Traffective GmbH","purposes":[],"legIntPurposes":[2,7,8],"flexiblePurposes":[2,7,8],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.iubenda.com/privacy-policy/30563919","cookieMaxAgeSeconds":365,"usesNonCookieAccess":false},"932":{"id":932,"name":"Unmatched Solutions Limited","purposes":[1,3,4],"legIntPurposes":[2,7,9],"flexiblePurposes":[3,4],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://app.torchad.com/advertiser/privacy","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":2592000,"usesNonCookieAccess":false},"933":{"id":933,"name":"Hindsight Technology Solutions, Inc.","purposes":[7,8,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://hindsightsolutions.net/terms-of-service/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"237":{"id":237,"name":"VGI CTV, Inc","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://verve.com/privacy-policy/index.html","cookieMaxAgeSeconds":180,"usesNonCookieAccess":true},"934":{"id":934,"name":"Brid Video DOO","purposes":[1,2,7,8,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[1,2],"policyUrl":"https://cms.brid.tv/pages/view/privacy","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"935":{"id":935,"name":"INIS sp. zo.o.","purposes":[1,3,4,5,6,7,8,10],"legIntPurposes":[],"flexiblePurposes":[7,8],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.inis.pl/polityka-prywatnosci","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"936":{"id":936,"name":"Digital Squad","purposes":[1,2,3,4],"legIntPurposes":[],"flexiblePurposes":[2,3,4],"specialPurposes":[],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.squadata.net/en/private-policy/","cookieMaxAgeSeconds":34164000,"usesNonCookieAccess":true},"937":{"id":937,"name":"SoD ScreenOnDemand GmbH","purposes":[1,2,3,4,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[7,8],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://screenondemand.de/datenschutzerklaerung/","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"938":{"id":938,"name":"dataXtrade GmbH","purposes":[1,2,3,4,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,7,8],"specialPurposes":[1,2],"features":[1,3],"specialFeatures":[1],"policyUrl":"https://dataxtrade.com/de/privacy.html","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"940":{"id":940,"name":"Terminus Software Inc.","purposes":[1],"legIntPurposes":[2,3,4,7,8,9,10],"flexiblePurposes":[2,3,4,7,8,9,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://terminus.com/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"941":{"id":941,"name":"ADSOCY","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[1,2],"policyUrl":"https://adsocy.com/politica-de-privacidad-y-aviso-legal/","cookieMaxAgeSeconds":1592000,"usesNonCookieAccess":true},"9":{"id":9,"name":"AdMaxim Inc.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"http://www.admaxim.com/admaxim-privacy-policy/","cookieMaxAgeSeconds":5184000,"usesNonCookieAccess":false},"942":{"id":942,"name":"JS Web Production","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.jswebproduction.com/privacy.php","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":86400,"usesNonCookieAccess":true},"943":{"id":943,"name":"Marfeel Solutions, SL (Compass)","purposes":[1,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[2],"specialFeatures":[],"policyUrl":"https://www.marfeel.com/docs/compass/privacy/policy/","cookieMaxAgeSeconds":15552000,"usesNonCookieAccess":true},"944":{"id":944,"name":"AudienceRun corp","purposes":[1,3,4,5,6],"legIntPurposes":[2,7,8,9,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.audiencerun.com/privacy-policy","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":true},"945":{"id":945,"name":"jsdelivr.com","purposes":[],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.jsdelivr.com/terms/privacy-policy-jsdelivr-net","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"946":{"id":946,"name":"belboon GmbH","purposes":[1,7],"legIntPurposes":[],"flexiblePurposes":[7],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[],"policyUrl":"https://belboon.com/en/privacy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"947":{"id":947,"name":"Powerspace","purposes":[1],"legIntPurposes":[2,3,4,7,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://powerspace.com/fr/privacy/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"948":{"id":948,"name":"1Agency","purposes":[1,3,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.1agency.de/datenschutz","cookieMaxAgeSeconds":0,"usesNonCookieAccess":false},"949":{"id":949,"name":"SMARTLINE SYSTEMS","purposes":[],"legIntPurposes":[7,8,9,10],"flexiblePurposes":[8,9,10],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.getquanty.com/mentions-legales/","cookieMaxAgeSeconds":31536000,"usesNonCookieAccess":false},"950":{"id":950,"name":"Stream Eye OOD","purposes":[],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://app.streameye.com/policy/net","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"951":{"id":951,"name":"Spoods GmbH","purposes":[],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[],"specialFeatures":[],"policyUrl":"https://www.spoods.info/#gdpr","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"952":{"id":952,"name":"ProSiebenSat.1 Digital Data GmbH","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://7pass.de/datenschutzbestimmungen.html","cookieMaxAgeSeconds":7776000,"usesNonCookieAccess":true},"953":{"id":953,"name":"adbalancer Werbeagentur GmbH","purposes":[],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.adbalancer.com/datenschutz","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"954":{"id":954,"name":"Caroda s.r.o.","purposes":[],"legIntPurposes":[2],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.caroda.io/privacy-statement","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":true},"955":{"id":955,"name":"Konodrac S.L.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://konodrac.com/politica-privacidad/","cookieMaxAgeSeconds":31356000,"usesNonCookieAccess":false},"956":{"id":956,"name":"AirNow Video Ltd","purposes":[],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[],"specialFeatures":[],"policyUrl":"https://www.avantisvideo.com/privacypolicy/","cookieMaxAgeSeconds":-100,"usesNonCookieAccess":false},"957":{"id":957,"name":"Evolution Technologies Inc.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://e-volution.ai/privacy-policy-3/","cookieMaxAgeSeconds":86400,"usesNonCookieAccess":false}}} \ No newline at end of file +{"gvlSpecificationVersion":2,"vendorListVersion":94,"tcfPolicyVersion":2,"lastUpdated":"2021-06-10T16:05:36Z","purposes":{"1":{"id":1,"name":"Store and/or access information on a device","description":"Cookies, device identifiers, or other information can be stored or accessed on your device for the purposes presented to you.","descriptionLegal":"Vendors can:\n* Store and access information on the device such as cookies and device identifiers presented to a user."},"2":{"id":2,"name":"Select basic ads","description":"Ads can be shown to you based on the content you\u2019re viewing, the app you\u2019re using, your approximate location, or your device type.","descriptionLegal":"To do basic ad selection vendors can:\n* Use real-time information about the context in which the ad will be shown, to show the ad, including information about the content and the device, such as: device type and capabilities, user agent, URL, IP address\n* Use a user\u2019s non-precise geolocation data\n* Control the frequency of ads shown to a user.\n* Sequence the order in which ads are shown to a user.\n* Prevent an ad from serving in an unsuitable editorial (brand-unsafe) context\nVendors cannot:\n* Create a personalised ads profile using this information for the selection of future ads without a separate legal basis to create a personalised ads profile.\n* N.B. Non-precise means only an approximate location involving at least a radius of 500 meters is permitted."},"3":{"id":3,"name":"Create a personalised ads profile","description":"A profile can be built about you and your interests to show you personalised ads that are relevant to you.","descriptionLegal":"To create a personalised ads profile vendors can:\n* Collect information about a user, including a user's activity, interests, demographic information, or location, to create or edit a user profile for use in personalised advertising.\n* Combine this information with other information previously collected, including from across websites and apps, to create or edit a user profile for use in personalised advertising."},"4":{"id":4,"name":"Select personalised ads","description":"Personalised ads can be shown to you based on a profile about you.","descriptionLegal":"To select personalised ads vendors can:\n* Select personalised ads based on a user profile or other historical user data, including a user\u2019s prior activity, interests, visits to sites or apps, location, or demographic information."},"5":{"id":5,"name":"Create a personalised content profile","description":"A profile can be built about you and your interests to show you personalised content that is relevant to you.","descriptionLegal":"To create a personalised content profile vendors can:\n* Collect information about a user, including a user's activity, interests, visits to sites or apps, demographic information, or location, to create or edit a user profile for personalising content.\n* Combine this information with other information previously collected, including from across websites and apps, to create or edit a user profile for use in personalising content."},"6":{"id":6,"name":"Select personalised content","description":"Personalised content can be shown to you based on a profile about you.","descriptionLegal":"To select personalised content vendors can:\n* Select personalised content based on a user profile or other historical user data, including a user\u2019s prior activity, interests, visits to sites or apps, location, or demographic information."},"7":{"id":7,"name":"Measure ad performance","description":"The performance and effectiveness of ads that you see or interact with can be measured.","descriptionLegal":"To measure ad performance vendors can:\n* Measure whether and how ads were delivered to and interacted with by a user\n* Provide reporting about ads including their effectiveness and performance\n* Provide reporting about users who interacted with ads using data observed during the course of the user's interaction with that ad\n* Provide reporting to publishers about the ads displayed on their property\n* Measure whether an ad is serving in a suitable editorial environment (brand-safe) context\n* Determine the percentage of the ad that had the opportunity to be seen and the duration of that opportunity\n* Combine this information with other information previously collected, including from across websites and apps\nVendors cannot:\n*Apply panel- or similarly-derived audience insights data to ad measurement data without a Legal Basis to apply market research to generate audience insights (Purpose 9)"},"8":{"id":8,"name":"Measure content performance","description":"The performance and effectiveness of content that you see or interact with can be measured.","descriptionLegal":"To measure content performance vendors can:\n* Measure and report on how content was delivered to and interacted with by users.\n* Provide reporting, using directly measurable or known information, about users who interacted with the content\n* Combine this information with other information previously collected, including from across websites and apps.\nVendors cannot:\n* Measure whether and how ads (including native ads) were delivered to and interacted with by a user.\n* Apply panel- or similarly derived audience insights data to ad measurement data without a Legal Basis to apply market research to generate audience insights (Purpose 9)"},"9":{"id":9,"name":"Apply market research to generate audience insights","description":"Market research can be used to learn more about the audiences who visit sites/apps and view ads.","descriptionLegal":"To apply market research to generate audience insights vendors can:\n* Provide aggregate reporting to advertisers or their representatives about the audiences reached by their ads, through panel-based and similarly derived insights.\n* Provide aggregate reporting to publishers about the audiences that were served or interacted with content and/or ads on their property by applying panel-based and similarly derived insights.\n* Associate offline data with an online user for the purposes of market research to generate audience insights if vendors have declared to match and combine offline data sources (Feature 1)\n* Combine this information with other information previously collected including from across websites and apps. \nVendors cannot:\n* Measure the performance and effectiveness of ads that a specific user was served or interacted with, without a Legal Basis to measure ad performance.\n* Measure which content a specific user was served and how they interacted with it, without a Legal Basis to measure content performance."},"10":{"id":10,"name":"Develop and improve products","description":"Your data can be used to improve existing systems and software, and to develop new products","descriptionLegal":"To develop new products and improve products vendors can:\n* Use information to improve their existing products with new features and to develop new products\n* Create new models and algorithms through machine learning\nVendors cannot:\n* Conduct any other data processing operation allowed under a different purpose under this purpose"}},"specialPurposes":{"1":{"id":1,"name":"Ensure security, prevent fraud, and debug","description":"Your data can be used to monitor for and prevent fraudulent activity, and ensure systems and processes work properly and securely.","descriptionLegal":"To ensure security, prevent fraud and debug vendors can:\n* Ensure data are securely transmitted\n* Detect and prevent malicious, fraudulent, invalid, or illegal activity.\n* Ensure correct and efficient operation of systems and processes, including to monitor and enhance the performance of systems and processes engaged in permitted purposes\nVendors cannot:\n* Conduct any other data processing operation allowed under a different purpose under this purpose.\nNote: Data collected and used to ensure security, prevent fraud, and debug may include automatically-sent device characteristics for identification, precise geolocation data, and data obtained by actively scanning device characteristics for identification without separate disclosure and/or opt-in."},"2":{"id":2,"name":"Technically deliver ads or content","description":"Your device can receive and send information that allows you to see and interact with ads and content.","descriptionLegal":"To deliver information and respond to technical requests vendors can:\n* Use a user\u2019s IP address to deliver an ad over the internet\n* Respond to a user\u2019s interaction with an ad by sending the user to a landing page\n* Use a user\u2019s IP address to deliver content over the internet\n* Respond to a user\u2019s interaction with content by sending the user to a landing page\n* Use information about the device type and capabilities for delivering ads or content, for example, to deliver the right size ad creative or video file in a format supported by the device\nVendors cannot:\n* Conduct any other data processing operation allowed under a different purpose under this purpose"}},"features":{"1":{"id":1,"name":"Match and combine offline data sources","description":"Data from offline data sources can be combined with your online activity in support of one or more purposes","descriptionLegal":"Vendors can:\n* Combine data obtained offline with data collected online in support of one or more Purposes or Special Purposes."},"2":{"id":2,"name":"Link different devices","description":"Different devices can be determined as belonging to you or your household in support of one or more of purposes.","descriptionLegal":"Vendors can:\n* Deterministically determine that two or more devices belong to the same user or household\n* Probabilistically determine that two or more devices belong to the same user or household\n* Actively scan device characteristics for identification for probabilistic identification if users have allowed vendors to actively scan device characteristics for identification (Special Feature 2)"},"3":{"id":3,"name":"Receive and use automatically-sent device characteristics for identification","description":"Your device might be distinguished from other devices based on information it automatically sends, such as IP address or browser type.","descriptionLegal":"Vendors can:\n* Create an identifier using data collected automatically from a device for specific characteristics, e.g. IP address, user-agent string.\n* Use such an identifier to attempt to re-identify a device.\nVendors cannot:\n* Create an identifier using data collected via actively scanning a device for specific characteristics, e.g. installed font or screen resolution without users\u2019 separate opt-in to actively scanning device characteristics for identification.\n* Use such an identifier to re-identify a device."}},"specialFeatures":{"1":{"id":1,"name":"Use precise geolocation data","description":"Your precise geolocation data can be used in support of one or more purposes. This means your location can be accurate to within several meters.","descriptionLegal":"Vendors can:\n* Collect and process precise geolocation data in support of one or more purposes.\nN.B. Precise geolocation means that there are no restrictions on the precision of a user\u2019s location; this can be accurate to within several meters."},"2":{"id":2,"name":"Actively scan device characteristics for identification","description":"Your device can be identified based on a scan of your device's unique combination of characteristics.","descriptionLegal":"Vendors can:\n* Create an identifier using data collected via actively scanning a device for specific characteristics, e.g. installed fonts or screen resolution.\n* Use such an identifier to re-identify a device."}},"stacks":{"1":{"id":1,"purposes":[],"specialFeatures":[1,2],"name":"Precise geolocation data, and identification through device scanning","description":"Precise geolocation and information about device characteristics can be used."},"2":{"id":2,"purposes":[2,7],"specialFeatures":[],"name":"Basic ads, and ad measurement","description":"Basic ads can be served. Ad performance can be measured."},"3":{"id":3,"purposes":[2,3,4],"specialFeatures":[],"name":"Personalised ads","description":"Ads can be personalised based on a profile. More data can be added to better personalise ads."},"4":{"id":4,"purposes":[2,7,9],"specialFeatures":[],"name":"Basic ads, ad measurement, and audience insights","description":"Basic ads can be served. Ad performance can be measured. Insights about the audiences who saw the ads and content can be derived."},"5":{"id":5,"purposes":[2,3,7],"specialFeatures":[],"name":"Basic ads, personalised ads profile, and ad measurement","description":"Basic ads can be served. More data can be added to better personalise ads. Ad performance can be measured."},"6":{"id":6,"purposes":[2,4,7],"specialFeatures":[],"name":"Personalised ads display and ad measurement","description":"Ads can be personalised based on a profile. Ad performance can be measured."},"7":{"id":7,"purposes":[2,4,7,9],"specialFeatures":[],"name":"Personalised ads display, ad measurement, and audience insights","description":"Ads can be personalised based on a profile. Ad performance can be measured. Insights about the audiences who saw the ads and content can be derived."},"8":{"id":8,"purposes":[2,3,4,7],"specialFeatures":[],"name":"Personalised ads, and ad measurement","description":"Ads can be personalised based on a profile. More data can be added to better personalise ads. Ad performance can be measured."},"9":{"id":9,"purposes":[2,3,4,7,9],"specialFeatures":[],"name":"Personalised ads, ad measurement, and audience insights","description":"Ads can be personalised based on a profile. More data can be added to better personalise ads. Ad performance can be measured. Insights about the audiences who saw the ads and content can be derived."},"10":{"id":10,"purposes":[3,4],"specialFeatures":[],"name":"Personalised ads profile and display","description":"Ads can be personalised based on a profile. More data can be added to better personalise ads."},"11":{"id":11,"purposes":[5,6],"specialFeatures":[],"name":"Personalised content","description":"Content can be personalised based on a profile. More data can be added to better personalise content."},"12":{"id":12,"purposes":[6,8],"specialFeatures":[],"name":"Personalised content display, and content measurement","description":"Content can be personalised based on a profile. Content performance can be measured."},"13":{"id":13,"purposes":[6,8,9],"specialFeatures":[],"name":"Personalised content display, content measurement and audience insights","description":"Content can be personalised based on a profile. Content performance can be measured. Insights about the audiences who saw the ads and content can be derived."},"14":{"id":14,"purposes":[5,6,8],"specialFeatures":[],"name":"Personalised content, and content measurement","description":"Content can be personalised based on a profile. More data can be added to better personalise content. Content performance can be measured."},"15":{"id":15,"purposes":[5,6,8,9],"specialFeatures":[],"name":"Personalised content, content measurement and audience insights","description":"Content can be personalised based on a profile. More data can be added to better personalise content. Content performance can be measured. Insights about the audiences who saw the ads and content can be derived."},"16":{"id":16,"purposes":[5,6,8,9,10],"specialFeatures":[],"name":"Personalised content, content measurement, audience insights, and product development","description":"Content can be personalised based on a profile. More data can be added to better personalise content. Content performance can be measured. Insights about the audiences who saw the ads and content can be derived. Data can be used to build or improve user experience, systems, and software"},"17":{"id":17,"purposes":[7,8,9],"specialFeatures":[],"name":"Ad and content measurement, and audience insights","description":"Ad and content performance can be measured. Insights about the audiences who saw the ads and content can be derived."},"18":{"id":18,"purposes":[7,8],"specialFeatures":[],"name":"Ad and content measurement","description":"Ad and content performance can be measured."},"19":{"id":19,"purposes":[7,9],"specialFeatures":[],"name":"Ad measurement, and audience insights","description":"Ad can be measured. Insights about the audiences who saw the ads and content can be derived."},"20":{"id":20,"purposes":[7,8,9,10],"specialFeatures":[],"name":"Ad and content measurement, audience insights, and product development","description":"Ad and content performance can be measured. Insights about the audiences who saw the ads and content can be derived. Data can be used to build or improve user experience, systems, and software. Insights about the audiences who saw the ads and content can be derived."},"21":{"id":21,"purposes":[8,9,10],"specialFeatures":[],"name":"Content measurement, audience insights, and product development","description":"Content performance can be measured. Insights about the audiences who saw the ads and content can be derived. Data can be used to build or improve user experience, systems, and software."},"22":{"id":22,"purposes":[8,10],"specialFeatures":[],"name":"Content measurement, and product development","description":"Content performance can be measured. Data can be used to build or improve user experience, systems, and software."},"23":{"id":23,"purposes":[2,4,6,7,8],"specialFeatures":[],"name":"Personalised ads and content display, ad and content measurement","description":"Ads and content can be personalised based on a profile. Ad and content performance can be measured."},"24":{"id":24,"purposes":[2,4,6,7,8,9],"specialFeatures":[],"name":"Personalised ads and content display, ad and content measurement, and audience insights","description":"Ads and content can be personalised based on a profile. Ad and content performance can be measured. Insights about the audiences who saw the ads and content can be derived. Data can be used to build or improve user experience, systems, and software."},"25":{"id":25,"purposes":[2,3,4,5,6,7,8],"specialFeatures":[],"name":"Personalised ads and content, ad and content measurement","description":"Ads and content can be personalised based on a profile. More data can be added to better personalise ads and content. Ad and content performance can be measured."},"26":{"id":26,"purposes":[2,3,4,5,6,7,8,9],"specialFeatures":[],"name":"Personalised ads and content, ad and content measurement, and audience insights","description":"Ads and content can be personalised based on a profile. More data can be added to better personalise ads and content. Ad and content performance can be measured. Insights about the audiences who saw the ads and content can be derived."},"27":{"id":27,"purposes":[3,5],"specialFeatures":[],"name":"Personalised ads, and content profile","description":"More data can be added to personalise ads and content."},"28":{"id":28,"purposes":[2,4,6],"specialFeatures":[],"name":"Personalised ads and content display","description":"Ads and content can be personalised based on a profile."},"29":{"id":29,"purposes":[2,7,8,9],"specialFeatures":[],"name":"Basic ads, ad and content measurement, and audience insights","description":"Basic ads can be served. Ad and content performance can be measured. Insights about the audiences who saw the ads and content can be derived."},"30":{"id":30,"purposes":[2,4,5,6,7,8,9],"specialFeatures":[],"name":"Personalised ads display, personalised content, ad and content measurement, and audience insights","description":"Ads and content can be personalised based on a profile. More data can be added to better personalise content. Ad and content performance can be measured. Insights about the audiences who saw the ads and content can be derived."},"31":{"id":31,"purposes":[2,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Personalised ads display, personalised content, ad and content measurement, audience insights, and product development","description":"Ads and content can be personalised based on a profile. More data can be added to better personalise content. Ad and content performance can be measured. Insights about the audiences who saw the ads and content can be derived. Data can be used to build or improve user experience, systems, and software."},"32":{"id":32,"purposes":[2,5,6,7,8,9],"specialFeatures":[],"name":"Basic ads, personalised content, ad and content measurement, and audience insights","description":"Basic ads can be served. Content can be personalised based on a profile. More data can be added to better personalise content. Ad and content performance can be measured. Insights about the audiences who saw the ads and content can be derived."},"33":{"id":33,"purposes":[2,5,6,7,8,9,10],"specialFeatures":[],"name":"Basic ads, personalised content, ad and content measurement, audience insights, and product development","description":"Basic ads can be served. Content can be personalised based on a profile. More data can be added to better personalise content. Ad and content performance can be measured. Insights about the audiences who saw the ads and content can be derived. Data can be used to build or improve user experience, systems, and software."},"34":{"id":34,"purposes":[2,5,6,8,9],"specialFeatures":[],"name":"Basic ads, personalised content, content measurement, and audience insights","description":"Basic ads can be served. Content can be personalised based on a profile. More data can be added to better personalise content. Ad and content performance can be measured. Insights about the audiences who saw the ads and content can be derived."},"35":{"id":35,"purposes":[2,5,6,8,9,10],"specialFeatures":[],"name":"Basic ads, personalised content, content measurement, audience insights, and product development","description":"Basic ads can be served. Content can be personalised based on a profile. More data can be added to better personalise content. Content performance can be measured. Insights about the audiences who saw the ads and content can be derived. Data can be used to build or improve user experience, systems, and software."},"36":{"id":36,"purposes":[2,5,6,7],"specialFeatures":[],"name":"Basic ads, personalised content, and ad measurement","description":"Basic ads can be served. Content can be personalised based on a profile. More data can be added to better personalise content. Ad performance can be measured."},"37":{"id":37,"purposes":[2,5,6,7,10],"specialFeatures":[],"name":"Basic ads, personalised content, ad measurement, and product development","description":"Basic ads can be served. Content can be personalised based on a profile. More data can be added to better personalise content. Ad performance can be measured. Data can be used to build or improve user experience, systems, and software."},"38":{"id":38,"purposes":[2,3,4,7,10],"specialFeatures":[],"name":"Personalised ads, ad measurement, and product development","description":"Ads can be personalised based on a profile. More data can be added to better personalise ads. Ad performance can be measured. Data can be used to build or improve user experience, systems, and software."},"39":{"id":39,"purposes":[2,3,4,7,9,10],"specialFeatures":[],"name":"Personalised ads, ad measurement, audience insights and product development","description":"Ads can be personalised based on a profile. More data can be added to better personalise ads. Ad performance can be measured. Insights about the audiences who saw the ads and content can be derived. Data can be used to build or improve user experience, systems and software."},"40":{"id":40,"purposes":[2,3,4,7,8,9,10],"specialFeatures":[],"name":"Personalised ads, ad and content measurement, audience insights and product development","description":"Ads can be personalised based on a profile. More data can be added to better personalise ads. Ad and content performance can be measured. Insights about audiences who saw the ads and content can be derived. Data can be used to build or improve user experience, systems and software."},"41":{"id":41,"purposes":[2,3,4,6,7,8,9,10],"specialFeatures":[],"name":"Personalised ads, personalised content display, ad and content measurement, audience insights and product development","description":"Ads and content can be personalised based on a profile. More data can be added to better personalise ads. Ad and content performance can be measured. Insights about audiences who saw the ads and content can be derived. Data can be used to build or improve user experience, systems and software."},"42":{"id":42,"purposes":[2,3,4,5,6,7,8,9,10],"specialFeatures":[],"name":"Personalised ads and content, ad and content measurement, audience insights and product development","description":"Ads and content can be personalised based on a profile. More data can be added to better personalise ads and content. Ad and content performance can be measured. Insights about audiences who saw the ads and content can be derived. Data can be used to build or improve user experience, systems and software."}},"vendors":{"8":{"id":8,"name":"Emerse Sverige AB","purposes":[1,3,4],"legIntPurposes":[2,7,8,9],"flexiblePurposes":[2,9],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.emerse.com/privacy-policy/","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"12":{"id":12,"name":"BeeswaxIO Corporation","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,3],"specialFeatures":[1],"policyUrl":"https://www.beeswax.com/privacy/","cookieMaxAgeSeconds":33696000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"28":{"id":28,"name":"TripleLift, Inc.","purposes":[1],"legIntPurposes":[2,7,9,10],"flexiblePurposes":[2,7,9,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://triplelift.com/privacy/","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true,"deviceStorageDisclosureUrl":"https://triplelift.com/.well-known/deviceStorage.json"},"27":{"id":27,"name":"ADventori SAS","purposes":[1,2,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.adventori.com/with-us/legal-notice/","cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"25":{"id":25,"name":"Verizon Media EMEA Limited","purposes":[1,3,4,5,6],"legIntPurposes":[2,7,8,9,10],"flexiblePurposes":[2,7,8,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.verizonmedia.com/policies/ie/en/verizonmedia/privacy/index.html","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"26":{"id":26,"name":"Venatus Media Limited","purposes":[1,2,3,4,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[],"policyUrl":"https://www.venatusmedia.com/privacy/","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"1":{"id":1,"name":"Exponential Interactive, Inc d/b/a VDX.tv","purposes":[1,2,3,4,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,8,9,10],"specialPurposes":[1,2],"features":[1,3],"specialFeatures":[],"policyUrl":"https://vdx.tv/privacy/","cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"6":{"id":6,"name":"AdSpirit GmbH","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,9,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.adspirit.de/privacy","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false,"deviceStorageDisclosureUrl":"https://help.adspirit.de/deviceStorage.json"},"30":{"id":30,"name":"BidTheatre AB","purposes":[1,3,4],"legIntPurposes":[2],"flexiblePurposes":[2],"specialPurposes":[1,2],"features":[2],"specialFeatures":[],"policyUrl":"https://www.bidtheatre.com/privacy-policy","cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"24":{"id":24,"name":"Epsilon","purposes":[1,2,3,4,5,6,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.epsilon.com/emea/privacy-policy","cookieMaxAgeSeconds":33696000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"39":{"id":39,"name":"ADITION technologies AG","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.adition.com/datenschutz","cookieMaxAgeSeconds":15552000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"11":{"id":11,"name":"Quantcast International Limited","purposes":[1,3,4],"legIntPurposes":[2,7,8,9,10],"flexiblePurposes":[2,7,8,9,10],"specialPurposes":[1,2],"features":[1,3],"specialFeatures":[],"policyUrl":"https://www.quantcast.com/privacy/","cookieMaxAgeSeconds":34190000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"15":{"id":15,"name":"Adikteev","purposes":[1,3,4,5,6,8,9,10],"legIntPurposes":[2,7],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2],"specialFeatures":[],"policyUrl":"https://www.adikteev.com/privacy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"4":{"id":4,"name":"Roq.ad Inc.","purposes":[1,2,3,4,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2,3],"specialFeatures":[1],"policyUrl":"https://www.roq.ad/privacy-policy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"7":{"id":7,"name":"Vibrant Media Limited","purposes":[1,3,4,5,6,7,8],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[1],"policyUrl":"https://www.vibrantmedia.com/en/privacy-policy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"2":{"id":2,"name":"Captify Technologies Limited","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[2],"specialFeatures":[2],"policyUrl":"https://www.captifytechnologies.com/privacy-notice/","cookieMaxAgeSeconds":2678400,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"37":{"id":37,"name":"NEURAL.ONE","purposes":[1,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[2],"policyUrl":"https://web.neural.one/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"13":{"id":13,"name":"Sovrn Holdings Inc","purposes":[1,2,3,5,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.sovrn.com/sovrn-privacy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"34":{"id":34,"name":"NEORY GmbH","purposes":[1,3,4,5,6],"legIntPurposes":[2,7,8,9,10],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.neory.com/privacy.html","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":true,"usesNonCookieAccess":false},"32":{"id":32,"name":"Xandr, Inc.","purposes":[1,3,4],"legIntPurposes":[2,7,10],"flexiblePurposes":[2,7,10],"specialPurposes":[1,2],"features":[2],"specialFeatures":[1],"policyUrl":"https://www.xandr.com/privacy/platform-privacy-policy/","cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"10":{"id":10,"name":"Index Exchange, Inc. ","purposes":[1,2,7],"legIntPurposes":[],"flexiblePurposes":[2,7],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://www.indexexchange.com/privacy","cookieMaxAgeSeconds":34128000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"57":{"id":57,"name":"ADARA MEDIA UNLIMITED","purposes":[1,2,3,4],"legIntPurposes":[7,9,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://adara.com/privacy-promise/","cookieMaxAgeSeconds":63072000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"63":{"id":63,"name":"Avocet Systems Limited","purposes":[1,2,3,4,5,6],"legIntPurposes":[7,8,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://avocet.io/privacy-portal","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"51":{"id":51,"name":"xAd, Inc. dba GroundTruth","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.groundtruth.com/privacy-policy/","deletedDate":"2020-10-15T00:00:00Z","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"49":{"id":49,"name":"Jellyfish France","purposes":[1,2,3,4,5,6],"legIntPurposes":[7,8,9,10],"flexiblePurposes":[7,8,9,10],"specialPurposes":[],"features":[1,2],"specialFeatures":[1],"policyUrl":"https://www.jellyfish.com/fr-fr/privacy-policy","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":34190000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"45":{"id":45,"name":"Smart Adserver","purposes":[1,2,4,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://smartadserver.com/end-user-privacy-policy/","cookieMaxAgeSeconds":33696000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"52":{"id":52,"name":"The Rubicon Project, Inc. ","purposes":[1],"legIntPurposes":[2,7,10],"flexiblePurposes":[2,7,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://www.rubiconproject.com/rubicon-project-yield-optimization-privacy-policy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"71":{"id":71,"name":"Roku Advertising Services","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://docs.roku.com/published/userprivacypolicy/en/us","cookieMaxAgeSeconds":63113904,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"79":{"id":79,"name":"MediaMath, Inc.","purposes":[1,3,4],"legIntPurposes":[2,7,10],"flexiblePurposes":[2,3,4,7,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.mediamath.com/privacy-policy/","cookieMaxAgeSeconds":33955200,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"91":{"id":91,"name":"Criteo SA","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.criteo.com/privacy/","cookieMaxAgeSeconds":33696000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"85":{"id":85,"name":"Crimtan Holdings Limited","purposes":[1,3,4],"legIntPurposes":[2,7,8,9,10],"flexiblePurposes":[2,7,8,9,10],"specialPurposes":[1,2],"features":[1,3],"specialFeatures":[1],"policyUrl":"https://crimtan.com/privacy/","cookieMaxAgeSeconds":3153600,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"16":{"id":16,"name":"RTB House S.A.","purposes":[1,2,3,4,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[],"specialFeatures":[],"policyUrl":"https://www.rtbhouse.com/privacy-center/services-privacy-policy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"86":{"id":86,"name":"Scene Stealer Limited","purposes":[1],"legIntPurposes":[2,3,4,7,10],"flexiblePurposes":[2,3,4,7],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://scenestealer.tv/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"94":{"id":94,"name":"Blis Media Limited","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.blis.com/privacy/","cookieMaxAgeSeconds":34190000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true,"deviceStorageDisclosureUrl":"https://privacy.blismedia.com/.well-known/deviceStorage.json"},"73":{"id":73,"name":"Simplifi Holdings Inc","purposes":[1,2,3,4,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2],"specialFeatures":[1],"policyUrl":"https://simpli.fi/site-privacy-policy/","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"33":{"id":33,"name":"ShareThis, Inc","purposes":[1,3],"legIntPurposes":[9,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://sharethis.com/privacy/","cookieMaxAgeSeconds":33696000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"20":{"id":20,"name":"N Technologies Inc.","purposes":[1,3,4],"legIntPurposes":[2,5,6,7,8,9,10],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[2],"specialFeatures":[1],"policyUrl":"https://n.rich/privacy-notice","cookieMaxAgeSeconds":46656000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"53":{"id":53,"name":"Sirdata","purposes":[1,3,4,5,6,9],"legIntPurposes":[2,7,10],"flexiblePurposes":[2,7,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.sirdata.com/en/Privacy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"69":{"id":69,"name":"OpenX","purposes":[1],"legIntPurposes":[2,7,10],"flexiblePurposes":[2,7,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.openx.com/legal/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"98":{"id":98,"name":"GroupM UK Limited","purposes":[1,2,3,4,5,6],"legIntPurposes":[7,8,9,10],"flexiblePurposes":[7,8,9,10],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.groupm.com/privacy-notice","cookieMaxAgeSeconds":34128000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"62":{"id":62,"name":"Justpremium BV","purposes":[1,2,4,5,10],"legIntPurposes":[7],"flexiblePurposes":[4,7,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://justpremium.com/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"36":{"id":36,"name":"Unruly Group LLC","purposes":[1,2,3,4,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://unruly.co/legal/privacy/","cookieMaxAgeSeconds":34128000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"80":{"id":80,"name":"Sharethrough, Inc","purposes":[1,2,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[2,4,7,9,10],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://platform-cdn.sharethrough.com/privacy-policy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"23":{"id":23,"name":"Amobee Inc.","purposes":[1,2,3,4],"legIntPurposes":[7,9,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.amobee.com/trust/gdpr/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"67":{"id":67,"name":"LifeStreet Corporation","purposes":[1,3,4],"legIntPurposes":[2,5,6,7,8,10],"flexiblePurposes":[2,5,6,7,8,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://lifestreet.com/privacy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"459":{"id":459,"name":"uppr GmbH","purposes":[1],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://netzwerk.uppr.de/privacy-policy.do","cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"68":{"id":68,"name":"Sizmek by Amazon","purposes":[1,3,4],"legIntPurposes":[2,7,9,10],"flexiblePurposes":[2,3,4,7,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.sizmek.com/privacy-policy/","cookieMaxAgeSeconds":34190000,"usesCookies":true,"cookieRefresh":true,"usesNonCookieAccess":true},"75":{"id":75,"name":"M32 Connect Inc","purposes":[],"legIntPurposes":[9],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[2],"policyUrl":"https://m32.media/privacy-cookie-policy/","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"61":{"id":61,"name":"GumGum, Inc.","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://gumgum.com/privacy-policy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"40":{"id":40,"name":"Active Agent (ADITION technologies AG)","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.active-agent.com/de/unternehmen/datenschutzerklaerung/","cookieMaxAgeSeconds":15552000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"76":{"id":76,"name":"PubMatic, Inc.","purposes":[1,3,4],"legIntPurposes":[2,5,6,7,8,9,10],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://pubmatic.com/privacy-policy/","cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"89":{"id":89,"name":"Tapad, Inc.","purposes":[1],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2],"specialFeatures":[],"policyUrl":"https://www.tapad.com/eu-privacy-policy","cookieMaxAgeSeconds":5184000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"46":{"id":46,"name":"Skimbit Ltd","purposes":[1,3],"legIntPurposes":[7,8],"flexiblePurposes":[7,8],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://skimlinks.com/pages/privacy-policy","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"66":{"id":66,"name":"adsquare GmbH","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.adsquare.com/privacy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"41":{"id":41,"name":"Adverline","purposes":[1,2,3,4,5,6,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.adverline.com/privacy/","deletedDate":"2021-05-25T00:00:00Z","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"82":{"id":82,"name":"Smaato, Inc.","purposes":[1,2,3,4,7,9],"legIntPurposes":[10],"flexiblePurposes":[2,7,9,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://www.smaato.com/privacy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"60":{"id":60,"name":"Rakuten Marketing LLC","purposes":[1,3,4],"legIntPurposes":[2,7,9,10],"flexiblePurposes":[2,3,4,7,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://rakutenadvertising.com/legal-notices/services-privacy-policy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"70":{"id":70,"name":"Yieldlab AG","purposes":[1,2,3,4,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.yieldlab.de/meta-navigation/datenschutz/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"50":{"id":50,"name":"Adform","purposes":[1,3,4],"legIntPurposes":[2,7,10],"flexiblePurposes":[2,7,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://site.adform.com/privacy-center/platform-privacy/product-and-services-privacy-policy/","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":5184000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"48":{"id":48,"name":"NetSuccess, s.r.o.","purposes":[1,3,4],"legIntPurposes":[2,7,9,10],"flexiblePurposes":[2,3,4,7,9,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.inres.sk/pp/","cookieMaxAgeSeconds":15552000,"usesCookies":true,"cookieRefresh":true,"usesNonCookieAccess":true},"100":{"id":100,"name":"Fifty Technology Limited","purposes":[1,2,3,4],"legIntPurposes":[7,9,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[],"policyUrl":"https://fifty.io/privacy-policy.php","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"21":{"id":21,"name":"The Trade Desk","purposes":[1,3,4],"legIntPurposes":[2,7,10],"flexiblePurposes":[2,7,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.thetradedesk.com/general/privacy-policy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"110":{"id":110,"name":"Dynata LLC","purposes":[1,7,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.opinionoutpost.co.uk/en-gb/policies/privacy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"42":{"id":42,"name":"Taboola Europe Limited","purposes":[1,2,3,4,5,6,7,8,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.taboola.com/privacy-policy","cookieMaxAgeSeconds":31556926,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"77":{"id":77,"name":"Comscore B.V.","purposes":[1,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[7,8,9,10],"specialPurposes":[1],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.scorecardresearch.com/privacy.aspx?newlanguage=1","cookieMaxAgeSeconds":62208000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"109":{"id":109,"name":"LoopMe Limited","purposes":[1,2,3,4,5,6,7,8],"legIntPurposes":[9,10],"flexiblePurposes":[9],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[1],"policyUrl":"https://loopme.com/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"120":{"id":120,"name":"Eyeota Pte Ltd","purposes":[1,3,5,9,10],"legIntPurposes":[],"flexiblePurposes":[3,5,9,10],"specialPurposes":[1],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.eyeota.com/privacy-center","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"93":{"id":93,"name":"Adloox SA","purposes":[1],"legIntPurposes":[7],"flexiblePurposes":[7],"specialPurposes":[1],"features":[],"specialFeatures":[],"policyUrl":"https://adloox.com/disclaimer","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"132":{"id":132,"name":"Teads ","purposes":[1,3,4],"legIntPurposes":[2,7,9,10],"flexiblePurposes":[2,7,9,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.teads.com/privacy-policy/","cookieMaxAgeSeconds":34164000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"22":{"id":22,"name":"admetrics GmbH","purposes":[1,7,8],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://admetrics.io/en/privacy_policy/","cookieMaxAgeSeconds":31,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"102":{"id":102,"name":"Telaria SAS","purposes":[1,2,3,4,5,6],"legIntPurposes":[7,8,9,10],"flexiblePurposes":[5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://telaria.com/outstream-services/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":31556900,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"108":{"id":108,"name":"Rich Audience Technologies SL","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://richaudience.com/privacy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"18":{"id":18,"name":"Widespace AB","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7],"specialPurposes":[],"features":[2],"specialFeatures":[],"policyUrl":"https://www.widespace.com/legal/privacy-policy-notice/","cookieMaxAgeSeconds":32061600,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false,"deviceStorageDisclosureUrl":"http://widespace.com/deviceStorage.json"},"122":{"id":122,"name":"Dentsu London Limited","purposes":[1,3,4,5,10],"legIntPurposes":[2,7,8],"flexiblePurposes":[2,7,8],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://privacy.metadsp.co.uk/privacy-policy.html","cookieMaxAgeSeconds":63072000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"97":{"id":97,"name":"LiveRamp, Inc.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://liveramp.fr/iab-transparency-consent-framework/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"138":{"id":138,"name":"ConnectAd Realtime GmbH","purposes":[1,2,3,4,7,10],"legIntPurposes":[],"flexiblePurposes":[2,7,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://connectadrealtime.com/privacy/","cookieMaxAgeSeconds":2628000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"72":{"id":72,"name":"Nano Interactive GmbH","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.nanointeractive.com/privacy-policy/","cookieMaxAgeSeconds":15724800,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"127":{"id":127,"name":"PIXIMEDIA SAS","purposes":[1,3,4,5,6,9,10],"legIntPurposes":[2,7,8],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://piximedia.com/privacy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":34186698,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"136":{"id":136,"name":"Str\u00f6er SSP GmbH (SSP)","purposes":[1],"legIntPurposes":[2,7,9,10],"flexiblePurposes":[2,7,9,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.stroeer.de/konvergenz-konzepte/daten-technologien/stroeer-ssp/datenschutz-ssp.html","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true,"deviceStorageDisclosureUrl":"https://www.stroeer.com/fileadmin/com/StroeerSSP_deviceStorage.json"},"111":{"id":111,"name":"Showheroes SE","purposes":[1,3,4,9,10],"legIntPurposes":[2,7,8],"flexiblePurposes":[2,7,8],"specialPurposes":[1,2],"features":[1],"specialFeatures":[],"policyUrl":"https://showheroes.com/privacy/","cookieMaxAgeSeconds":63072000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"124":{"id":124,"name":"Teemo SA","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1],"specialFeatures":[1],"policyUrl":"https://teemo.co/fr/confidentialite/","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"154":{"id":154,"name":"YOC AG","purposes":[1,3,4,10],"legIntPurposes":[2,7],"flexiblePurposes":[2,7],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://yoc.com/privacy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"101":{"id":101,"name":"MiQ","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://wearemiq.com/privacy-policy/","cookieMaxAgeSeconds":31540000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"149":{"id":149,"name":"ADman Interactive SLU","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2],"specialPurposes":[],"features":[2,3],"specialFeatures":[],"policyUrl":"https://admanmedia.com/politica.html?setLng=es","cookieMaxAgeSeconds":1210000000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"151":{"id":151,"name":"Admedo Technology Ltd","purposes":[1,3,4],"legIntPurposes":[2,7],"flexiblePurposes":[2,3,4,7],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.admedo.com/privacy-policy","cookieMaxAgeSeconds":259200,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"153":{"id":153,"name":"MADVERTISE MEDIA","purposes":[1,2,3,4,5,6,7,9,10],"legIntPurposes":[],"flexiblePurposes":[5,6,10],"specialPurposes":[2],"features":[],"specialFeatures":[1,2],"policyUrl":"https://madvertise.com/en/gdpr/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":33696000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true,"deviceStorageDisclosureUrl":"https://mobile.mng-ads.com/deviceStorage.json"},"159":{"id":159,"name":"Underdog Media LLC ","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://underdogmedia.com/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"157":{"id":157,"name":"Seedtag Advertising S.L","purposes":[1,2,3,4,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.seedtag.com/en/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"145":{"id":145,"name":"Snapsort Inc., operating as Sortable","purposes":[1],"legIntPurposes":[2,7,8,9,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://help.sortable.com/help/privacy-policy","cookieMaxAgeSeconds":31557600,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"131":{"id":131,"name":"ID5 Technology SAS","purposes":[1],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[],"policyUrl":"https://www.id5.io/privacy","cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"158":{"id":158,"name":"Reveal Mobile Inc","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://revealmobile.com/privacy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"147":{"id":147,"name":"Adacado Technologies Inc. (DBA Adacado)","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[7,8,9,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://adacado.com/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"130":{"id":130,"name":"NextRoll, Inc.","purposes":[1,2,3,4,5,6,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.nextroll.com/privacy","cookieMaxAgeSeconds":34128000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"129":{"id":129,"name":"IPONWEB GmbH","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.iponweb.com/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"128":{"id":128,"name":"BIDSWITCH GmbH","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,3],"specialFeatures":[1],"policyUrl":"https://www.bidswitch.com/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"168":{"id":168,"name":"EASYmedia GmbH","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://login.rtbmarket.com/gdpr","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"164":{"id":164,"name":"Outbrain UK Ltd","purposes":[1,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1,3],"specialFeatures":[],"policyUrl":"https://www.outbrain.com/legal/privacy#privacy-policy","cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"144":{"id":144,"name":"district m inc.","purposes":[1,2,4,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[3],"specialFeatures":[1],"policyUrl":"https://districtm.net/en/page/platforms-data-and-privacy-policy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"163":{"id":163,"name":"Bombora Inc.","purposes":[1,3],"legIntPurposes":[7,9,10],"flexiblePurposes":[7,9,10],"specialPurposes":[1],"features":[1,3],"specialFeatures":[],"policyUrl":"https://bombora.com/privacy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"173":{"id":173,"name":"Yieldmo, Inc.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.yieldmo.com/privacy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"88":{"id":88,"name":"TreSensa Technologies, Inc.","purposes":[1,3,4],"legIntPurposes":[2,7,10],"flexiblePurposes":[2,3,4,7,10],"specialPurposes":[1,2],"features":[1,3],"specialFeatures":[],"policyUrl":"https://www.tresensa.com/eu-privacy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"78":{"id":78,"name":"Flashtalking, Inc.","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2,3],"specialFeatures":[],"policyUrl":"https://www.flashtalking.com/privacypolicy/","cookieMaxAgeSeconds":63072000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"59":{"id":59,"name":"Sift Media, Inc","purposes":[2],"legIntPurposes":[],"flexiblePurposes":[2],"specialPurposes":[],"features":[3],"specialFeatures":[1],"policyUrl":"https://www.sift.co/privacy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"114":{"id":114,"name":"Sublime","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://ayads.co/privacy.php","cookieMaxAgeSeconds":34164060,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"133":{"id":133,"name":"digitalAudience","purposes":[1,3,5,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2],"specialFeatures":[],"policyUrl":"https://digitalaudience.io/legal/privacy-cookies/","cookieMaxAgeSeconds":31557600,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"14":{"id":14,"name":"Adkernel LLC","purposes":[1,3,4],"legIntPurposes":[2,7,9],"flexiblePurposes":[3,4],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://adkernel.com/privacy-policy/","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"183":{"id":183,"name":"EMX Digital LLC","purposes":[1,3,4,5,6,8],"legIntPurposes":[2,7,9,10],"flexiblePurposes":[2,7,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://emxdigital.com/privacy/","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"58":{"id":58,"name":"33Across","purposes":[1,2,4,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2],"specialFeatures":[],"policyUrl":"https://www.33across.com/privacy-policy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"140":{"id":140,"name":"Platform161 B.V.","purposes":[1,2,3,4,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[1],"policyUrl":"https://platform161.com/cookie-and-privacy-policy/","cookieMaxAgeSeconds":34164000,"usesCookies":true,"cookieRefresh":true,"usesNonCookieAccess":true},"90":{"id":90,"name":"Teroa S.A.","purposes":[1,2,3,4,5,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.e-planning.net/en/privacy.html","cookieMaxAgeSeconds":220752000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"141":{"id":141,"name":"1020, Inc. dba Placecast and Ericsson Emodo","purposes":[2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[1,3],"specialFeatures":[1],"policyUrl":"https://www.emodoinc.com/privacy-policy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"142":{"id":142,"name":"Media.net Advertising FZ-LLC","purposes":[1,3,4],"legIntPurposes":[2,5,6,7,8,9,10],"flexiblePurposes":[2,5,6,7,8,9],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.media.net/en/privacy-policy","cookieMaxAgeSeconds":157680000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"209":{"id":209,"name":"Delta Projects AB","purposes":[1,2,3,4],"legIntPurposes":[7,10],"flexiblePurposes":[2,7,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://deltaprojects.com/data-collection-policy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"195":{"id":195,"name":"advanced store GmbH","purposes":[1,3,4],"legIntPurposes":[2,7],"flexiblePurposes":[2,7],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.advanced-store.com/de/datenschutz/","cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"190":{"id":190,"name":"video intelligence AG","purposes":[1,2,3,4,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,7,8,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.vi.ai/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"84":{"id":84,"name":"Semasio GmbH","purposes":[1,3,9,10],"legIntPurposes":[],"flexiblePurposes":[3,9,10],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.semasio.com/privacy-policy/","cookieMaxAgeSeconds":31556952,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false,"deviceStorageDisclosureUrl":"https://semasio-tcf-storage.s3-eu-west-1.amazonaws.com/deviceStorage.json"},"65":{"id":65,"name":"Location Sciences AI Ltd.","purposes":[1,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1],"specialFeatures":[1],"policyUrl":"https://www.locationsciencesgroup.ai/privacy-policy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"210":{"id":210,"name":"Zemanta, Inc.","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1],"specialFeatures":[],"policyUrl":"https://www.zemanta.com/legal/privacy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"200":{"id":200,"name":"Tapjoy, Inc.","purposes":[1],"legIntPurposes":[2,3,4,7],"flexiblePurposes":[2,3,4,7],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.tapjoy.com/legal/#privacy-policy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"217":{"id":217,"name":"2KDirect, Inc. (dba iPromote)","purposes":[1],"legIntPurposes":[2,3,4,7,9,10],"flexiblePurposes":[2,3,4,7,9,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.ipromote.com/privacy-policy/","cookieMaxAgeSeconds":63072000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false,"deviceStorageDisclosureUrl":"https://www.ipromote.com/.well-known/deviceStorage.json"},"194":{"id":194,"name":"Rezonence Limited","purposes":[1,2,3,4],"legIntPurposes":[7,8,9,10],"flexiblePurposes":[2,7,8,9,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://rezonence.com/privacy-policy/","cookieMaxAgeSeconds":15768000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"226":{"id":226,"name":"Publicis Media GmbH","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.publicismedia.de/datenschutz/","cookieMaxAgeSeconds":157784760,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"198":{"id":198,"name":"SYNC","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[3,4,7],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.sync.tv/privacy.html","cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false,"deviceStorageDisclosureUrl":"https://sync.tv/deviceStorage.json"},"227":{"id":227,"name":"Opt Out Advertising B.V. ","purposes":[1,2,3,4,5,6,7,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://optoutadvertising.com/privacy-policy/","cookieMaxAgeSeconds":31622400,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"205":{"id":205,"name":"Adssets AB","purposes":[1,3,4,5,8,9],"legIntPurposes":[2,7],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://adssets.com/policy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"179":{"id":179,"name":"Collective Europe Ltd.","purposes":[1,2,3,4,9],"legIntPurposes":[7],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://www.collectiveuk.com/privacy.html","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":15552000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"31":{"id":31,"name":"Ogury Ltd.","purposes":[1,3,4,9],"legIntPurposes":[2,7,10],"flexiblePurposes":[2,7,10],"specialPurposes":[1,2],"features":[2],"specialFeatures":[],"policyUrl":"https://www.ogury.com/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"92":{"id":92,"name":"1plusX AG","purposes":[1],"legIntPurposes":[2,3,4,5,6,7,8,9,10],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.1plusx.com/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"155":{"id":155,"name":"AntVoice","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.antvoice.com/en/privacypolicy/","cookieMaxAgeSeconds":5270400,"usesCookies":true,"cookieRefresh":true,"usesNonCookieAccess":false},"115":{"id":115,"name":"smartclip Europe GmbH","purposes":[1,3,4],"legIntPurposes":[2,7,10],"flexiblePurposes":[2,3,4,7,10],"specialPurposes":[1,2],"features":[2],"specialFeatures":[],"policyUrl":"https://privacy-portal.smartclip.net/","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":true,"usesNonCookieAccess":false},"126":{"id":126,"name":"DoubleVerify Inc.\u200b","purposes":[2,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.doubleverify.com/privacy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"193":{"id":193,"name":"Mediasmart Mobile S.L.","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2,3],"specialFeatures":[1],"policyUrl":"https://mediasmart.io/privacy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"213":{"id":213,"name":"emetriq GmbH","purposes":[1,3,4,5,6,7,8],"legIntPurposes":[2,9,10],"flexiblePurposes":[2,9,10],"specialPurposes":[2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.emetriq.com/datenschutz/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"244":{"id":244,"name":"Ermes","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.ermes.ai/politique-de-confidentialite/","cookieMaxAgeSeconds":34164000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"224":{"id":224,"name":"adrule mobile GmbH","purposes":[1,2,3,4,5,6,7,8],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8],"specialPurposes":[],"features":[],"specialFeatures":[1],"policyUrl":"https://www.adrule.net/de/datenschutz/","cookieMaxAgeSeconds":62985600,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"174":{"id":174,"name":"A Million Ads Ltd","purposes":[2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[1],"policyUrl":"https://www.amillionads.com/privacy-policy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"192":{"id":192,"name":"remerge GmbH","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://remerge.io/privacy-policy.html","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"256":{"id":256,"name":"Bounce Exchange, Inc","purposes":[1],"legIntPurposes":[2,3,4,7,9,10],"flexiblePurposes":[2,3,4],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[1],"policyUrl":"https://www.bouncex.com/privacy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":33696000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"234":{"id":234,"name":"ZBO Media","purposes":[1,3,4,9],"legIntPurposes":[2,7,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1],"specialFeatures":[],"policyUrl":"https://zbo.media/mentions-legales/politique-de-confidentialite-service-publicitaire/","deletedDate":"2021-05-04T00:00:00Z","cookieMaxAgeSeconds":2628000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"246":{"id":246,"name":"Smartology Limited","purposes":[1,3,4,8],"legIntPurposes":[2,7],"flexiblePurposes":[2,7],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.smartology.net/privacy-policy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"241":{"id":241,"name":"OneTag Limited","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[7],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.onetag.com/privacy/","cookieMaxAgeSeconds":64000000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"254":{"id":254,"name":"LiquidM Technology GmbH","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://liquidm.com/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"215":{"id":215,"name":"ARMIS SAS","purposes":[1,2,7],"legIntPurposes":[10],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://armis.tech/en/armis-personal-data-privacy-policy/","cookieMaxAgeSeconds":33696000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"167":{"id":167,"name":"Audiens S.r.l.","purposes":[1,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.audiens.com/privacy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"240":{"id":240,"name":"7Hops.com Inc. (ZergNet)","purposes":[1],"legIntPurposes":[5,6,8,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://zergnet.com/privacy","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"235":{"id":235,"name":"Bucksense Inc","purposes":[2,3,4,7,9],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,9],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.bucksense.com/platform-privacy-policy/","cookieMaxAgeSeconds":89200,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"185":{"id":185,"name":"Bidtellect, Inc","purposes":[1,2,3,4,7,8],"legIntPurposes":[9,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.bidtellect.com/privacy-policy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"211":{"id":211,"name":"AdTheorent, Inc","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://adtheorent.com/privacy-policy","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":1051200,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"273":{"id":273,"name":"Bannerflow AB","purposes":[1,4],"legIntPurposes":[7],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.bannerflow.com/privacy ","cookieMaxAgeSeconds":31556952,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false,"deviceStorageDisclosureUrl":"https://shared.bannerflow.com/deviceStorage.json"},"104":{"id":104,"name":"Sonobi, Inc","purposes":[1,2,3,4],"legIntPurposes":[7,8],"flexiblePurposes":[],"specialPurposes":[2],"features":[1],"specialFeatures":[],"policyUrl":"https://sonobi.com/privacy-policy/","cookieMaxAgeSeconds":5184000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"162":{"id":162,"name":"Unruly Group Ltd","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://unruly.co/privacy/","cookieMaxAgeSeconds":34128000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"249":{"id":249,"name":"Spolecznosci Sp. z o.o. Sp. k.","purposes":[1,2,3,4,5,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,7,8,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[2],"policyUrl":"https://www.spolecznosci.pl/polityka-prywatnosci","cookieMaxAgeSeconds":33696000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"170":{"id":170,"name":"Goodway Group, Inc.","purposes":[7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[7,8,9,10],"specialPurposes":[],"features":[1,2],"specialFeatures":[1],"policyUrl":"https://goodwaygroup.com/privacy-policy/","deletedDate":"2021-05-05T00:00:00Z","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"160":{"id":160,"name":"Audience Solutions S.A.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://audience-solutions.com/privacy.html","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":63072000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"279":{"id":279,"name":"Mirando GmbH & Co KG","purposes":[],"legIntPurposes":[2,7],"flexiblePurposes":[2,7],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.mirando.de/datenschutz/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"276":{"id":276,"name":"Viralize SRL","purposes":[1,2,3,4,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1],"specialFeatures":[],"policyUrl":"https://viralize.com/privacy-policy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"87":{"id":87,"name":"Betgenius Ltd","purposes":[1,2,3,4,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,8,9,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.geniussports.com/privacy-policy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"255":{"id":255,"name":"Onnetwork Sp. z o.o.","purposes":[1,2,5,6],"legIntPurposes":[7,8],"flexiblePurposes":[7,8],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.onnetwork.tv/pp_services.php","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"203":{"id":203,"name":"Revcontent, LLC","purposes":[1],"legIntPurposes":[2,3,4,5,6,7,8,9,10],"flexiblePurposes":[2,3,4,5,6],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://intercom.help/revcontent2/en/articles/4192775-revcontent-privacy-policy-residents-of-european-economic-area","cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"274":{"id":274,"name":"Golden Bees","purposes":[1,2,3,4,6,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2],"specialFeatures":[],"policyUrl":"https://www.goldenbees.fr/en/privacy-charter/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"280":{"id":280,"name":"OpenWeb LTD","purposes":[],"legIntPurposes":[2,3,4,5,6,7,8,9,10],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.openweb.com/legal-and-privacy/privacy/","cookieMaxAgeSeconds":300000000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"239":{"id":239,"name":"Triton Digital Canada Inc.","purposes":[1,3,4,5,6],"legIntPurposes":[2,7,8,9,10],"flexiblePurposes":[2,7,8,9,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://www.tritondigital.com/privacy-policies","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"177":{"id":177,"name":"plista GmbH","purposes":[1],"legIntPurposes":[7,8,10],"flexiblePurposes":[7,8,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.plista.com/about/privacy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"150":{"id":150,"name":"Inskin Media LTD","purposes":[1,3,4,9,10],"legIntPurposes":[2,7],"flexiblePurposes":[2,7],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[],"policyUrl":"https://www.inskinmedia.com/privacy-policy.html","cookieMaxAgeSeconds":31622400,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"252":{"id":252,"name":"Jaduda GmbH","purposes":[1],"legIntPurposes":[2,3,4,5,6,7,8,9,10],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://www.jadudamobile.com/datenschutzerklaerung/","cookieMaxAgeSeconds":604800,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"248":{"id":248,"name":"Converge-Digital","purposes":[1],"legIntPurposes":[2],"flexiblePurposes":[2],"specialPurposes":[2],"features":[3],"specialFeatures":[],"policyUrl":"https://converge-digital.com/privacy-policy/","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":63113904,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"161":{"id":161,"name":"Smadex SL","purposes":[1,2,3,4,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://smadex.com/end-user-privacy-policy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"285":{"id":285,"name":"Comcast International France SAS","purposes":[1],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.freewheel.com/privacy-policy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"228":{"id":228,"name":"McCann Discipline LTD","purposes":[1,2,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.primis.tech/privacy-policy/","cookieMaxAgeSeconds":1209600,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"299":{"id":299,"name":"AdClear GmbH","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[2],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.adclear.de/datenschutzerklaerung/","deletedDate":"2021-05-03T00:00:00Z","cookieMaxAgeSeconds":7948800,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"277":{"id":277,"name":"CentralNic Poland sp. z o.o.","purposes":[1,2,3,4,7,9],"legIntPurposes":[10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://voluumdsp.com/end-user-privacy-policy/","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"259":{"id":259,"name":"ADYOULIKE SA","purposes":[1,3,4],"legIntPurposes":[2,7],"flexiblePurposes":[2,7],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.adyoulike.com/pages/privacy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"289":{"id":289,"name":"mobalo GmbH","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1],"specialFeatures":[1],"policyUrl":"https://www.mobalo.com/en/privacy/","deletedDate":"2021-05-21T00:00:00Z","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"272":{"id":272,"name":"A.Mob","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.we-are-adot.com/privacy-policy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"230":{"id":230,"name":"Steel House, Inc.","purposes":[1],"legIntPurposes":[2,3,4,5,6,7,8,9,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://steelhouse.com/privacy-policy/","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":63072000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"253":{"id":253,"name":"Improve Digital BV","purposes":[1,3,4,9],"legIntPurposes":[2,7,10],"flexiblePurposes":[2,7,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://www.improvedigital.com/platform-privacy-policy","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"304":{"id":304,"name":"On Device Research Limited","purposes":[1,2,3],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://s.on-device.com/privacyPolicy","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"314":{"id":314,"name":"Keymantics","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,9,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.kmtx.com/privacy/","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false,"deviceStorageDisclosureUrl":"https://cdn.keymantics.com/.well-known/deviceStorage.json"},"317":{"id":317,"name":"mainADV Srl","purposes":[1,2,3,4,5,6,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.mainad.com/privacy-policy/","cookieMaxAgeSeconds":60,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"278":{"id":278,"name":"Integral Ad Science, Inc.","purposes":[],"legIntPurposes":[7,10],"flexiblePurposes":[7,10],"specialPurposes":[1],"features":[],"specialFeatures":[],"policyUrl":"https://integralads.com/privacy-policy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"295":{"id":295,"name":"Sojern, Inc.","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,9,10],"specialPurposes":[2],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.sojern.com/privacy/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"315":{"id":315,"name":"Celtra, Inc.","purposes":[1,2,4,7],"legIntPurposes":[10],"flexiblePurposes":[2,4,7],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://www.celtra.com/privacy-policy/","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":true},"165":{"id":165,"name":"SpotX, Inc.","purposes":[1,3,4],"legIntPurposes":[2,7,9,10],"flexiblePurposes":[2,3,4,7,9,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.spotx.tv/privacy-policy/","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":1209600,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"47":{"id":47,"name":"ADMAN - Phaistos Networks, S.A.","purposes":[1,2,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.adman.gr/privacy","cookieMaxAgeSeconds":315360000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"134":{"id":134,"name":"SMARTSTREAM.TV GmbH","purposes":[1],"legIntPurposes":[2,3,4,7,9,10],"flexiblePurposes":[2,3,4,7,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.smartstream.tv/en/productprivacy","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"325":{"id":325,"name":"Knorex","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.knorex.com/privacy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"316":{"id":316,"name":"Gamned","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[1],"policyUrl":"https://www.gamned.com/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"318":{"id":318,"name":"Accorp Sp. z o.o.","purposes":[1,2,3,4,5,6],"legIntPurposes":[7,8,9,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.instytut-pollster.pl/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"199":{"id":199,"name":"ADUX","purposes":[1,2,3,4,6,7,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[1],"policyUrl":"https://www.adux.com/donnees-personelles/","cookieMaxAgeSeconds":15552000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"236":{"id":236,"name":"PowerLinks Media Limited","purposes":[1,2],"legIntPurposes":[3,4,5,6,7,8],"flexiblePurposes":[3,4,5,6],"specialPurposes":[1,2],"features":[1],"specialFeatures":[],"policyUrl":"https://www.powerlinks.com/privacy-policy/","cookieMaxAgeSeconds":31556952,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"294":{"id":294,"name":"Jivox Corporation","purposes":[1,2,3,4,5,7],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,7],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.jivox.com/privacy","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"143":{"id":143,"name":"Connatix Native Exchange Inc.","purposes":[1,2,4,6,7,8,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[],"policyUrl":"https://connatix.com/privacy-policy/","cookieMaxAgeSeconds":2600000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"297":{"id":297,"name":"Polar Mobile Group Inc.","purposes":[1,3,4],"legIntPurposes":[2,7,8,10],"flexiblePurposes":[2,7,8,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://privacy.polar.me","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"319":{"id":319,"name":"Clipcentric, Inc.","purposes":[1],"legIntPurposes":[2,7,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://clipcentric.com/privacy.bhtml","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true,"deviceStorageDisclosureUrl":"https://clipcentric.com/.well-known/deviceStorage.json"},"290":{"id":290,"name":"Readpeak Oy","purposes":[1,2,3,4,7],"legIntPurposes":[10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://readpeak.com/privacy-policy/","cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"323":{"id":323,"name":"DAZN Media Services Limited","purposes":[1,3,4,7],"legIntPurposes":[2,8,10],"flexiblePurposes":[8,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://www.goal.com/en-gb/legal/privacy-policy","cookieMaxAgeSeconds":63072000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"119":{"id":119,"name":"Fusio by S4M","purposes":[1,3,4,8,10],"legIntPurposes":[],"flexiblePurposes":[3,4,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://www.s4m.io/privacy-policy/","cookieMaxAgeSeconds":86400,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"302":{"id":302,"name":"Mobile Professionals BV","purposes":[1,2,3,4,5,7,9],"legIntPurposes":[],"flexiblePurposes":[3,5,7],"specialPurposes":[],"features":[3],"specialFeatures":[1],"policyUrl":"https://mobpro.com/privacy.html","cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"212":{"id":212,"name":"usemax advertisement (Emego GmbH)","purposes":[1],"legIntPurposes":[2,3,4,5,6,7,8,9,10],"flexiblePurposes":[2,3,4,5,6,7,8],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.usemax.de/?l=privacy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"264":{"id":264,"name":"Adobe Advertising Cloud","purposes":[1,2,3,4,10],"legIntPurposes":[7],"flexiblePurposes":[2],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.adobe.com/privacy/experience-cloud.html","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"44":{"id":44,"name":"The ADEX GmbH","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://theadex.com/privacy-opt-out/","cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"282":{"id":282,"name":"Welect GmbH","purposes":[1],"legIntPurposes":[2],"flexiblePurposes":[2],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.welect.de/datenschutz","cookieMaxAgeSeconds":1209600,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"238":{"id":238,"name":"StackAdapt","purposes":[1,2,3,4],"legIntPurposes":[7,9,10],"flexiblePurposes":[],"specialPurposes":[2],"features":[1,2],"specialFeatures":[1],"policyUrl":"https://www.stackadapt.com/privacy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"284":{"id":284,"name":"Weborama","purposes":[1,3,4],"legIntPurposes":[2,5,6,7,8,9,10],"flexiblePurposes":[2,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[1],"policyUrl":"https://weborama.com/respect-de-la-vie-privee-2-2/","cookieMaxAgeSeconds":34300800,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"148":{"id":148,"name":"Liveintent Inc.","purposes":[1],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://liveintent.com/services-privacy-policy/","cookieMaxAgeSeconds":63113904,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"301":{"id":301,"name":"zeotap GmbH","purposes":[1,3,4,5,6,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://zeotap.com/privacy_policy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"275":{"id":275,"name":"TabMo SAS","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://static.tabmo.io.s3.amazonaws.com/privacy-policy/index.html","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"310":{"id":310,"name":"Adevinta Spain S.L.U.","purposes":[1,2,3,4,9],"legIntPurposes":[7,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.adevinta.com/about/privacy/","cookieMaxAgeSeconds":15552000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"139":{"id":139,"name":"Permodo GmbH","purposes":[1,2,3,4,7,8,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,8,10],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[1],"policyUrl":"https://permodo.com/de/privacy.html","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"262":{"id":262,"name":"Fyber ","purposes":[1,2,3,4,5,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[1],"policyUrl":"https://www.fyber.com/legal/privacy-policy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"331":{"id":331,"name":"ad6media","purposes":[1],"legIntPurposes":[2,3,4,5,6,7,8,10],"flexiblePurposes":[2,3,4,5,6],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[1,2],"policyUrl":"https://www.ad6media.fr/privacy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"345":{"id":345,"name":"The Kantar Group Limited","purposes":[1,2,3,4,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,8,9,10],"specialPurposes":[2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.kantar.com/cookies-policies","cookieMaxAgeSeconds":78892380,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"308":{"id":308,"name":"Rockabox Media Ltd t/a Scoota","purposes":[1,2,4],"legIntPurposes":[],"flexiblePurposes":[2,4],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://scoota.com/privacy-policy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"270":{"id":270,"name":"Marfeel Solutions, SL","purposes":[1],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.marfeel.com/privacy-policy/","cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"333":{"id":333,"name":"InMobi Pte Ltd","purposes":[1,2,3,4,9,10],"legIntPurposes":[],"flexiblePurposes":[9],"specialPurposes":[1],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.inmobi.com/privacy-policy-for-eea","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"202":{"id":202,"name":"Telaria, Inc","purposes":[1,2,3,4,5,6],"legIntPurposes":[7,8,9,10],"flexiblePurposes":[5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://telaria.com/privacy-policy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":31556900,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"328":{"id":328,"name":"Gemius SA","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[],"policyUrl":"https://www.gemius.com/cookie-policy.html","cookieMaxAgeSeconds":189216000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"281":{"id":281,"name":"Wizaly","purposes":[1,7,8,9],"legIntPurposes":[],"flexiblePurposes":[7,8,9],"specialPurposes":[],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.wizaly.com/terms-of-use#privacy-policy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"354":{"id":354,"name":"Apester Ltd","purposes":[1,2,4],"legIntPurposes":[6,7,8,10],"flexiblePurposes":[7],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://apester.com/privacy-policy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"359":{"id":359,"name":"AerServ LLC","purposes":[1,2,3,4,9,10],"legIntPurposes":[],"flexiblePurposes":[9],"specialPurposes":[1],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.inmobi.com/privacy-policy-for-eea","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"265":{"id":265,"name":"Instinctive, Inc.","purposes":[1,2,3,4,5,6,7,8],"legIntPurposes":[9,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://instinctive.io/privacy","deletedDate":"2021-05-25T00:00:00Z","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"349":{"id":349,"name":"Optomaton UG","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.optomaton.com/privacy.html","cookieMaxAgeSeconds":31556952,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"266":{"id":266,"name":"Rebold Marketing & Communication SLU","purposes":[1,2,3,4,5,6,7,8,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://letsrebold.com/es/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"303":{"id":303,"name":"Orion Semantics","purposes":[1,2,3,4,7,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://static.orion-semantics.com/privacy.html","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"261":{"id":261,"name":"Signal Digital Inc.","purposes":[1],"legIntPurposes":[3,5,7,8],"flexiblePurposes":[3],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.signal.co/privacy-policy/","cookieMaxAgeSeconds":63113904,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"83":{"id":83,"name":"Visarity Technologies GmbH","purposes":[2,6,7,8],"legIntPurposes":[],"flexiblePurposes":[2],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://primo.design/docs/PrivacyPolicyPrimo.html","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"343":{"id":343,"name":"DIGITEKA Technologies","purposes":[1],"legIntPurposes":[2,3,4,5,6,7,8,9,10],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1,3],"specialFeatures":[1],"policyUrl":"https://www.ultimedia.com/POLICY.html","cookieMaxAgeSeconds":34300800,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"231":{"id":231,"name":"AcuityAds Inc.","purposes":[1,3,4],"legIntPurposes":[2,7,8,10],"flexiblePurposes":[3,4],"specialPurposes":[1,2],"features":[2],"specialFeatures":[],"policyUrl":"https://privacy.acuityads.com/corporate-privacy-policy.html","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"216":{"id":216,"name":"Mindlytix SAS","purposes":[1,2,3,5,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[1,2],"specialFeatures":[],"policyUrl":"https://mindlytix.com/privacy/","cookieMaxAgeSeconds":5356800,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"360":{"id":360,"name":"Permutive Technologies, Inc.","purposes":[1],"legIntPurposes":[3,5,7,8,9],"flexiblePurposes":[3,5,7,8,9],"specialPurposes":[],"features":[1,2],"specialFeatures":[],"policyUrl":"https://permutive.com/privacy/","cookieMaxAgeSeconds":94608000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"361":{"id":361,"name":"Permutive Limited","purposes":[1],"legIntPurposes":[3,5,7,8,9],"flexiblePurposes":[3,5,7,8,9],"specialPurposes":[],"features":[1,2],"specialFeatures":[],"policyUrl":"https://permutive.com/privacy/","cookieMaxAgeSeconds":94608000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"311":{"id":311,"name":"Mobfox US LLC","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://www.mobfox.com/privacy-policy/","cookieMaxAgeSeconds":1209600,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"358":{"id":358,"name":"MGID Inc.","purposes":[2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[2],"policyUrl":"https://www.mgid.com/privacy-policy","cookieMaxAgeSeconds":2147483646,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"152":{"id":152,"name":"Meetrics GmbH","purposes":[1,9],"legIntPurposes":[7],"flexiblePurposes":[7],"specialPurposes":[1],"features":[],"specialFeatures":[],"policyUrl":"https://www.meetrics.com/en/data-privacy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"251":{"id":251,"name":"Yieldlove GmbH","purposes":[1],"legIntPurposes":[2,6,7,8,10],"flexiblePurposes":[2,6,7,8,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.yieldlove.com/cookie-policy","cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"371":{"id":371,"name":"Seeding Alliance GmbH","purposes":[1,3,4,5,6],"legIntPurposes":[2,7,8,10],"flexiblePurposes":[2,7,8,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://seeding-alliance.de/datenschutz/","cookieMaxAgeSeconds":15552000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"347":{"id":347,"name":"Ezoic Inc.","purposes":[1,7,8,9],"legIntPurposes":[6,10],"flexiblePurposes":[6,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://www.ezoic.com/terms/","cookieMaxAgeSeconds":220752000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"218":{"id":218,"name":"Bigabid Media ltd","purposes":[1,3,4],"legIntPurposes":[2,5,6,7,8,9,10],"flexiblePurposes":[],"specialPurposes":[1],"features":[3],"specialFeatures":[1],"policyUrl":"https://www.bigabid.com/privacy-policy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"350":{"id":350,"name":"Free Stream Media Corp. dba Samba TV","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://samba.tv/legal/privacy-policy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"351":{"id":351,"name":"Samba TV UK Limited","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://samba.tv/legal/privacy-policy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"380":{"id":380,"name":"Vidoomy Media SL","purposes":[2,3,4,5,6,7,8],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://vidoomy.com/privacy-policy.html","cookieMaxAgeSeconds":86400,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"378":{"id":378,"name":"communicationAds GmbH & Co. KG","purposes":[1],"legIntPurposes":[7],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.communicationads.net/aboutus/privacy/","cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"184":{"id":184,"name":"mediarithmics SAS","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,7],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.mediarithmics.com/en-us/content/privacy-policy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"368":{"id":368,"name":"VECTAURY","purposes":[1,2,3,4,7,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.vectaury.io/en/personal-data","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"373":{"id":373,"name":"Nielsen Marketing Cloud","purposes":[1,3],"legIntPurposes":[7,9,10],"flexiblePurposes":[7,9],"specialPurposes":[1],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.nielsen.com/us/en/legal/privacy-statement/nielsen-marketing-cloud-privacy-notice/","cookieMaxAgeSeconds":10368000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"388":{"id":388,"name":"numberly","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://numberly.com/en/privacy/","cookieMaxAgeSeconds":34187400,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"250":{"id":250,"name":"Qriously Ltd","purposes":[2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.brandwatch.com/legal/qriously-privacy-notice/","cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"223":{"id":223,"name":"Audience Trading Platform Ltd.","purposes":[1],"legIntPurposes":[7,8],"flexiblePurposes":[7,8],"specialPurposes":[],"features":[2],"specialFeatures":[],"policyUrl":"https://atp.io/privacy-policy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"384":{"id":384,"name":"Pixalate, Inc.","purposes":[],"legIntPurposes":[7,8,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1,2],"policyUrl":"https://pixalate.com/privacypolicy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"387":{"id":387,"name":"Triapodi Ltd.","purposes":[2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[],"policyUrl":"https://appreciate.mobi/page.html#/end-user-privacy-policy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"312":{"id":312,"name":"Exactag GmbH","purposes":[1,3,7,8],"legIntPurposes":[],"flexiblePurposes":[3,7,8],"specialPurposes":[1],"features":[2],"specialFeatures":[],"policyUrl":"https://www.exactag.com/en/data-privacy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":15552000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"178":{"id":178,"name":"Hybrid Theory","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[7,8,9,10],"specialPurposes":[1],"features":[],"specialFeatures":[],"policyUrl":"https://hybridtheory.com/privacy-policy/","cookieMaxAgeSeconds":34190000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"377":{"id":377,"name":"AddApptr GmbH","purposes":[1,2,3,4,5,6,8,9],"legIntPurposes":[7,10],"flexiblePurposes":[7,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.addapptr.com/data-privacy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":true},"382":{"id":382,"name":"The Reach Group GmbH","purposes":[1,3,4,5,6,9],"legIntPurposes":[2,7,8],"flexiblePurposes":[2,3,4,5,6,7,8,9],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://trg.de/en/privacy-statement/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"206":{"id":206,"name":"Hybrid Adtech GmbH","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://hybrid.ai/data_protection_policy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true,"deviceStorageDisclosureUrl":"https://st.hybrid.ai/policy/deviceStorage.json"},"385":{"id":385,"name":"Oracle Data Cloud","purposes":[1,3,5,9,10],"legIntPurposes":[7],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.oracle.com/legal/privacy/marketing-cloud-data-cloud-privacy-policy.html","cookieMaxAgeSeconds":15552000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"242":{"id":242,"name":"twiago GmbH","purposes":[1,2,3,4,7,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.twiago.com/datenschutz/","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"402":{"id":402,"name":"Effiliation / Effinity","purposes":[1,7],"legIntPurposes":[],"flexiblePurposes":[7],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://inter.effiliation.com/politique-confidentialite.html","cookieMaxAgeSeconds":5184000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"413":{"id":413,"name":"Eulerian Technologies","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.eulerian.com/en/privacy/","cookieMaxAgeSeconds":33696000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"415":{"id":415,"name":"Seenthis AB","purposes":[],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://seenthis.co/privacy-notice-2018-04-18.pdf","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"263":{"id":263,"name":"Nativo, Inc.","purposes":[1,3,4,10],"legIntPurposes":[2,7],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2],"specialFeatures":[],"policyUrl":"https://www.nativo.com/interest-based-ads","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"329":{"id":329,"name":"Browsi","purposes":[1,7,8],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://gobrowsi.com/browsi-privacy-policy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"337":{"id":337,"name":"SheMedia, LLC","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2,3],"specialFeatures":[],"policyUrl":"https://www.shemedia.com/ad-services-privacy-policy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"422":{"id":422,"name":"Brand Metrics Sweden AB","purposes":[1,6,7,8,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://collector.brandmetrics.com/brandmetrics_privacypolicy.pdf","cookieMaxAgeSeconds":33350400,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"394":{"id":394,"name":"AudienceProject Aps","purposes":[1,3,4,5,6],"legIntPurposes":[2,7,8,9,10],"flexiblePurposes":[2,7,8,9,10],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[],"policyUrl":"https://privacy.audienceproject.com","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"243":{"id":243,"name":"Cloud Technologies S.A.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.cloudtechnologies.pl/en/internet-advertising-privacy-policy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"416":{"id":416,"name":"Commanders Act","purposes":[1,2,3,4,5,6,7,8,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.commandersact.com/en/privacy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"434":{"id":434,"name":"DynAdmic","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[3],"specialPurposes":[1,2],"features":[1,3],"specialFeatures":[],"policyUrl":"https://eu.dynadmic.com/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"435":{"id":435,"name":"SINGLESPOT SAS ","purposes":[1,3,4,7,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.singlespot.com/privacy_policy?locale=fr","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"321":{"id":321,"name":"Ziff Davis LLC","purposes":[1,3,4,5,6,9],"legIntPurposes":[2,7,8,10],"flexiblePurposes":[2,7,8,10],"specialPurposes":[1,2],"features":[2],"specialFeatures":[],"policyUrl":"https://www.ziffdavis.com/privacy-policy","cookieMaxAgeSeconds":15552000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"436":{"id":436,"name":"INVIBES GROUP","purposes":[1,3,4,5,6,9],"legIntPurposes":[2,7,8,10],"flexiblePurposes":[2,7,8,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.invibes.com/terms","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"418":{"id":418,"name":"PROXISTORE","purposes":[1,4,7,9,10],"legIntPurposes":[2],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.proxistore.com/common/en/cgv","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"429":{"id":429,"name":"Next Media","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://next14.com/media/privacy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"335":{"id":335,"name":"Beachfront Media LLC","purposes":[1],"legIntPurposes":[2,3,4,7,8,9],"flexiblePurposes":[2,3,4,7,8,9],"specialPurposes":[1,2],"features":[1,3],"specialFeatures":[1],"policyUrl":"https://beachfront.com/privacy-policy/","cookieMaxAgeSeconds":604800,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"427":{"id":427,"name":"Proxi.cloud sp. z.o.o","purposes":[1,2,3,4,7,8,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1],"specialFeatures":[1],"policyUrl":"https://proxi.cloud/privacy-policy/","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"374":{"id":374,"name":"Bmind a Sales Maker Company, S.L.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.bmind.es/legal-notice/","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"438":{"id":438,"name":"INVIDI technologies AB","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,9,10],"specialPurposes":[],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.invidi.com/wp-content/uploads/2020/02/ad-tech-services-privacy-policy.pdf","cookieMaxAgeSeconds":315360000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"450":{"id":450,"name":"Neodata Group srl","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.neodatagroup.com/en/security-policy","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":31556952,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true,"deviceStorageDisclosureUrl":"https://support.neodatagroup.com/deviceStorage.json"},"452":{"id":452,"name":"Innovid Inc.","purposes":[1,4],"legIntPurposes":[2,7],"flexiblePurposes":[2,7],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.innovid.com/privacy-policy","cookieMaxAgeSeconds":7884000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"444":{"id":444,"name":"Playbuzz Ltd (aka EX.CO)","purposes":[1],"legIntPurposes":[2,3,4,5,6,7,8,9,10],"flexiblePurposes":[2,3,5,6],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://ex.co/privacy-policy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"412":{"id":412,"name":"Cxense ASA","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.cxense.com/about-us/privacy-policy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"455":{"id":455,"name":"GDMServices, Inc. d/b/a FiksuDSP","purposes":[1,2,3,4,10],"legIntPurposes":[7],"flexiblePurposes":[2,3,4,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://fiksu.com/privacy-policy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"298":{"id":298,"name":"Cuebiq","purposes":[1,3,10],"legIntPurposes":[7],"flexiblePurposes":[7],"specialPurposes":[1],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://privacy.cuebiq.com","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"423":{"id":423,"name":"travel audience GmbH","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2],"specialFeatures":[1],"policyUrl":"https://travelaudience.com/product-privacy-policy/","cookieMaxAgeSeconds":34300800,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false,"deviceStorageDisclosureUrl":"http://ads.travelaudience.com/deviceStorage.json"},"397":{"id":397,"name":"Demandbase, Inc.","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.demandbase.com/privacy-policy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"381":{"id":381,"name":"Solocal","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://frontend.adhslx.com/privacy.html?","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"365":{"id":365,"name":"Impact Tech Inc.","purposes":[],"legIntPurposes":[7],"flexiblePurposes":[],"specialPurposes":[1],"features":[1,3],"specialFeatures":[1],"policyUrl":"https://impact.com/privacy-policy/","cookieMaxAgeSeconds":62208000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"447":{"id":447,"name":"Adludio Ltd.","purposes":[2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[1],"policyUrl":"https://adludio.com/privacypolicy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"410":{"id":410,"name":"Adtelligent Inc.","purposes":[1,2,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://adtelligent.com/privacy-policy/","cookieMaxAgeSeconds":2678000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"137":{"id":137,"name":"Str\u00f6er SSP GmbH (DSP)","purposes":[1,3,4],"legIntPurposes":[2,7,9,10],"flexiblePurposes":[2,3,4,7,9,10],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[1],"policyUrl":"https://www.stroeer.de/konvergenz-konzepte/daten-technologien/stroeer-ssp/datenschutz-ssp.html","cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true,"deviceStorageDisclosureUrl":"https://www.stroeer.com/fileadmin/com/StroeerDSP_deviceStorage.json"},"462":{"id":462,"name":"Bidstack Limited","purposes":[1,2,3,4,5,6,9],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,9],"specialPurposes":[1,2],"features":[2],"specialFeatures":[],"policyUrl":"https://www.bidstack.com/privacy-policy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"466":{"id":466,"name":"TACTIC\u2122 Real-Time Marketing AS","purposes":[],"legIntPurposes":[7],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://tacticrealtime.com/privacy/","cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"431":{"id":431,"name":"White Ops, Inc.","purposes":[],"legIntPurposes":[7,9,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,3],"specialFeatures":[2],"policyUrl":"https://www.whiteops.com/privacy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"336":{"id":336,"name":"Telecoming S.A.","purposes":[2,4],"legIntPurposes":[7,9],"flexiblePurposes":[2,4],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.telecoming.com/privacy-policy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"469":{"id":469,"name":"Zeta Global","purposes":[1],"legIntPurposes":[2,3,4,5,6,7,8,9,10],"flexiblePurposes":[3,4],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://zetaglobal.com/privacy-policy/","cookieMaxAgeSeconds":33696000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"440":{"id":440,"name":"DEFINE MEDIA GMBH","purposes":[1,4],"legIntPurposes":[2,7,9,10],"flexiblePurposes":[2,7,9,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.definemedia.de/datenschutz-conative/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"375":{"id":375,"name":"Affle International","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[1],"policyUrl":"https://revx.io/privacy-policy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"196":{"id":196,"name":"AdElement Media Solutions Pvt Ltd","purposes":[1,2,3,4,7,8],"legIntPurposes":[],"flexiblePurposes":[2,7,8],"specialPurposes":[1,2],"features":[2],"specialFeatures":[1],"policyUrl":"http://adelement.com/privacy-policy.html","cookieMaxAgeSeconds":30456000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"475":{"id":475,"name":"TAPTAP Digital SL","purposes":[1,2,3,4,5,6,7],"legIntPurposes":[8,10],"flexiblePurposes":[],"specialPurposes":[1],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.taptapnetworks.com/privacy_policy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":true,"usesNonCookieAccess":false},"448":{"id":448,"name":"Targetspot Belgium SPRL","purposes":[1,2,3,4,7,9],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,9],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://marketing.targetspot.com/Targetspot/Legal/TargetSpot%20Privacy%20Policy%20-%20June%202018.pdf","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"428":{"id":428,"name":"Internet BillBoard a.s.","purposes":[1],"legIntPurposes":[2,3,4,7],"flexiblePurposes":[2,3,4],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.ibillboard.com/en/privacy-information/","cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"461":{"id":461,"name":"B2B Media Group EMEA","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.b2bmg.com/en/data-privacy/","cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"486":{"id":486,"name":"Madington","purposes":[1],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://delivered-by-madington.com/dat-privacy-policy/","cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"468":{"id":468,"name":"NeuStar, Inc.","purposes":[1],"legIntPurposes":[3,7,8,9],"flexiblePurposes":[7,8,9],"specialPurposes":[],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.home.neustar/privacy","cookieMaxAgeSeconds":315360000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"458":{"id":458,"name":"AdColony, Inc.","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,9,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.adcolony.com/privacy-policy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"293":{"id":293,"name":"SpringServe, LLC","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[3],"specialFeatures":[2],"policyUrl":"https://springserve.com/privacy-policy/","cookieMaxAgeSeconds":31449600,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"484":{"id":484,"name":"STRIATUM SAS","purposes":[],"legIntPurposes":[7,10],"flexiblePurposes":[],"specialPurposes":[1],"features":[],"specialFeatures":[],"policyUrl":"https://adledge.com/data-privacy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"493":{"id":493,"name":"Carbon (AI) Limited","purposes":[1,2,3,4,5,6,7,8,10],"legIntPurposes":[],"flexiblePurposes":[2,7,8],"specialPurposes":[2],"features":[1,2,3],"specialFeatures":[2],"policyUrl":"https://carbonrmp.com/privacy.html","cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"495":{"id":495,"name":"Arcspire Limited","purposes":[2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://public.arcspire.io/privacy.pdf","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"496":{"id":496,"name":"Automattic Ads","purposes":[1,2,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://wordads.co/privacy-info/","cookieMaxAgeSeconds":63072000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"424":{"id":424,"name":"KUPONA GmbH","purposes":[4,7],"legIntPurposes":[],"flexiblePurposes":[4],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.kupona.de/dsgvo/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"408":{"id":408,"name":"Fidelity Media","purposes":[1,2,7],"legIntPurposes":[],"flexiblePurposes":[2,7],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://fidelity-media.com/privacy-policy/","deletedDate":"2020-08-25T00:00:00Z","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"473":{"id":473,"name":"Sub2 Technologies Ltd","purposes":[1,2,3,4,5,6,7,8,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,10],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.sub2tech.com/privacy-policy/","cookieMaxAgeSeconds":63072000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"467":{"id":467,"name":"Haensel AMS GmbH","purposes":[1],"legIntPurposes":[7],"flexiblePurposes":[7],"specialPurposes":[],"features":[2,3],"specialFeatures":[],"policyUrl":"https://haensel-ams.com/data-privacy/","cookieMaxAgeSeconds":63072000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"488":{"id":488,"name":"Opinary GmbH","purposes":[1],"legIntPurposes":[2,7,8,10],"flexiblePurposes":[2,7,8,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://opinary.com/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"490":{"id":490,"name":"PLAYGROUND XYZ EMEA LTD","purposes":[1,2,3,4,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7],"specialPurposes":[1],"features":[1],"specialFeatures":[],"policyUrl":"https://playground.xyz/privacy","cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"491":{"id":491,"name":"ShinyStat S.p.a.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.shinystat.com/it/informativa_privacy_generale.html","cookieMaxAgeSeconds":15552000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"502":{"id":502,"name":"NEXD","purposes":[7,10],"legIntPurposes":[9],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://nexd.com/privacy-policy","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":60,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"508":{"id":508,"name":"Lucid Holdings, LLC","purposes":[1,7,8,9],"legIntPurposes":[],"flexiblePurposes":[7,8,9],"specialPurposes":[1],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://luc.id/privacy-policy/","cookieMaxAgeSeconds":63072000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"512":{"id":512,"name":"Verve Group Europe GmbH","purposes":[1,2,3,4,7,8,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[1,2],"policyUrl":"https://pubnative.net/privacy-notice/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"471":{"id":471,"name":"Flexoffers.com, LLC","purposes":[1,2,7,8],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[],"policyUrl":"https://www.flexoffers.com/privacy","cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"516":{"id":516,"name":"Pexi B.V.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://pexi.nl/privacy-policy/","cookieMaxAgeSeconds":86400,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"507":{"id":507,"name":"AdsWizz Inc.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.adswizz.com/our-privacy-policy/","cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"482":{"id":482,"name":"UberMedia, Inc.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1],"specialFeatures":[1],"policyUrl":"https://ubermedia.com/summary-of-privacy-policy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"505":{"id":505,"name":"Shopalyst Inc","purposes":[1,7,8],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[1],"policyUrl":"https://www.shortlyst.com/eu/privacy_terms.html","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"517":{"id":517,"name":"SunMedia ","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.sunmedia.tv/en/cookies","cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"511":{"id":511,"name":"Admixer EU GmbH","purposes":[1,2,3,4,5,7,9],"legIntPurposes":[10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[1],"policyUrl":"https://admixer.com/privacy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":604800,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"479":{"id":479,"name":"INFINIA MOBILE S.L.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.infiniamobile.com/privacy_policy","cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"509":{"id":509,"name":"One Tech Group GmbH","purposes":[1,2,7],"legIntPurposes":[],"flexiblePurposes":[2,7],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://onetech.group/en/privacy-policy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"521":{"id":521,"name":"netzeffekt GmbH","purposes":[1,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[1],"policyUrl":"https://www.netzeffekt.de/en/imprint","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"520":{"id":520,"name":"ChannelSight ","purposes":[1],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.channelsight.com/privacypolicy/","deletedDate":"2020-10-01T00:00:00Z","cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"524":{"id":524,"name":"The Ozone Project Limited","purposes":[1,2,3,4,5,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2,3],"specialFeatures":[1],"policyUrl":"https://ozoneproject.com/privacy-policy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"528":{"id":528,"name":"Kayzen","purposes":[1,2,3,4,9,10],"legIntPurposes":[7],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1],"specialFeatures":[],"policyUrl":"https://kayzen.io/data-privacy-policy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"527":{"id":527,"name":"Jampp LTD","purposes":[1,2,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://jampp.com/privacy.html","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"506":{"id":506,"name":"Salesforce.com, Inc.","purposes":[1,3,5,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.salesforce.com/company/privacy/","cookieMaxAgeSeconds":15552000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"535":{"id":535,"name":"INNITY","purposes":[1,2,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.innity.com/privacy-policy.php","cookieMaxAgeSeconds":62208000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"530":{"id":530,"name":"Near Pte Ltd","purposes":[1,2,3,4,5,6,7,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,9,10],"specialPurposes":[],"features":[1,2],"specialFeatures":[1],"policyUrl":"https://near.co/privacy","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"539":{"id":539,"name":"AdDefend GmbH","purposes":[1],"legIntPurposes":[2,3,4,7],"flexiblePurposes":[2,3,4,7],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.addefend.com/en/privacy-policy/","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"501":{"id":501,"name":"Alliance Gravity Data Media","purposes":[1,2,3,4,7,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.alliancegravity.com/politiquedeprotectiondesdonneespersonnelles","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"519":{"id":519,"name":"Newsroom AI Ltd","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://studio.nws.ai/privacy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"531":{"id":531,"name":"Smartclip Hispania SL","purposes":[1,2,3,4,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://rgpd-smartclip.com/","cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false,"deviceStorageDisclosureUrl":"https://cdn.smartclip-services.com/.well-known/deviceStorage.json"},"536":{"id":536,"name":"GlobalWebIndex","purposes":[1,7,8,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://legal.trendstream.net/non-panellist_privacy_policy","cookieMaxAgeSeconds":31622400,"usesCookies":true,"cookieRefresh":true,"usesNonCookieAccess":false},"544":{"id":544,"name":"Kochava Inc.","purposes":[7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.kochava.com/support-privacy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"543":{"id":543,"name":"PaperG, Inc. dba Thunder Industries","purposes":[1,3,4,5,6],"legIntPurposes":[2,7,8],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[1],"policyUrl":"https://www.makethunder.com/privacy","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"334":{"id":334,"name":"Cydersoft","purposes":[],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,3],"specialFeatures":[1,2],"policyUrl":"https://www.videmob.com/privacy.html","deletedDate":"2020-11-30T00:00:00Z","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"547":{"id":547,"name":"Reach Media GmbH","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.videoreach.com/about/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"546":{"id":546,"name":"Smart Traffik","purposes":[1],"legIntPurposes":[7],"flexiblePurposes":[7],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://okube-attribution.com/politique-de-confidentialite/","cookieMaxAgeSeconds":34187400,"usesCookies":true,"cookieRefresh":true,"usesNonCookieAccess":true},"541":{"id":541,"name":"DeepIntent, Inc.","purposes":[1],"legIntPurposes":[2,3,4,7,9,10],"flexiblePurposes":[2,3,4,7,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.deepintent.com/platform-privacy-policy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":63113904,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"545":{"id":545,"name":"Reignn Platform Ltd","purposes":[1,2,3,4,7,8,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[2],"policyUrl":"https://reignn.com/user-privacy-policy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"439":{"id":439,"name":"Bit Q Holdings Limited","purposes":[1,7,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[1],"policyUrl":"https://www.rippll.com/privacy","deletedDate":"2020-12-21T00:00:00Z","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"553":{"id":553,"name":"Adhese","purposes":[1,2,3,4,7,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[1],"policyUrl":"https://adhese.com/privacy-and-cookie-policy","cookieMaxAgeSeconds":30,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"556":{"id":556,"name":"adhood.com","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[1],"policyUrl":"https://v3.adhood.com/en/site/politikavekurallar/gizlilik.php?lang=en","cookieMaxAgeSeconds":63072000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"550":{"id":550,"name":"Happydemics","purposes":[1,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.iubenda.com/privacy-policy/93308573/full-legal","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"554":{"id":554,"name":"RMSi Radio Marketing Service interactive GmbH","purposes":[1],"legIntPurposes":[3,7,9],"flexiblePurposes":[3,7,9],"specialPurposes":[1],"features":[1],"specialFeatures":[1,2],"policyUrl":"https://www.rms.de/datenschutz/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":true},"498":{"id":498,"name":"Mediakeys Platform","purposes":[1,6,10],"legIntPurposes":[2,3,4,7,9],"flexiblePurposes":[2,3,4,9],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://drbanner.com/privacypolicy_en/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"565":{"id":565,"name":"Adobe Audience Manager, Adobe Experience Platform","purposes":[1,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[],"specialFeatures":[],"policyUrl":"https://www.adobe.com/privacy/policy.html","cookieMaxAgeSeconds":15552000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"571":{"id":571,"name":"ViewPay","purposes":[1,2,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,4,5,6,7,8,9,10],"specialPurposes":[],"features":[3],"specialFeatures":[],"policyUrl":"https://viewpay.tv/mentions-legales/","cookieMaxAgeSeconds":15552000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"568":{"id":568,"name":"Next Media SRL","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://next14.com/media/privacy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"570":{"id":570,"name":"Czech Publisher Exchange z.s.p.o.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.cpex.cz/pro-uzivatele/ochrana-soukromi/","cookieMaxAgeSeconds":31556952,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"559":{"id":559,"name":"Otto (GmbH & Co KG)","purposes":[1],"legIntPurposes":[2,3,4,7,9,10],"flexiblePurposes":[2,3,4,7,9,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.otto.de/shoppages/service/datenschutz","cookieMaxAgeSeconds":315446400,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"569":{"id":569,"name":"Kairos Fire","purposes":[1,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[7,8,9,10],"specialPurposes":[],"features":[1],"specialFeatures":[1],"policyUrl":"https://www.kairosfire.com/privacy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"577":{"id":577,"name":"Neustar on behalf of The Procter & Gamble Company","purposes":[1,2,3,4,6,9],"legIntPurposes":[5,7,8],"flexiblePurposes":[2,3,4,5,6,7,8,9],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.pg.com/privacy/english/privacy_statement.shtml","cookieMaxAgeSeconds":34164000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"590":{"id":590,"name":"Sourcepoint Technologies, Inc. (non-CMP)","purposes":[1],"legIntPurposes":[6,8,10],"flexiblePurposes":[6,8,10],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.sourcepoint.com/privacy-policy","cookieMaxAgeSeconds":34128000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"587":{"id":587,"name":"Localsensor B.V.","purposes":[1,2,3,4,7,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.localsensor.com/privacy.html","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"578":{"id":578,"name":"MairDumont Netletix GmbH&CoKG","purposes":[1],"legIntPurposes":[2,3,4,7,8],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.mairdumont-netletix.com/wer-wir-sind/datenschutzerklaerung/","deletedDate":"2021-02-03T00:00:00Z","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"580":{"id":580,"name":"Goldbach Group AG","purposes":[1],"legIntPurposes":[2,3,4,7,8,9,10],"flexiblePurposes":[2,3,4,7,8,9,10],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[1],"policyUrl":"https://goldbach.com/ch/de/datenschutz","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"593":{"id":593,"name":"Programatica de publicidad S.L.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://datmean.com/politica-privacidad/","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"574":{"id":574,"name":"Realeyes OU","purposes":[1,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1],"specialFeatures":[],"policyUrl":"https://realview.realeyesit.com/privacy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"581":{"id":581,"name":"Mobilewalla, Inc.","purposes":[],"legIntPurposes":[2,3,4,5,6,7,8,9,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.mobilewalla.com/business-services-privacy-policy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"598":{"id":598,"name":"audio content & control GmbH","purposes":[1],"legIntPurposes":[2,7,9],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://www.audio-cc.com/audiocc_privacy_policy.pdf","cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"596":{"id":596,"name":"InsurAds Technologies SA.","purposes":[1,2,3,4,5,6,9,10],"legIntPurposes":[7,8],"flexiblePurposes":[7,8],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://www.insurads.com/privacy.html","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"549":{"id":549,"name":"Bandsintown Amplified LLC","purposes":[2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://corp.bandsintown.com/privacy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"597":{"id":597,"name":"Better Banners A/S","purposes":[1,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://betterbanners.com/en/privacy","cookieMaxAgeSeconds":600000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"584":{"id":584,"name":"Dynamic 1001 GmbH","purposes":[1,7,10],"legIntPurposes":[],"flexiblePurposes":[7,10],"specialPurposes":[2],"features":[3],"specialFeatures":[2],"policyUrl":"https://dynamic-tracking.com/Datenschutz.aspx","cookieMaxAgeSeconds":63072000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"601":{"id":601,"name":"WebAds B.V","purposes":[1,2],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://privacy.webads.eu/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"599":{"id":599,"name":"Maximus Live LLC","purposes":[],"legIntPurposes":[7,8],"flexiblePurposes":[],"specialPurposes":[1],"features":[],"specialFeatures":[1],"policyUrl":"https://maximusx.com/privacy-policy/","cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"606":{"id":606,"name":"Impactify ","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://impactify.io/privacy-policy/","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"602":{"id":602,"name":"Online Solution","purposes":[1,2,3,4,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,8,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://adsafety.net/privacy.html","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"612":{"id":612,"name":"Adnami Aps","purposes":[2],"legIntPurposes":[7],"flexiblePurposes":[2,7],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.adnami.io/privacy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"591":{"id":591,"name":"Consumable, Inc.","purposes":[1,2,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://consumable.com/privacy-policy.html","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"614":{"id":614,"name":"Market Resource Partners LLC","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[2],"policyUrl":"https://www.mrpfd.com/privacy-policy/","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"615":{"id":615,"name":"Adsolutions BV","purposes":[1,2],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.adsolutions.com/privacy-policy/","cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"607":{"id":607,"name":"ucfunnel Co., Ltd.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[1],"policyUrl":"https://www.ucfunnel.com/privacy-policy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"609":{"id":609,"name":"Predicio","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.predic.io/privacy","deletedDate":"2021-05-21T00:00:00Z","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"617":{"id":617,"name":"Onfocus (Adagio)","purposes":[1,2,7,8],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[1],"policyUrl":"https://adagio.io/privacy","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"620":{"id":620,"name":"Blue","purposes":[1],"legIntPurposes":[2,3,4,5,6,7,8,9,10],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[1],"policyUrl":"https://www.getblue.io/privacy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"610":{"id":610,"name":"Azerion Holding B.V.","purposes":[1,3,4,9],"legIntPurposes":[2,5,6,7,8,10],"flexiblePurposes":[2,5,6],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[1],"policyUrl":"https://azerion.com/business/privacy.html","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"621":{"id":621,"name":"Seznam.cz, a.s.","purposes":[1,3,4,5,6],"legIntPurposes":[2,7,8,9,10],"flexiblePurposes":[],"specialPurposes":[],"features":[2,3],"specialFeatures":[1,2],"policyUrl":"https://www.seznam.cz/ochranaudaju","cookieMaxAgeSeconds":31556926,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"624":{"id":624,"name":"Norstat AS","purposes":[1,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.norstatpanel.com/en/data-protection","cookieMaxAgeSeconds":63113904,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"95":{"id":95,"name":"Lotame Solutions, inc","purposes":[1,3,5],"legIntPurposes":[7,8,9,10],"flexiblePurposes":[7,8,9,10],"specialPurposes":[],"features":[2,3],"specialFeatures":[],"policyUrl":"https://www.lotame.com/about-lotame/privacy/lotame-corporate-websites-privacy-policy/","cookieMaxAgeSeconds":23652000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"618":{"id":618,"name":"BEINTOO SPA","purposes":[1,2,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1],"specialFeatures":[1],"policyUrl":"https://www.beintoo.com/privacy-cookie-policy/","cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"625":{"id":625,"name":"BILENDI SA","purposes":[1,6,7,8,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1],"specialFeatures":[],"policyUrl":"https://www.maximiles.com/privacy-policy","cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"628":{"id":628,"name":": Tappx","purposes":[1,2,4,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2],"specialFeatures":[1,2],"policyUrl":"https://www.tappx.com/en/privacy-policy/","cookieMaxAgeSeconds":10800,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"630":{"id":630,"name":"Contact Impact GmbH","purposes":[1],"legIntPurposes":[2,3,4,7,10],"flexiblePurposes":[2,3,4,7,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://contactimpact.de/privacy","cookieMaxAgeSeconds":43200000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"626":{"id":626,"name":"Hivestack Inc.","purposes":[1,7,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[1],"policyUrl":"https://hivestack.com/privacy-policy","cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"631":{"id":631,"name":"Relay42 Netherlands B.V.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://relay42.com/privacy","cookieMaxAgeSeconds":63113851,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"638":{"id":638,"name":"Passendo Aps","purposes":[1,2,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://passendo.com/users-privacy-policy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"644":{"id":644,"name":"Gamoshi Ltd","purposes":[1,2,3,4,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,8,9,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.gamoshi.com/privacy-policy","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"639":{"id":639,"name":"Smile Wanted Group","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[2],"policyUrl":"https://www.smilewanted.com/privacy.php","cookieMaxAgeSeconds":7884000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"579":{"id":579,"name":"Ve Global UK Limited","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.optomaton.com/privacy.html","cookieMaxAgeSeconds":31556952,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"645":{"id":645,"name":"Noster Finance S.L.","purposes":[1,2,3,4,5,6,9,10],"legIntPurposes":[7,8],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.finect.com/terminos-legales/politica-de-cookies","cookieMaxAgeSeconds":63115200,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"653":{"id":653,"name":"Smartme Analytics","purposes":[7,8,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,3],"specialFeatures":[],"policyUrl":"https://smartmeapp.com/info/smartme/aviso_legal.php","deletedDate":"2020-07-03T00:00:00Z","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"613":{"id":613,"name":"Adserve.zone / Artworx AS","purposes":[1],"legIntPurposes":[2,7,10],"flexiblePurposes":[2],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://adserve.zone/adserveprivacypolicy.html","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"573":{"id":573,"name":"Dailymotion SA","purposes":[1,3,4],"legIntPurposes":[2,5,6,7,8,9,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2],"specialFeatures":[],"policyUrl":"https://www.dailymotion.com/legal/privacy","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":33696000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"652":{"id":652,"name":"Skaze","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.skaze.fr/rgpd/","cookieMaxAgeSeconds":31557600,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"646":{"id":646,"name":"Notify","purposes":[9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1],"specialFeatures":[],"policyUrl":"https://notify-group.com/en/mentions-legales/","cookieMaxAgeSeconds":34164060,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"648":{"id":648,"name":"TrueData Solutions, Inc.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.truedata.co/privacy-policy/","deletedDate":"2020-09-02T00:00:00Z","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"647":{"id":647,"name":"Axel Springer Teaser Ad GmbH","purposes":[1,3,4],"legIntPurposes":[2,7,10],"flexiblePurposes":[2,7,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.adup-tech.com/privacy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"654":{"id":654,"name":"GRAPHINIUM","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.graphinium.com/privacy/","cookieMaxAgeSeconds":25920000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"659":{"id":659,"name":"Research and Analysis of Media in Sweden AB","purposes":[1],"legIntPurposes":[7,8,9],"flexiblePurposes":[],"specialPurposes":[1],"features":[2],"specialFeatures":[2],"policyUrl":"https://www2.rampanel.com/privacy-policy/","cookieMaxAgeSeconds":32000000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"656":{"id":656,"name":"Content Ignite","purposes":[1,2,3,4,5,6,9],"legIntPurposes":[7,8,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.contentignite.com/privacy-policy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"657":{"id":657,"name":"GP One GmbH","purposes":[1],"legIntPurposes":[2,3,4],"flexiblePurposes":[2,3,4],"specialPurposes":[1,2],"features":[],"specialFeatures":[1,2],"policyUrl":"https://www.gsi-one.org/de/privacy-policy.html","cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"655":{"id":655,"name":"Sportradar AG","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,7,9],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.sportradar.com/about-us/privacy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"662":{"id":662,"name":"SoundCast","purposes":[1,2,3,4,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[1],"policyUrl":"https://soundcast.fm/en/data-privacy","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"665":{"id":665,"name":"Digital East GmbH","purposes":[2,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://www.digitaleast.mobi/en/legal/privacy-policy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"650":{"id":650,"name":"Telefonica Investigaci\u00f3n y Desarrollo S.A.U","purposes":[1,2,3,4,5,6,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://www.cognitivemarketing.tid.es/","cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"666":{"id":666,"name":"BeOp","purposes":[1,4],"legIntPurposes":[2,7,8],"flexiblePurposes":[2,7,8],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://beop.io/privacy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false,"deviceStorageDisclosureUrl":"https://beop.io/deviceStorage.json"},"663":{"id":663,"name":"Mobsuccess","purposes":[1,2,3,4,7,9],"legIntPurposes":[],"flexiblePurposes":[2,7],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[1],"policyUrl":"https://www.mobsuccess.com/en/privacy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false,"deviceStorageDisclosureUrl":"https://www.mobsuccess.com/deviceStorage.json"},"658":{"id":658,"name":"BLIINK SAS","purposes":[1,2,3,4,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,8,9,10],"specialPurposes":[2],"features":[],"specialFeatures":[1],"policyUrl":"https://bliink.io/privacy-policy","cookieMaxAgeSeconds":34186669,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"667":{"id":667,"name":"Liftoff Mobile, Inc.","purposes":[1,2,3,4,6,7,8,10],"legIntPurposes":[5],"flexiblePurposes":[2,3,4,5,6,7,8,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://liftoff.io/privacy-policy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"668":{"id":668,"name":"WhatRocks Inc. ","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2],"specialFeatures":[1,2],"policyUrl":"https://www.whatrocks.co/en/privacy-policy ","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"670":{"id":670,"name":"Timehop, Inc.","purposes":[1,2,4,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[],"policyUrl":"https://www.adsbynimbus.com/privacy-policy","cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"674":{"id":674,"name":"Duration Media, LLC.","purposes":[1,2,3,4,5,6,7,8,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.durationmedia.net/privacy-policy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"675":{"id":675,"name":"Instreamatic inc.","purposes":[2,3,4,7,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[3],"specialFeatures":[],"policyUrl":"https://instreamatic.com/privacy-policy/","deletedDate":"2020-10-20T00:00:00Z","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"676":{"id":676,"name":"BusinessClick","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[1],"policyUrl":"https://www.businessclick.com/documents/regulamin_bc_2020.pdf","cookieMaxAgeSeconds":94670777,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"672":{"id":672,"name":"Cedato Technologies Ltd","purposes":[1,2],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.cedato.com/privacy-policy/","cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"664":{"id":664,"name":"adMarketplace, Inc.","purposes":[1,2,3,4],"legIntPurposes":[7,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.admarketplace.com/privacy-policy/","cookieMaxAgeSeconds":5270400,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"671":{"id":671,"name":"Mediaforce LTD","purposes":[1,3,4,5,6,7,8,9],"legIntPurposes":[2,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,3],"specialFeatures":[],"policyUrl":"https://casino.mindthebet.co.uk/themes/mindthebetv2-casino/privacy.php","cookieMaxAgeSeconds":63072000,"usesCookies":true,"cookieRefresh":true,"usesNonCookieAccess":true},"561":{"id":561,"name":"AuDigent","purposes":[1,2,3,4,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2,3],"specialFeatures":[],"policyUrl":"https://audigent.com/platform-privacy-policy","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"682":{"id":682,"name":"Radio Net Media Limited","purposes":[1,2,3,4],"legIntPurposes":[7],"flexiblePurposes":[],"specialPurposes":[2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.adtonos.com/service-privacy-policy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"684":{"id":684,"name":"Blue Billywig BV","purposes":[],"legIntPurposes":[7],"flexiblePurposes":[7],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.bluebillywig.com/privacy-statement/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"686":{"id":686,"name":"The MediaGrid Inc.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.themediagrid.com/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"685":{"id":685,"name":"Arkeero","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://arkeero.com/privacy-2/","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"687":{"id":687,"name":"MISSENA","purposes":[1,2,3,4,5,6,7,8],"legIntPurposes":[],"flexiblePurposes":[2,7],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://missena.com/confidentialite/","cookieMaxAgeSeconds":34128000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"690":{"id":690,"name":"Go.pl sp. z o.o.","purposes":[1,2,3,4],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[1],"policyUrl":"https://go.pl/polityka-prywatnosci/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"691":{"id":691,"name":"Lifesight Pte. Ltd.","purposes":[2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.lifesight.io/privacy-policy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"697":{"id":697,"name":"ADWAYS SAS","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.adways.com/confidentialite/?lang=en","cookieMaxAgeSeconds":31556926,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"699":{"id":699,"name":"HyperTV Inc.","purposes":[1,2,4,9],"legIntPurposes":[7,10],"flexiblePurposes":[],"specialPurposes":[2],"features":[1],"specialFeatures":[],"policyUrl":"https://www.hypertvx.com/privacy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"703":{"id":703,"name":"MindTake Research GmbH","purposes":[1,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[2,3],"specialFeatures":[],"policyUrl":"https://www.mindtake.com/en/reppublika-privacy-policy","cookieMaxAgeSeconds":8035200,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"706":{"id":706,"name":"VRTCAL Markets Inc","purposes":[],"legIntPurposes":[2],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://vrtcal.com/docs/PrivacyPolicy-Advertising.pdf","cookieMaxAgeSeconds":86400,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"681":{"id":681,"name":"MyTraffic","purposes":[1,9],"legIntPurposes":[],"flexiblePurposes":[9],"specialPurposes":[],"features":[],"specialFeatures":[1],"policyUrl":"https://www.mytraffic.io/en/privacy","cookieMaxAgeSeconds":9198000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"649":{"id":649,"name":"adality GmbH","purposes":[3,4],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1],"specialFeatures":[],"policyUrl":"https://adality.de/en/privacy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"711":{"id":711,"name":"SITU8ED SA","purposes":[1,3,4,5,6,7,8,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[1],"policyUrl":"https://www.situ8ed.com/privacy-policy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"712":{"id":712,"name":"Inspired Mobile Limited","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://byinspired.com/privacypolicy.pdf","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"688":{"id":688,"name":"Effinity","purposes":[],"legIntPurposes":[],"flexiblePurposes":[7],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.effiliation.com/politique-de-confidentialite/","deletedDate":"2020-11-16T00:00:00Z","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"702":{"id":702,"name":"Kwanko","purposes":[1,2,7,8],"legIntPurposes":[],"flexiblePurposes":[2,7,8],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.kwanko.com/fr/rgpd/","cookieMaxAgeSeconds":5184000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"715":{"id":715,"name":"BidBerry SRL","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[],"policyUrl":"https://www.bidberrymedia.com/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"714":{"id":714,"name":"Upwave Inc.","purposes":[1],"legIntPurposes":[7,9],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[],"policyUrl":"https://www.upwave.com/privacy-policy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"713":{"id":713,"name":"Dataseat Ltd","purposes":[1,2,3,4,5,6,7,8,9],"legIntPurposes":[],"flexiblePurposes":[2,7,8],"specialPurposes":[],"features":[3],"specialFeatures":[],"policyUrl":"https://dataseat.com/privacy-policy","cookieMaxAgeSeconds":86400,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"716":{"id":716,"name":"OnAudience Ltd","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.onaudience.com/internet-advertising-privacy-policy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"694":{"id":694,"name":"Snapupp Technologies SL","purposes":[2,3,4,5,6,9],"legIntPurposes":[7,8,10],"flexiblePurposes":[10],"specialPurposes":[2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.enterprise.noddus.com/privacy-policy","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"717":{"id":717,"name":"Audience Network","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[],"policyUrl":"https://www.en.audiencenetwork.pl/internet-advertising-privacy-policy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"718":{"id":718,"name":"XChange by SFBX\u00ae","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://appconsent.io/en/privacy-policy","cookieMaxAgeSeconds":12,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"683":{"id":683,"name":"Cookie Market LTD","purposes":[1,3,4,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2,3],"specialFeatures":[1],"policyUrl":"https://cookie.market/privacyPolicy.php","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"720":{"id":720,"name":"AAX LLC","purposes":[1,3,4],"legIntPurposes":[2,7,10],"flexiblePurposes":[2,7,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://aax.media/privacy/","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":189302400,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"678":{"id":678,"name":"Axonix LTD","purposes":[2],"legIntPurposes":[7,10],"flexiblePurposes":[2],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://axonix.com/privacy-cookie-policy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"719":{"id":719,"name":"Online Advertising Network Sp. z o.o.","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[1],"policyUrl":"https://www.oan.pl/en/privacy-policy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"707":{"id":707,"name":"Dentsu Aegis Network Italia SpA","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.dentsuaegisnetwork.com/it/it/policies/info-cookie","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"721":{"id":721,"name":"Beaconspark Ltd","purposes":[1,2,3,4,5,7],"legIntPurposes":[6,8],"flexiblePurposes":[2,3,4,5,6,7,8],"specialPurposes":[1,2],"features":[1],"specialFeatures":[],"policyUrl":"https://www.engageya.com/privacy","cookieMaxAgeSeconds":315360000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"724":{"id":724,"name":"Between Exchange","purposes":[1],"legIntPurposes":[7],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://en.betweenx.com/pdata.pdf","cookieMaxAgeSeconds":315360000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"726":{"id":726,"name":"YouGov","purposes":[1,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://yougov.co.uk/about/terms-combined/#/privacy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"728":{"id":728,"name":"Appier PTE Ltd","purposes":[1,3,4],"legIntPurposes":[2,5,6,7,8,9,10],"flexiblePurposes":[2,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.appier.com/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":true,"usesNonCookieAccess":true},"729":{"id":729,"name":"Cavai AS & UK ","purposes":[],"legIntPurposes":[7,8],"flexiblePurposes":[7,8],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://cav.ai/privacy-policy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"730":{"id":730,"name":"INFOnline GmbH","purposes":[],"legIntPurposes":[8],"flexiblePurposes":[8],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.infonline.de/en/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"722":{"id":722,"name":"agof - daily campaign facts","purposes":[1,7,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[],"specialFeatures":[],"policyUrl":"https://www.agof.de/datenschutz/","deletedDate":"2020-09-14T00:00:00Z","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"723":{"id":723,"name":"Adzymic Pte Ltd","purposes":[1,2,3,4,7,8],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2],"specialFeatures":[],"policyUrl":"https://www.adzymic.co/privacy","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"725":{"id":725,"name":"Pubfinity LLC","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[2],"policyUrl":"https://pubfinity.com/privacy-policy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":315360000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"733":{"id":733,"name":"Anzu Virtual Reality LTD","purposes":[1,2,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[1],"specialFeatures":[1],"policyUrl":"https://anzu.io/privacy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"737":{"id":737,"name":"Monet Engine Inc","purposes":[1,2,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://appmonet.com/privacy-policy/","cookieMaxAgeSeconds":2678400,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"740":{"id":740,"name":"6Sense Insights, Inc.","purposes":[1],"legIntPurposes":[2,3,4,5,7,8,10],"flexiblePurposes":[2,3,4,5,7,8,10],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://6sense.com/privacy-policy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":63072000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"744":{"id":744,"name":"Vidazoo Ltd","purposes":[1,3,4,5,6],"legIntPurposes":[2,7,8,9,10],"flexiblePurposes":[3,4,5,6],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://vidazoo.gitbook.io/vidazoo-legal/privacy-policy","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":2600000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"731":{"id":731,"name":"GeistM Technologies LTD","purposes":[2,4,6,7,8],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2],"specialFeatures":[],"policyUrl":"https://geistm.com/en/legal/privacy","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"741":{"id":741,"name":"Brand Advance Limited","purposes":[7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1,2],"policyUrl":"https://www.wearebrandadvance.com/website-privacy-policy","deletedDate":"2021-03-01T00:00:00Z","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"735":{"id":735,"name":"Deutsche Post AG","purposes":[1,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1],"specialFeatures":[],"policyUrl":"https://www.deutschepost.de/de/c/consentric/datenschutz.html","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":true,"usesNonCookieAccess":false},"734":{"id":734,"name":"Cint AB","purposes":[1,7,8,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1],"specialFeatures":[],"policyUrl":"https://www.cint.com/participant-privacy-notice","cookieMaxAgeSeconds":63072000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"709":{"id":709,"name":"NC Audience Exchange, LLC (NewsIQ)","purposes":[1,3,4,5],"legIntPurposes":[2,7,8,9,10],"flexiblePurposes":[2,3,4,5,7,8,9,10],"specialPurposes":[2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.ncaudienceexchange.com/privacy/","cookieMaxAgeSeconds":63072000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"739":{"id":739,"name":"Blingby LLC","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[1],"policyUrl":"https://blingby.com/privacy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"727":{"id":727,"name":"Pinpoll GmbH","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1],"specialFeatures":[],"policyUrl":"https://www.pinpoll.com/#data_protection_declaration","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"732":{"id":732,"name":"Performax.cz, s.r.o.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2],"specialFeatures":[],"policyUrl":"https://reg.tiscali.cz/privacy-policy","cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"736":{"id":736,"name":"BidMachine Inc.","purposes":[1,2,3,4,5,6],"legIntPurposes":[7,8,10],"flexiblePurposes":[7,8,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://explorestack.com/privacy-policy/","cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"738":{"id":738,"name":"adbility media GmbH","purposes":[2,3,4,9],"legIntPurposes":[7],"flexiblePurposes":[2,3,4,9],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.adbility-media.com/datenschutzerklaerung/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"742":{"id":742,"name":"Audiencerate LTD","purposes":[1,2,3,5,6],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.audiencerate.com/privacy/","cookieMaxAgeSeconds":1296000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"743":{"id":743,"name":"MOVIads Sp. z o.o. Sp. k.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2,3],"specialFeatures":[1],"policyUrl":"https://moviads.pl/polityka-prywatnosci/","deletedDate":"2021-03-22T00:00:00Z","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"745":{"id":745,"name":"Justtag Sp. z o.o.","purposes":[1,3,4,9],"legIntPurposes":[7],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.justtag.com/pdf/PRIVACY_POLICY_Koalametrics_english.pdf","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"746":{"id":746,"name":"Adxperience SAS","purposes":[4],"legIntPurposes":[2,7],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://adxperience.com/privacy-policy/","cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"747":{"id":747,"name":"Kairion GmbH","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[],"features":[2,3],"specialFeatures":[1,2],"policyUrl":"https://kairion.de/datenschutzbestimmungen/","cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"748":{"id":748,"name":"AUDIOMOB LTD","purposes":[1,2,3,4,7,8,9],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,8,9],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[1],"policyUrl":"https://www.audiomob.io/privacy","cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"749":{"id":749,"name":"Good-Loop Ltd","purposes":[1,3,4,5,6],"legIntPurposes":[2,7,8,9,10],"flexiblePurposes":[7,8,9,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://doc.good-loop.com/policy/privacy-policy.html","cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"750":{"id":750,"name":"THE NEWCO S.R.L.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.thenewco.it/privacy_policy_servizi_prodotti.html","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"751":{"id":751,"name":"Kiosked Ltd","purposes":[],"legIntPurposes":[2,7],"flexiblePurposes":[2,7],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://kiosked.com/privacy-policy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"753":{"id":753,"name":"ScaleMonk Inc.","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,9,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.scalemonk.com/privacy-policy/index.html","cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"754":{"id":754,"name":"DistroScale, Inc.","purposes":[1],"legIntPurposes":[2,6,8,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.distroscale.com/privacy-policy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":63072000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"756":{"id":756,"name":"Fandom, Inc.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.fandom.com/privacy-policy","cookieMaxAgeSeconds":15780000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"757":{"id":757,"name":"UAB Meazy","purposes":[1,2,3,4,5,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://meazy.co/privacy-policy","deletedDate":"2021-05-21T00:00:00Z","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"758":{"id":758,"name":"GfK SE","purposes":[1,7,8,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://help.sensic.net/privacypolicy_en.html","cookieMaxAgeSeconds":63072000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"759":{"id":759,"name":"RevJet","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1],"specialFeatures":[],"policyUrl":"https://www.revjet.com/privacy","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":31449000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"760":{"id":760,"name":"VEXPRO TECHNOLOGIES LTD","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[2],"policyUrl":"https://onedash.com/privacy-policy.html","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"761":{"id":761,"name":"Digiseg ApS","purposes":[1,3,5,7,8,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1],"specialFeatures":[],"policyUrl":"https://digiseg.io/privacy-center/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"762":{"id":762,"name":"Protected Media LTD","purposes":[1],"legIntPurposes":[3,5,7,8,9,10],"flexiblePurposes":[],"specialPurposes":[1],"features":[3],"specialFeatures":[],"policyUrl":"https://www.protected.media/privacy-policy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"763":{"id":763,"name":"Delidatax SL","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.delidatax.net/privacy.htm","cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"764":{"id":764,"name":"Lucidity","purposes":[1,2,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://golucidity.com/privacy-policy/","deletedDate":"2021-06-10T00:00:00Z","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"765":{"id":765,"name":"Grabit Interactive Media Inc dba KERV Interctive","purposes":[2,3,4,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2],"specialFeatures":[],"policyUrl":"https://kervit.com/privacy-policy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"766":{"id":766,"name":"ADCELL | Firstlead GmbH","purposes":[1,2],"legIntPurposes":[],"flexiblePurposes":[2],"specialPurposes":[],"features":[],"specialFeatures":[2],"policyUrl":"https://www.adcell.de/agb#sector_6","cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"767":{"id":767,"name":"Clinch Labs LTD","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://clinch.co/privacy-policy","cookieMaxAgeSeconds":63072000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"768":{"id":768,"name":"Global Media & Entertainment Limited","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://global.com/privacy-policy/","cookieMaxAgeSeconds":46657000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"769":{"id":769,"name":"MEDIAMETRIE","purposes":[1,8],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.mediametrie.fr/fr/gestion-des-cookies","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"770":{"id":770,"name":"MARKETPERF CORP","purposes":[1],"legIntPurposes":[2,3,4,5,6,7,8,10],"flexiblePurposes":[2,3,4,5,6],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.marketperf.com/assets/images/app/marketperf/pdf/privacy-policy.pdf","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"771":{"id":771,"name":"bam! interactive marketing GmbH ","purposes":[1,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://bam-interactive.de/privacy-policy/","cookieMaxAgeSeconds":86400,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"772":{"id":772,"name":"Oracle Data Cloud - Moat","purposes":[],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[],"specialFeatures":[],"policyUrl":"https://www.oracle.com/legal/privacy/services-privacy-policy.html","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"773":{"id":773,"name":"360e-com Sp. z o.o.","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[1],"policyUrl":"https://www.clickonometrics.com/optout/","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"774":{"id":774,"name":"Wagawin GmbH","purposes":[],"legIntPurposes":[2,7],"flexiblePurposes":[2,7],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.wagawin.com/privacy-en/#productprivacy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"775":{"id":775,"name":"SelectMedia International LTD","purposes":[1,2],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.selectmedia.asia/terms-and-privacy/","cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"776":{"id":776,"name":"Mars Media Group","purposes":[2],"legIntPurposes":[],"flexiblePurposes":[2],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://pay-per-leads.com/terms","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"777":{"id":777,"name":"One Planet Only","purposes":[1],"legIntPurposes":[2,3,4,7],"flexiblePurposes":[2,3,4,7],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://oneplanetonly.com/files/PRIVACY%20POLICY.pdf","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":8035200,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"778":{"id":778,"name":"Discover-Tech ltd","purposes":[2,3,4,5,6,7,8,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[1],"policyUrl":"https://discover-tech.io/dsp-privacy-policy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"779":{"id":779,"name":"Adtarget Medya A.S.","purposes":[1,2,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://adtarget.com.tr/adtarget-privacy-policy-2020.pdf","cookieMaxAgeSeconds":2678000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"780":{"id":780,"name":"Aniview LTD","purposes":[1,2,3,4,7,8],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.aniview.com/privacy-policy/","cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"781":{"id":781,"name":"FeedAd GmbH","purposes":[1,3,4,5,6,8,9],"legIntPurposes":[2,7,10],"flexiblePurposes":[2,7,10],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[1,2],"policyUrl":"https://feedad.com/privacy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":43200,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"782":{"id":782,"name":"AirGrid LTD","purposes":[1,3,5,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://airgid.io/privacy-policy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"783":{"id":783,"name":"Audienzz AG","purposes":[1],"legIntPurposes":[2,3,4,5,6,7,8,9,10],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[1],"policyUrl":"https://audienzz.ch/wp-content/uploads/2020/03/AGB_audienzz_2020.pdf","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"784":{"id":784,"name":"Nubo LTD","purposes":[1],"legIntPurposes":[2,7],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://api.recod3suite.com/privacypolicy.php","cookieMaxAgeSeconds":86400,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"785":{"id":785,"name":"agof studies","purposes":[1,7,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[],"specialFeatures":[],"policyUrl":"https://www.agof.de/datenschutz/","cookieMaxAgeSeconds":31622400,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"755":{"id":755,"name":"Google Advertising Products","purposes":[1,3,4],"legIntPurposes":[2,5,6,7,9,10],"flexiblePurposes":[2,5,6,7,9,10],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[],"policyUrl":"https://policies.google.com/privacy","cookieMaxAgeSeconds":34190000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"786":{"id":786,"name":"TargetVideo GmbH","purposes":[],"legIntPurposes":[7,8],"flexiblePurposes":[7,8],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.target-video.com/datenschutz/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"787":{"id":787,"name":"Resolution Media M\u00fcnchen GmbH","purposes":[1,7],"legIntPurposes":[],"flexiblePurposes":[7],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.nonstoppartner.net","cookieMaxAgeSeconds":5184000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"788":{"id":788,"name":"Ad Alliance GmbH","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2],"specialFeatures":[1],"policyUrl":"https://www.ad-alliance.de/datenschutz/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"789":{"id":789,"name":"IP Deutschland GmbH","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2],"specialFeatures":[1],"policyUrl":"https://www.ip.de/lp/impressum/datenschutz.cfm","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"790":{"id":790,"name":"AdGear Technologies, Inc.","purposes":[1,3,4],"legIntPurposes":[2,7,9,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://adgear.com/en/privacy","cookieMaxAgeSeconds":34128000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"791":{"id":791,"name":"Media Square","purposes":[1,2],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.mediasquare.fr/e-privacy/","cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false,"deviceStorageDisclosureUrl":"https://mediasquare.fr/deviceStorage.json"},"792":{"id":792,"name":"BritePool Inc","purposes":[1],"legIntPurposes":[3,7,10],"flexiblePurposes":[3,7,10],"specialPurposes":[1],"features":[1,2],"specialFeatures":[],"policyUrl":"https://britepool.com/gdpr-privacy-notice","cookieMaxAgeSeconds":63072000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"794":{"id":794,"name":"Kubient Inc. ","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://kubient.com/privacy-policy/","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"795":{"id":795,"name":"Factor Eleven GmbH","purposes":[1,2,3,4,7,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.factor-eleven.de/datenschutz/","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"796":{"id":796,"name":"EASY Marketing GmbH","purposes":[1,7],"legIntPurposes":[],"flexiblePurposes":[7],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://easy-m.de/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"797":{"id":797,"name":"Artefact Deutschland GmbH","purposes":[1,7],"legIntPurposes":[],"flexiblePurposes":[7],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[],"policyUrl":"https://aaa.artefact.com/privacy-policy.do","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"798":{"id":798,"name":"Adverticum cPlc.","purposes":[1,2,3,4,5,6,8,9,10],"legIntPurposes":[7],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://adverticum.net/english/privacy-and-data-processing-information/","cookieMaxAgeSeconds":63072000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"799":{"id":799,"name":"Adpone SL","purposes":[1,2,4,5,7,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[2],"specialFeatures":[],"policyUrl":"https://www.adpone.com/privacy-policy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"800":{"id":800,"name":"Reppublika- The Research Toolbox GmbH","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[10],"specialPurposes":[1],"features":[2],"specialFeatures":[1],"policyUrl":"https://www.reppublika.com/privacy-policy","cookieMaxAgeSeconds":8035200,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"801":{"id":801,"name":"Bannernow, Inc.","purposes":[1,4],"legIntPurposes":[2,7],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://bannernow.com/privacy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"802":{"id":802,"name":"NOW GmbH","purposes":[1,3,4,7],"legIntPurposes":[2,5,6,8,9,10],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://static.now-services.de/privacy/index.html","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"803":{"id":803,"name":"Click Tech Limited","purposes":[1],"legIntPurposes":[2,3],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1],"specialFeatures":[],"policyUrl":"https://en.yeahmobi.com/html/privacypolicy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":25200,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"804":{"id":804,"name":"LinkedIn Ireland Unlimited Company","purposes":[1,3,4],"legIntPurposes":[2,7,10],"flexiblePurposes":[2,3,4,7,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.linkedin.com/legal/privacy-policy","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"805":{"id":805,"name":"LEESTEN INC","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[1,2],"policyUrl":"https://www.leesten.io/privacy-policy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"806":{"id":806,"name":"Aarki, Inc.","purposes":[3,4],"legIntPurposes":[2,7,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://corp.aarki.com/privacy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"807":{"id":807,"name":"Moloco, Inc.","purposes":[1],"legIntPurposes":[2,3,4,7,8,9,10],"flexiblePurposes":[2,3,4,7,8,9,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[2],"policyUrl":"https://www.molocoads.com/privacy-policy","cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"808":{"id":808,"name":"Pure Local Media GmbH","purposes":[1,2,3,4,7,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://purelocalmedia.de/?page_id=593","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"809":{"id":809,"name":"adnanny.com SLU","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://adnanny.com/en/privacy/","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"810":{"id":810,"name":"lead alliance GmbH","purposes":[1],"legIntPurposes":[7],"flexiblePurposes":[7],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.lead-alliance.net/dataprotection2","cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"811":{"id":811,"name":"iPROM","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://iprom.eu/privacy_policy/GDPR","cookieMaxAgeSeconds":7889231,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"812":{"id":812,"name":"Nielsen LLC","purposes":[1],"legIntPurposes":[7,9],"flexiblePurposes":[7,9],"specialPurposes":[1],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.nielsen.com/eu/en/legal/privacy-statement/digital-measurement/","cookieMaxAgeSeconds":34190000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"793":{"id":793,"name":"Amazon Advertising","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7,9,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.amazon.co.uk/gp/help/customer/display.html?nodeId=201909010","cookieMaxAgeSeconds":34190000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"813":{"id":813,"name":"Adjust GmbH","purposes":[1,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[7,8,9,10],"specialPurposes":[1],"features":[2,3],"specialFeatures":[2],"policyUrl":"https://www.adjust.com/terms/privacy-policy/","deletedDate":"2020-10-07T00:00:00Z","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"814":{"id":814,"name":"UAB Aktyvus sektorius - Eskimi","purposes":[1,3,4],"legIntPurposes":[2,7,10],"flexiblePurposes":[2,7,10],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[1],"policyUrl":"https://business.eskimi.com/privacypolicy/","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"815":{"id":815,"name":"Blockthrough, Inc.","purposes":[],"legIntPurposes":[7],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://blockthrough.com/privacy-policy/","cookieMaxAgeSeconds":2592000000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"816":{"id":816,"name":"NoBid, Inc.","purposes":[1,2,3,5,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.nobid.io/privacy-policy/","cookieMaxAgeSeconds":604800,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"817":{"id":817,"name":"Miaozhen Information Technology Co. Ltd","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2],"specialFeatures":[],"policyUrl":"https://www.miaozhen.com/en/privacy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"818":{"id":818,"name":"ZEDO Inc.","purposes":[1,2,4,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.zedo.com/about-zedo/privacy-policy-december-2019/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"819":{"id":819,"name":"retailAds GmbH & Co. KG","purposes":[1],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.retailads.net/ueberuns/datenschutz/","cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"820":{"id":820,"name":"Kameleoon SAS","purposes":[1,3,5,6,8,10],"legIntPurposes":[],"flexiblePurposes":[10],"specialPurposes":[],"features":[1,2],"specialFeatures":[],"policyUrl":"https://developers.kameleoon.com/local-storage.html#list-of-collected-data","cookieMaxAgeSeconds":32832000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"821":{"id":821,"name":"vitrado GmbH","purposes":[1,7,10],"legIntPurposes":[],"flexiblePurposes":[7,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.vitrado.de/datenschutz","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"822":{"id":822,"name":"Adverty AB (publ)","purposes":[1,2,3,4,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[],"policyUrl":"https://adverty.com/privacy-policy/","cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"823":{"id":823,"name":"G+J Electronic Media Sales GmbH","purposes":[1,7,8,9],"legIntPurposes":[],"flexiblePurposes":[7,8,9],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.gujmedia.de/service/privacy/","deletedDate":"2021-04-07T00:00:00Z","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"824":{"id":824,"name":"42 Ads GmbH","purposes":[1,2,3,4,5,6,7,8,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[2],"policyUrl":"https://42ads.io/42privacy.pdf","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"825":{"id":825,"name":"EDGE NPD Sp. z o.o.","purposes":[1],"legIntPurposes":[2,3,4,5,6,7,8,9,10],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[],"policyUrl":"https://abtshield.com/privacy-policy/","cookieMaxAgeSeconds":63072000000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"826":{"id":826,"name":"DNA-I.COM","purposes":[7,8],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.adn.ai/fr/politique-confidentialite-adserver","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"827":{"id":827,"name":"Adtriba GmbH","purposes":[1,7,8],"legIntPurposes":[],"flexiblePurposes":[7,8],"specialPurposes":[],"features":[2],"specialFeatures":[],"policyUrl":"https://privacy.adtriba.com/","cookieMaxAgeSeconds":63072000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"828":{"id":828,"name":"TX Group AG","purposes":[],"legIntPurposes":[3,5,6,8,9,10],"flexiblePurposes":[3,5,6,8,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://tx.group/de/rechtliche-hinweise","cookieMaxAgeSeconds":94608000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"829":{"id":829,"name":"Unilever Polska sp. z o.o.","purposes":[1,2,3,4,5,6,7,8,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2],"specialFeatures":[],"policyUrl":"https://www.unilevernotices.com/poland/polish/privacy-notice/notice.html","cookieMaxAgeSeconds":63072000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"830":{"id":830,"name":"Acxiom","purposes":[],"legIntPurposes":[2,3,4,5,6,7,8,9,10],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://www.acxiom.com/about-us/privacy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"831":{"id":831,"name":"United Internet Media GmbH","purposes":[1,2,3,4,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,7,8,9,10],"specialPurposes":[1,2],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.united-internet-media.de/de/datenschutzhinweis/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"832":{"id":832,"name":"Objective Partners BV","purposes":[1,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.objectiveplatform.com/cookie-policy-and-privacy-statement/","cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"833":{"id":833,"name":"Disqus","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[2],"policyUrl":"https://help.disqus.com/en/articles/1717103-disqus-privacy-policy","cookieMaxAgeSeconds":31536000000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"834":{"id":834,"name":"ADRENALEAD","purposes":[1],"legIntPurposes":[2,3,4,5,6,7,8,9,10],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://adrenalead.com/politique-de-protection-des-donnees/","cookieMaxAgeSeconds":1123200,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"835":{"id":835,"name":"Quality Media Network GmbH","purposes":[1,2,3,4,7,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://qualitymedianetwork.de/datenschutz/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"836":{"id":836,"name":"Bring! Labs AG","purposes":[1],"legIntPurposes":[7,8,10],"flexiblePurposes":[7,8],"specialPurposes":[],"features":[],"specialFeatures":[1],"policyUrl":"https://getbring.com/en/legal/privacy.html","cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"837":{"id":837,"name":"Trinity Audio","purposes":[1,2,5,6],"legIntPurposes":[7,8],"flexiblePurposes":[5,6],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://trinityaudio.ai/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"838":{"id":838,"name":"Jetpack Digital LLC","purposes":[],"legIntPurposes":[2,7],"flexiblePurposes":[],"specialPurposes":[2],"features":[3],"specialFeatures":[],"policyUrl":"https://jetpack.net/privacy","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":86400,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"839":{"id":839,"name":"PixFuture Media Inc.","purposes":[1,2,3,7,8],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[],"specialFeatures":[],"policyUrl":"https://www.pixfuture.com/data-processing-agreement/","cookieMaxAgeSeconds":604800,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"840":{"id":840,"name":"Cazamba Servi\u00e7os de Internet Ltda","purposes":[1,3,4],"legIntPurposes":[2,7,9,10],"flexiblePurposes":[2,7,9,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://cazamba.com/platform-privacy/","cookieMaxAgeSeconds":5184000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"841":{"id":841,"name":"Adtube AS","purposes":[],"legIntPurposes":[7,8,10],"flexiblePurposes":[7,8,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://api.adtube.no/resources/docs/privacy_policy_AppConnect.pdf","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"842":{"id":842,"name":"PubWise, LLLP","purposes":[1],"legIntPurposes":[2,7,8,9,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://admin.pubwise.io/publisher/privacypolicy","cookieMaxAgeSeconds":1800,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"843":{"id":843,"name":"LeadsRx, Inc.","purposes":[1],"legIntPurposes":[7,8],"flexiblePurposes":[7,8],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://leadsrx.com/privacy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"844":{"id":844,"name":"SPICY MOBILE Sp z o.o. Sp.k.","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[2,3,4,7],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://spicymobile.pl/polityka-prywatnosci","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"845":{"id":845,"name":"GeoEdge","purposes":[1],"legIntPurposes":[7,10],"flexiblePurposes":[],"specialPurposes":[1],"features":[],"specialFeatures":[],"policyUrl":"https://www.geoedge.com/privacy-policy/","cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"846":{"id":846,"name":"M,P,NEWMEDIA, GmbH","purposes":[1,3,4,10],"legIntPurposes":[2,7],"flexiblePurposes":[2,3,4,7,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://www.mp-newmedia.com/datenschutz","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"847":{"id":847,"name":"Crowdy News Ltd","purposes":[2,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.crowdynews.com/privacy-policy/","cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"848":{"id":848,"name":"BSmartData GmbH","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.bsmartdata.com/en/privacy/","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"849":{"id":849,"name":"Epom Ltd.","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://epom.com/privacy-policy","cookieMaxAgeSeconds":63072000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"850":{"id":850,"name":"Publisher First, Inc.","purposes":[1],"legIntPurposes":[10],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://freestar.com/data-policy/","cookieMaxAgeSeconds":604800,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"851":{"id":851,"name":"Strossle International AB","purposes":[1],"legIntPurposes":[2,7,8,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.strossle.com/privacy-policy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"852":{"id":852,"name":"diva-e products ","purposes":[1,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[3],"specialFeatures":[],"policyUrl":"https://www.intelliad.de/datenschutzerklaerung/","cookieMaxAgeSeconds":8640000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"853":{"id":853,"name":"Ensighten","purposes":[],"legIntPurposes":[7,8],"flexiblePurposes":[7,8],"specialPurposes":[1],"features":[1],"specialFeatures":[1],"policyUrl":"https://www.ensighten.com/privacy-policy/","cookieMaxAgeSeconds":157680000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"854":{"id":854,"name":"eMarketingSolutions, Online Marketing S.L.","purposes":[2,7,8],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://emarketingsolutions.es/privacy-policy","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"855":{"id":855,"name":"Adnuntius AS","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[],"policyUrl":"https://adnuntius.com/resources/privacy-policy/","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true,"deviceStorageDisclosureUrl":"https://delivery.adnuntius.com/.well-known/deviceStorage.json"},"856":{"id":856,"name":"HUAWEI Ads","purposes":[1,3,4],"legIntPurposes":[2,7,9,10],"flexiblePurposes":[2,7,9,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://consumer.huawei.com/minisite/cloudservice/ads/privacy-statement.htm?country=EU&language=en-eu","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"857":{"id":857,"name":"SOMQUERY SOMTAG - (SevenOne Media)","purposes":[1,3,4],"legIntPurposes":[2,10],"flexiblePurposes":[2,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.sevenonemedia.de/datenerhebung-anderer-dienstleister","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":true,"usesNonCookieAccess":true,"deviceStorageDisclosureUrl":"https://ad.71i.de/consent/deviceStorage.json"},"858":{"id":858,"name":"Mediavine, Inc.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.mediavine.com/privacy-policy","cookieMaxAgeSeconds":31560000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"859":{"id":859,"name":"AdQuiver Media SL","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://adquiver.com/privacidad/","cookieMaxAgeSeconds":63072000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"860":{"id":860,"name":"Publica LLC","purposes":[1,2,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[1],"policyUrl":"https://getpublica.com/privacy/","cookieMaxAgeSeconds":5184000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"861":{"id":861,"name":"Triple13 Ltd","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[],"features":[1,3],"specialFeatures":[],"policyUrl":"https://www.triple13.io/privacy-policy","cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"862":{"id":862,"name":"Truvid Inc.","purposes":[1,2,3,4],"legIntPurposes":[5,7,10],"flexiblePurposes":[2],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.truvid.com/terms/privacy_policy","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"863":{"id":863,"name":"respondi AG","purposes":[1,7,8,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[2,3],"specialFeatures":[],"policyUrl":"https://www.respondi.com/EN/privacy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"864":{"id":864,"name":"I.R.V. D.O.O.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[7,8,9,10],"specialPurposes":[],"features":[3],"specialFeatures":[],"policyUrl":"https://www.contentexchange.me/privacy-policy/","cookieMaxAgeSeconds":63072000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"865":{"id":865,"name":"HEIMSPIEL Medien GmbH & Co KG","purposes":[1,2,7,8],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.heimspiel.de/privacy-policy-iab-vendor/","cookieMaxAgeSeconds":172800,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"866":{"id":866,"name":"YieldLift LLC","purposes":[1,2,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://yieldlift.com/privacy-policy.html","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"867":{"id":867,"name":"Mintegral international limited","purposes":[1,2,3,4],"legIntPurposes":[7,10],"flexiblePurposes":[2,3,4,7,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[2],"policyUrl":"https://www.mintegral.com/en/privacy/","cookieMaxAgeSeconds":86400,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"868":{"id":868,"name":"Converto AG","purposes":[1,2,3,4,5,6,7,8,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[],"policyUrl":"https://www.converto.com/datenschutz-privacy-policy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"869":{"id":869,"name":"Brave People Ltd.","purposes":[2],"legIntPurposes":[],"flexiblePurposes":[2],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://thebrave.io/private-policy","cookieMaxAgeSeconds":30,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"870":{"id":870,"name":"Webgains GmbH","purposes":[1],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.webgains.com/public/de/datenschutzerklaerung/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"871":{"id":871,"name":"Ingenious Technologies AG","purposes":[1,7],"legIntPurposes":[],"flexiblePurposes":[7],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[],"policyUrl":"https://www.ingenioustechnologies.com/privacy-policy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"872":{"id":872,"name":"IVO Media Ltd","purposes":[],"legIntPurposes":[2,7],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.ivo.io/privacy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"873":{"id":873,"name":"Impact+","purposes":[],"legIntPurposes":[7],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://impact-plus.fr/en/privacy-policy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"874":{"id":874,"name":"PRECISO SRL","purposes":[1,2,3,4,5,6,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://preciso.net/privacy/","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"875":{"id":875,"name":"cynapsis interactive GmbH","purposes":[2,4,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,4,6,7,8,9,10],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://cynapsis.de/impressum/index.html#datenschutz_d","cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"876":{"id":876,"name":"3Q nexx GmbH","purposes":[1,6],"legIntPurposes":[7,8],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://3q.video/de/datenschutz_und_richtlinien","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"877":{"id":877,"name":"Experian Limited","purposes":[3,5,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.experian.co.uk/privacy/consumer-information-portal/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"878":{"id":878,"name":"Nat\u00edv Hirdet\u00e9s Korl\u00e1tolt Felel\u0151ss\u00e9g\u0171 T\u00e1rsas\u00e1g","purposes":[1],"legIntPurposes":[2,7,8],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://related.hu/adatkezeles/","cookieMaxAgeSeconds":5184000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"879":{"id":879,"name":"Vidstart LTD","purposes":[],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.vidstart.com/wp-content/uploads/2018/09/PrivacyPolicyPDF-Vidstart.pdf","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"880":{"id":880,"name":"Quantyoo GmbH & Co. KG","purposes":[2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2],"specialFeatures":[1],"policyUrl":"https://quantyoo.de/datenschutz","cookieMaxAgeSeconds":630720000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"881":{"id":881,"name":"Hillside (Sports) GP Limited","purposes":[],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.bet365affiliates.com/UI/Pages/Affiliates/Affiliates.aspx?ContentPath=%2fAffiliates%2fv2_Root%2finformationPages%2fPrivacyPolicy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"882":{"id":882,"name":"NumberEight Technologies Ltd","purposes":[1,3],"legIntPurposes":[5,9],"flexiblePurposes":[3,5],"specialPurposes":[1],"features":[3],"specialFeatures":[1],"policyUrl":"https://portal.eu.numbereight.me/policies-license#software-privacy-notice","cookieMaxAgeSeconds":7890000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"883":{"id":883,"name":"Online Media Solutions LTD (BDA: Brightcom)","purposes":[],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.brightcom.com/privacy-policy/","cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"884":{"id":884,"name":"Listonic Sp. z o.o.","purposes":[1,5,6,7,8,9,10],"legIntPurposes":[2,3,4],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://listonic.com/privacy/","cookieMaxAgeSeconds":34560000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"885":{"id":885,"name":"Dianomi ltd","purposes":[1,3,4,5,6,8,9],"legIntPurposes":[2,7,10],"flexiblePurposes":[2,7,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1,2],"policyUrl":"https://www.dianomi.com/legal/privacy.epl","cookieMaxAgeSeconds":94608000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"886":{"id":886,"name":"Remixd Media, Inc.","purposes":[1,2,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.remixd.com/privacy_policy.html","cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"887":{"id":887,"name":"Prebid.org","purposes":[1],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[1],"policyUrl":"https://docs.prebid.org/privacy.html","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"888":{"id":888,"name":"GADSME","purposes":[1,2,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[1],"policyUrl":"https://www.gadsme.com/privacy-policy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"889":{"id":889,"name":"Admo.tv (Clickon)","purposes":[1,8,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.admo.tv/en/privacy-policy","cookieMaxAgeSeconds":32000000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"890":{"id":890,"name":"Channel Pilot Solutions GmbH","purposes":[1,8],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://channelpilot.co.uk/privacy-policy","cookieMaxAgeSeconds":90,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"891":{"id":891,"name":"ANINPRO-CREATIVE, S.L.","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://bealion.com/politica-de-cookies","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"892":{"id":892,"name":"GeoProve","purposes":[],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[],"specialFeatures":[1],"policyUrl":"https://www.geoprove.io/privacy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"893":{"id":893,"name":"TIMEONE PERFORMANCE","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[2],"policyUrl":"https://privacy.timeonegroup.com","cookieMaxAgeSeconds":34164000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"894":{"id":894,"name":"Threedium","purposes":[2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://threedium.co.uk/privacy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"895":{"id":895,"name":"Maiden Marketing Pte Ltd","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[3,4,7,9,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://www.pokkt.com/privacy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":true},"896":{"id":896,"name":"IPSOS MORI UK LTD","purposes":[1],"legIntPurposes":[8,9],"flexiblePurposes":[8,9],"specialPurposes":[1],"features":[3],"specialFeatures":[2],"policyUrl":"https://iris.ipsos.com/site-centric-privacy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":true,"usesNonCookieAccess":true},"897":{"id":897,"name":"Fido S.r.l","purposes":[1,8,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.fido.id/privacy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"898":{"id":898,"name":"Mobkoi Ltd","purposes":[],"legIntPurposes":[2,10],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://s3-eu-west-1.amazonaws.com/mobkoi-website-2018/MOBKOI_LTD_T%26Cs.pdf","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"899":{"id":899,"name":"digidip GmbH","purposes":[1],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[],"specialFeatures":[],"policyUrl":"https://digidip.net/privacy-policy","cookieMaxAgeSeconds":31556952,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"900":{"id":900,"name":"Advisible AB","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.advisible.com/privacy ","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"901":{"id":901,"name":"STUDIO GONG GmbH & Co. Studiobetriebs KG","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.studio-gong.de/datenschutz.html ","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"902":{"id":902,"name":"adQuery","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[1,2],"policyUrl":"https://policy.openmobi.pl/ ","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"903":{"id":903,"name":"Placense Ltd","purposes":[9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[1],"policyUrl":"https://www.placense.com/privacy-notice ","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"905":{"id":905,"name":"CAKE Software, Inc.","purposes":[1,2],"legIntPurposes":[3,4,5,6,7,8,9,10],"flexiblePurposes":[2],"specialPurposes":[1,2],"features":[1,3],"specialFeatures":[1],"policyUrl":"https://getcake.com/privacy-policy/ ","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":157680000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"906":{"id":906,"name":"Addrelevance","purposes":[3,5],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://addrelevance.be/disclaimer","cookieMaxAgeSeconds":31556926,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"907":{"id":907,"name":"AWIN AG","purposes":[1],"legIntPurposes":[7],"flexiblePurposes":[7],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.awin.com/gb/privacy","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"908":{"id":908,"name":"Zoomd Ltd.","purposes":[1,2,3,4,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[1,2],"policyUrl":"https://zoomd.com/privacy-policy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"909":{"id":909,"name":"MobileFuse LLC","purposes":[9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1],"specialFeatures":[],"policyUrl":"https://mobilefuse.com/privacy-policy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"910":{"id":910,"name":"Insticator, Inc.","purposes":[1,2,3,4,5,6,7,8,10],"legIntPurposes":[],"flexiblePurposes":[2,5,6,7,8,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.insticator.com/privacy/","cookieMaxAgeSeconds":62208000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"911":{"id":911,"name":"Redbranch, Inc dba Fraudlogix","purposes":[],"legIntPurposes":[7],"flexiblePurposes":[],"specialPurposes":[1],"features":[],"specialFeatures":[2],"policyUrl":"https://www.fraudlogix.com/privacy-policy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"912":{"id":912,"name":"Squared SAS","purposes":[2],"legIntPurposes":[7],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://qwarry.com/imprint/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"913":{"id":913,"name":"Clever Advertising, Lda.","purposes":[1],"legIntPurposes":[2],"flexiblePurposes":[2],"specialPurposes":[1,2],"features":[3],"specialFeatures":[2],"policyUrl":"https://cleveradvertising.com/privacy","cookieMaxAgeSeconds":15552000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"914":{"id":914,"name":"Paypersale.ru","purposes":[1],"legIntPurposes":[2,3,4,5,6,7,8],"flexiblePurposes":[2,3,4,5,6,7,8],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://paypersale.ru/index/privacy#about","cookieMaxAgeSeconds":283824000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"915":{"id":915,"name":"Opti Digital SAS","purposes":[1,3,4],"legIntPurposes":[2,7,10],"flexiblePurposes":[2,7,10],"specialPurposes":[2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.optidigital.com/privacy-policy/","cookieMaxAgeSeconds":63072000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"916":{"id":916,"name":"Sirdata Cookieless","purposes":[],"legIntPurposes":[2,3,4,5,6,7,10],"flexiblePurposes":[2,3,4,5,6,7,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.sirdata.com/en/Privacy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"917":{"id":917,"name":"Spotible","purposes":[1,3,4,9],"legIntPurposes":[2,7],"flexiblePurposes":[2,3,4,7,9],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.spotible.com/privacy.php","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"918":{"id":918,"name":"SPORTORITY UK LTD","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[2,7],"specialPurposes":[1],"features":[],"specialFeatures":[],"policyUrl":"https://www.minutemedia.com/privacy-policy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"919":{"id":919,"name":"Livewrapped AB","purposes":[1],"legIntPurposes":[2,7,10],"flexiblePurposes":[2,7,10],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://livewrapped.com/privacy-policy","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"920":{"id":920,"name":"Bertelsmann Data Service GmbH","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.bertelsmann.de/meta/datenschutz/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"921":{"id":921,"name":"Imonomy","purposes":[2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://imonomy.com/privacy-policy","cookieMaxAgeSeconds":21600,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"922":{"id":922,"name":"Amnet GmbH","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[3],"specialFeatures":[2],"policyUrl":"https://mediaintelligence.de/privacy-policy.do","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"923":{"id":923,"name":"Fiducia DLT Limited","purposes":[],"legIntPurposes":[7],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.fiducia.eco/privacy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"924":{"id":924,"name":"Viewdeos 2015 LTD","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.viewdeos.com/privacy-policy","cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"925":{"id":925,"name":"Alphalyr SAS","purposes":[],"legIntPurposes":[7],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://alphalyr.fr/en/privacy-policy/","cookieMaxAgeSeconds":30,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"926":{"id":926,"name":"ZAM Network LLC dba Fanbyte","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[],"policyUrl":"https://corp.fanbyte.com/legal/privacy","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"927":{"id":927,"name":"Silverbullet Data Services Group","purposes":[],"legIntPurposes":[7,8],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://wearesilverbullet.com/privacy-policy/","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"928":{"id":928,"name":"Parrable, Inc.","purposes":[1,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[],"policyUrl":"https://www.parrable.com/privacy-policy/","cookieMaxAgeSeconds":31449600,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"929":{"id":929,"name":"eBay Inc","purposes":[1,2,3,4,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.ebayinc.com/company/privacy-center/gdpr/","cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"930":{"id":930,"name":"IQM CORPORATION","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,3],"specialFeatures":[1],"policyUrl":"https://iqm.com/privacy-policy","cookieMaxAgeSeconds":1296000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"931":{"id":931,"name":"Traffective GmbH","purposes":[],"legIntPurposes":[2,7,8],"flexiblePurposes":[2,7,8],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.iubenda.com/privacy-policy/30563919","cookieMaxAgeSeconds":365,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"932":{"id":932,"name":"Unmatched Solutions Limited","purposes":[1,3,4],"legIntPurposes":[2,7,9],"flexiblePurposes":[3,4],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://app.torchad.com/advertiser/privacy","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"933":{"id":933,"name":"Hindsight Technology Solutions, Inc.","purposes":[7,8,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://hindsightsolutions.net/terms-of-service/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"237":{"id":237,"name":"VGI CTV, Inc","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://verve.com/privacy-policy/index.html","cookieMaxAgeSeconds":180,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"934":{"id":934,"name":"Brid Video DOO","purposes":[1,2,7,8,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[1,2],"policyUrl":"https://cms.brid.tv/pages/view/privacy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"935":{"id":935,"name":"INIS sp. zo.o.","purposes":[1,3,4,5,6,7,8,10],"legIntPurposes":[],"flexiblePurposes":[7,8],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.inis.pl/polityka-prywatnosci","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"936":{"id":936,"name":"Digital Squad","purposes":[1,2,3,4],"legIntPurposes":[],"flexiblePurposes":[2,3,4],"specialPurposes":[],"features":[1,2],"specialFeatures":[],"policyUrl":"https://www.squadata.net/en/private-policy/","cookieMaxAgeSeconds":34164000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"937":{"id":937,"name":"SoD ScreenOnDemand GmbH","purposes":[1,2,3,4,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[7,8],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://screenondemand.de/datenschutzerklaerung/","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"938":{"id":938,"name":"dataXtrade GmbH","purposes":[1,2,3,4,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,7,8],"specialPurposes":[1,2],"features":[1,3],"specialFeatures":[1],"policyUrl":"https://dataxtrade.com/de/privacy.html","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"940":{"id":940,"name":"Terminus Software Inc.","purposes":[1],"legIntPurposes":[2,3,4,7,8,9,10],"flexiblePurposes":[2,3,4,7,8,9,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://terminus.com/privacy-policy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"941":{"id":941,"name":"ADSOCY","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[1,2],"policyUrl":"https://adsocy.com/politica-de-privacidad-y-aviso-legal/","cookieMaxAgeSeconds":1592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"9":{"id":9,"name":"AdMaxim Inc.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"http://www.admaxim.com/admaxim-privacy-policy/","cookieMaxAgeSeconds":5184000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"942":{"id":942,"name":"JS Web Production","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.jswebproduction.com/privacy.php","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":86400,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"943":{"id":943,"name":"Marfeel Solutions, SL (Compass)","purposes":[1,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[2],"specialFeatures":[],"policyUrl":"https://www.marfeel.com/docs/compass/privacy/policy/","cookieMaxAgeSeconds":15552000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"944":{"id":944,"name":"AudienceRun corp","purposes":[1,3,4,5,6],"legIntPurposes":[2,7,8,9,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.audiencerun.com/privacy-policy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"945":{"id":945,"name":"jsdelivr.com","purposes":[],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.jsdelivr.com/terms/privacy-policy-jsdelivr-net","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"946":{"id":946,"name":"belboon GmbH","purposes":[1,7],"legIntPurposes":[],"flexiblePurposes":[7],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[],"policyUrl":"https://belboon.com/en/privacy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"947":{"id":947,"name":"Powerspace","purposes":[1],"legIntPurposes":[2,3,4,7,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://powerspace.com/fr/privacy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"948":{"id":948,"name":"1Agency","purposes":[1,3,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.1agency.de/datenschutz","cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"949":{"id":949,"name":"SMARTLINE SYSTEMS","purposes":[],"legIntPurposes":[7,8,9,10],"flexiblePurposes":[8,9,10],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.getquanty.com/mentions-legales/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"950":{"id":950,"name":"Stream Eye OOD","purposes":[],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://app.streameye.com/policy/net","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"951":{"id":951,"name":"Spoods GmbH","purposes":[2,7],"legIntPurposes":[],"flexiblePurposes":[2,7],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.spoods.info/#gdpr","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"952":{"id":952,"name":"ProSiebenSat.1 Digital Data GmbH","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://7pass.de/datenschutzbestimmungen.html","cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"953":{"id":953,"name":"adbalancer Werbeagentur GmbH","purposes":[],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://www.adbalancer.com/datenschutz","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"954":{"id":954,"name":"Caroda s.r.o.","purposes":[],"legIntPurposes":[2],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.caroda.io/privacy-statement","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":true},"955":{"id":955,"name":"Konodrac S.L.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://konodrac.com/politica-privacidad/","cookieMaxAgeSeconds":31356000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"956":{"id":956,"name":"AirNow Video Ltd","purposes":[],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1],"features":[],"specialFeatures":[],"policyUrl":"https://www.avantisvideo.com/privacypolicy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"957":{"id":957,"name":"Evolution Technologies Inc.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[1],"policyUrl":"https://e-volution.ai/privacy-policy-3/","cookieMaxAgeSeconds":86400,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"958":{"id":958,"name":"Clipr","purposes":[1,7,8,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.clipr.co/privacy-terms","cookieMaxAgeSeconds":5184000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"959":{"id":959,"name":"adWMG","purposes":[1,2,4,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://adwmg.com/privacy-policy/","cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"960":{"id":960,"name":"appTV Ltd.","purposes":[],"legIntPurposes":[2,7],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.apptv.com/privacy-policy","cookieMaxAgeSeconds":172800,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"961":{"id":961,"name":"PML Innovative Media","purposes":[2,7,8,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2],"specialFeatures":[1],"policyUrl":"https://www.pmlatam.com/privacy-policy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"962":{"id":962,"name":"Tangoo Srl","purposes":[1,2,3,4,5,6,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.tangoomedia.com/privacy-policy","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"963":{"id":963,"name":"CIBLECLIC","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[1,2],"policyUrl":"https://uzerly.fr/terms-and-conditions/","cookieMaxAgeSeconds":15768000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"964":{"id":964,"name":"Solution coupons","purposes":[2,4,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[2],"policyUrl":"https://solution.coupons/privacy","cookieMaxAgeSeconds":120,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"965":{"id":965,"name":"Nexx360","purposes":[1],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.nexx360.io/en/940-2/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"966":{"id":966,"name":"socoto gmbh & co. kg","purposes":[7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.socoto.com/datenschutz/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"967":{"id":967,"name":"glomex GmbH","purposes":[1,3,4,9],"legIntPurposes":[2,7,8,10],"flexiblePurposes":[2,7,8,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.glomex.com/en/privacy-policy/privacy-notice-for-the-glomex-player/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"968":{"id":968,"name":"WEMASS MEDIA AUDIENCE SAFE SOLUTIONS, S.L. ","purposes":[1,3,4,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[],"policyUrl":"https://wemass.com/privacidad/","cookieMaxAgeSeconds":94608000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"969":{"id":969,"name":"SmartFrame Technologies","purposes":[],"legIntPurposes":[2,7,8],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://smartframe.io/privacy-policy/","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"29":{"id":29,"name":"ETARGET SE","purposes":[1,2,3,4,7,8,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1],"specialFeatures":[],"policyUrl":"https://sk.search.etargetnet.com/policy.html","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"970":{"id":970,"name":"Frameplay Corporation","purposes":[1],"legIntPurposes":[2,7,8,9,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,3],"specialFeatures":[2],"policyUrl":"https://www.frameplay.gg/terms","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"971":{"id":971,"name":"Goodeed","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.goodeed.com/knowmore/privacypolicy","cookieMaxAgeSeconds":15552000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"972":{"id":972,"name":"Kargo Global Inc.","purposes":[1,2,3,4,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2],"specialFeatures":[],"policyUrl":"https://kargo.com/privacy","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"973":{"id":973,"name":"Cluep LLC","purposes":[1,2,3,4,7,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[1,2],"policyUrl":"https://cluep.com/privacy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"974":{"id":974,"name":"SpearAd GmbH","purposes":[2,3,4,7,8,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,3],"specialFeatures":[1],"policyUrl":"https://www.spearad.com/privacy61f1c041","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"208":{"id":208,"name":"Spotad","purposes":[2,3,4,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[1,3],"specialFeatures":[1],"policyUrl":"https://spotad.co/privacy-policy-2/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"975":{"id":975,"name":"Playrcart Limited","purposes":[1,8,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.playrcart.com/privacy-policy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"976":{"id":976,"name":"Pelmorex Corp.","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,3],"specialFeatures":[1],"policyUrl":"https://www.eltiempo.com/politica-privacidad","cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"977":{"id":977,"name":"Sparklit Networks Inc","purposes":[9],"legIntPurposes":[8],"flexiblePurposes":[],"specialPurposes":[1],"features":[],"specialFeatures":[],"policyUrl":"https://www.adbutler.com/agreements.spark?agreement=privacy","cookieMaxAgeSeconds":15552000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"978":{"id":978,"name":"ARKHEUS","purposes":[1,2,3,4],"legIntPurposes":[7],"flexiblePurposes":[7],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.arkheus.fr/mentions-legales/","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"979":{"id":979,"name":"Mediascore mbH","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://mediascore.de/datenschutz","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"980":{"id":980,"name":"WAM Group Ltd, t/a Admix","purposes":[1,2,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[1],"policyUrl":"https://admixplay.com/privacypolicy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"981":{"id":981,"name":"AREIA (ADLOOP)","purposes":[1,9],"legIntPurposes":[7],"flexiblePurposes":[7],"specialPurposes":[],"features":[1,2],"specialFeatures":[],"policyUrl":"https://adloop.co/en/privacy-policy/","cookieMaxAgeSeconds":31556952,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"409":{"id":409,"name":"Arrivalist Co","purposes":[1],"legIntPurposes":[7,8,9],"flexiblePurposes":[],"specialPurposes":[],"features":[2,3],"specialFeatures":[1,2],"policyUrl":"https://www.arrivalist.com/privacy/","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":11510640000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"982":{"id":982,"name":"Netpoint Media GmbH","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.netpoint-media.de/technik/datenschutz","cookieMaxAgeSeconds":31560000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"983":{"id":983,"name":"Axiom Media Connect","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://axiommedia.co/useful-info/axiom-media-limited-privacy-policy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"984":{"id":984,"name":"Pulse Innovations Limited","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[2],"policyUrl":"https://www.pulselive.com/privacy-policy","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"985":{"id":985,"name":"TV SQUARED LIMITED","purposes":[7,9],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://tvsquared.com/privacy-policy","cookieMaxAgeSeconds":63072000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"986":{"id":986,"name":"BYTEDANCE PTE. LTD.","purposes":[1,3,4],"legIntPurposes":[2,7,9,10],"flexiblePurposes":[2,7,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[],"policyUrl":"https://www.pangleglobal.com/privacy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"987":{"id":987,"name":"Media16 ltd","purposes":[2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1,3],"specialFeatures":[1],"policyUrl":"https://media16.tv/privacy-policy/","overflow":{"httpGetLimit":32},"cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"988":{"id":988,"name":"Habu","purposes":[1,5,6,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://habu.com/privacy-policy","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":25920000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"989":{"id":989,"name":"SPEAKOL DMCC","purposes":[1],"legIntPurposes":[2,3,4,7,8,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://speakol.com/terms-of-use","cookieMaxAgeSeconds":7776000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"990":{"id":990,"name":"QuantumCast digital GmbH","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,3,4,5,6,7,8,9,10],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1,2],"policyUrl":"https://www.quantumcast-digital.com/privacy-policy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":true},"991":{"id":991,"name":"iProspect GmbH","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[2,3],"specialFeatures":[2],"policyUrl":"https://inetpro.io/privacy-policyeng.do","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"992":{"id":992,"name":"Rapid Performance GmbH","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1],"specialFeatures":[1],"policyUrl":"https://www.gratisbasar.de/privacy-policy","cookieMaxAgeSeconds":90,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"993":{"id":993,"name":"QUARTER MEDIA GmbH","purposes":[1,2,3,7,8,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://quartermedia.de/daten/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"994":{"id":994,"name":"Leadoo Marketing Technologies Ltd","purposes":[1,2,3,4,5,9],"legIntPurposes":[6,7,8,10],"flexiblePurposes":[6,9],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[2],"policyUrl":"https://leadoo.com/privacy-policy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":true},"995":{"id":995,"name":"Hashtag Labs Inc.","purposes":[1,2,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://hashtag-labs.com/privacy-policy.html","cookieMaxAgeSeconds":2592000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"996":{"id":996,"name":"CMI Marketing, Inc. d/b/a CafeMedia","purposes":[1,3,4,7,10],"legIntPurposes":[2],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://cafemedia.com/publisher-advertising-privacy-policy/","cookieMaxAgeSeconds":31000000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"708":{"id":708,"name":"Dugout Ltd","purposes":[2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[2,4,7,8,9,10],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[],"policyUrl":"https://dugout.com/privacy-policy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":true},"997":{"id":997,"name":"EXOCLICK, S.L.","purposes":[1,3,4],"legIntPurposes":[2,7,10],"flexiblePurposes":[2,7,10],"specialPurposes":[1,2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.exoclick.com/privacy-and-cookies-policy/","cookieMaxAgeSeconds":62000000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"998":{"id":998,"name":"Luna Media Group LLC","purposes":[1,2,3,4,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[],"policyUrl":"https://lunamedia.io/privacy-policy/","cookieMaxAgeSeconds":1209600,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"999":{"id":999,"name":"ADSTOURS SAS","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.clickintext.com/about/charte-rgpd.php","cookieMaxAgeSeconds":63000000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"1000":{"id":1000,"name":"NETILUM (AFFILAE)","purposes":[1,7,8],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[3],"specialFeatures":[2],"policyUrl":"https://affilae.com/en/privacy-cookie-policy","overflow":{"httpGetLimit":128},"cookieMaxAgeSeconds":34164000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"1001":{"id":1001,"name":"wetter.com GmbH","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1],"specialFeatures":[1],"policyUrl":"https://www.wetter.com/internal/news/datenschutzhinweise_aid_607698849b8ecf79e21584fa.html","cookieMaxAgeSeconds":0,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"56":{"id":56,"name":"Confiant Inc.","purposes":[],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.confiant.com/privacy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"1002":{"id":1002,"name":"Extreme Reach, Inc","purposes":[1,2,7,10],"legIntPurposes":[],"flexiblePurposes":[7,10],"specialPurposes":[],"features":[2],"specialFeatures":[],"policyUrl":"https://extremereach.com/privacy-policies/","cookieMaxAgeSeconds":63072000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"1003":{"id":1003,"name":"Mobility-Ads GmbH","purposes":[1],"legIntPurposes":[7],"flexiblePurposes":[7],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://mobility-ads.de/datenschutz/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"1004":{"id":1004,"name":"VUUKLE DMCC","purposes":[1,4],"legIntPurposes":[2,5,6,7,8,9,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[2,3],"specialFeatures":[1,2],"policyUrl":"https://docs.vuukle.com/privacy-and-policy/","cookieMaxAgeSeconds":34186669,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true},"1005":{"id":1005,"name":"Somplo Ltd","purposes":[],"legIntPurposes":[7],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://somplo.com/privacy-policy/","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"1006":{"id":1006,"name":"Onesoon Limited t/a Adalyser","purposes":[7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://adalyser.com/en/terms","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"1007":{"id":1007,"name":"Ketchup Adv Spa","purposes":[1,2,3,4,5,6],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[1],"specialFeatures":[],"policyUrl":"https://www.rematch.tech/cookiepolicy/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"1008":{"id":1008,"name":"Aptivio Inc","purposes":[],"legIntPurposes":[3,4,5,6,7,8,9,10],"flexiblePurposes":[3,4,5,6,7,8,9,10],"specialPurposes":[],"features":[1],"specialFeatures":[],"policyUrl":"https://aptiv.io/privacy-policy","cookieMaxAgeSeconds":30000000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":false},"1009":{"id":1009,"name":"VLYBY Digital GmbH","purposes":[],"legIntPurposes":[7],"flexiblePurposes":[],"specialPurposes":[2],"features":[3],"specialFeatures":[],"policyUrl":"https://www.vlyby.com/product-privacy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"1010":{"id":1010,"name":"Persona.ly","purposes":[2,3,4,5,7,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[3],"specialFeatures":[1],"policyUrl":"https://persona.ly/privacy_dsp","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"1011":{"id":1011,"name":"Videobyte Inc","purposes":[1,2,5,6,7],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[2],"features":[],"specialFeatures":[],"policyUrl":"https://videobyte.com/privacy.html","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"1012":{"id":1012,"name":"Glimpse Protocol Limited","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://www.glimpseprotocol.io/vault-privacy-policy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":true},"1013":{"id":1013,"name":"Velocity Made Good LLC","purposes":[],"legIntPurposes":[7],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://vmg.nyc/privacy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"1014":{"id":1014,"name":"Octaive Ltd.","purposes":[],"legIntPurposes":[7,8,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[],"specialFeatures":[],"policyUrl":"https://www.octaive.com/privacy","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":false},"1015":{"id":1015,"name":"Samsung Ads","purposes":[1,3,4],"legIntPurposes":[2,7,9,10],"flexiblePurposes":[],"specialPurposes":[1,2],"features":[1,2,3],"specialFeatures":[1],"policyUrl":"https://policy.samsungrs.com/consent/eu/privacy_policy_en.html","cookieMaxAgeSeconds":null,"usesCookies":false,"cookieRefresh":false,"usesNonCookieAccess":true},"1016":{"id":1016,"name":"FUNKE DIGITAL GmbH","purposes":[1,2,3,4,5,6,7,8,9,10],"legIntPurposes":[],"flexiblePurposes":[],"specialPurposes":[],"features":[],"specialFeatures":[],"policyUrl":"https://funkedigital.de/datenschutzerklaerung/","cookieMaxAgeSeconds":31536000,"usesCookies":true,"cookieRefresh":false,"usesNonCookieAccess":true}}} \ No newline at end of file diff --git a/src/s1/constants.js b/src/s1/constants.js index 2af25dbc..800473c4 100644 --- a/src/s1/constants.js +++ b/src/s1/constants.js @@ -13,6 +13,7 @@ export const CONSENT_SCREENS = { }; export const CUSTOM_API = { + CHANGE_CONFIG: 'changeConfig', CHANGE_LANGUAGE: 'changeLanguage', INIT: 'init', OFF_CONSENT_CHANGED: 'offConsentAllChanged', diff --git a/src/s1/lib/config.js b/src/s1/lib/config.js index 21083966..bb7ce96e 100644 --- a/src/s1/lib/config.js +++ b/src/s1/lib/config.js @@ -18,6 +18,9 @@ export const theme = { // secondaryColor: '#869cc0', // featuresColor: '#d0d3d7', // maxWidthModal: '500px', + // minHeightModal: '100px', + // maxHeightInline: '680px', // max height of the inline SCREEN_0 + isBannerInline: false, // inline styling instead of modal/overlay isFullWidth: false, shouldShowDropShadow: true, shouldAutoResizeModal: true, @@ -35,6 +38,7 @@ export const config = { ccpaApplies: false, experimentId: 'control', isSlimMode: false, + insertionNode: '', // target dom node to append UI shouldShowCloseX: false, gdprApplies: false, gdprConsentUrlParam, diff --git a/src/s1/lib/store.js b/src/s1/lib/store.js index 1417e087..e90354a5 100644 --- a/src/s1/lib/store.js +++ b/src/s1/lib/store.js @@ -19,6 +19,7 @@ export default class Store { config = config; displayLayer1; // stacks maxHeightModal = 0; + minHeightModal = 0; shouldAutoResizeModal = false; manualVendorConsents = new Set(); // vendor-consent management partially automatic and partially manual depending on the consent screen isModalShowing = false; @@ -143,7 +144,7 @@ export default class Store { gdprConsentUrlParam, publisherCountryCode, isServiceSpecific, - isSlimMode, + isSlimMode, } = this.config; const { vendors } = this.gvl; @@ -191,6 +192,7 @@ export default class Store { // update internal models, show ui, dont save to cookie this.updateCmp({ tcModel, shouldShowModal: true }); this.setDisplayLayer1(); + this.hasShownModal = true; } else { // handle a return user @@ -255,6 +257,7 @@ export default class Store { const encodedTCString = TCString.encode(tcModelNew); const shouldAutoResizeModal = isSaveShowing ? false : this.shouldAutoResizeModal; const maxHeightModal = shouldShowSave ? this.theme.maxHeightModal : this.maxHeightModal; + const minHeightModal = shouldShowSave ? this.theme.minHeightModal : this.minHeightModal; const { vendorConsents, purposeConsents, specialFeatureOptins } = tcModelNew; const { purposes, specialFeatures, vendors } = this.gvl; @@ -277,6 +280,7 @@ export default class Store { isSaveShowing, hasSession, maxHeightModal, + minHeightModal, shouldAutoResizeModal, }, true @@ -326,10 +330,12 @@ export default class Store { const { theme } = this; const maxHeightModal = shouldAutoResizeModal && dynamicMaxHeightModal ? dynamicMaxHeightModal : theme.maxHeightModal; + const minHeightModal = shouldAutoResizeModal && dynamicMaxHeightModal ? 0 : (theme.minHeightModal || 0); // only set if there's a change if (shouldAutoResizeModal !== this.shouldAutoResizeModal || maxHeightModal !== this.maxHeightModal) { this.setState({ maxHeightModal, + minHeightModal, shouldAutoResizeModal, }); } @@ -520,7 +526,16 @@ export default class Store { if (!this.tcModel) { return; } + if (this.hasShownModal) { // reset on subsequent display + this.updateConfig({ + isSlimMode: false, + theme: { + isBannerInline: false + } + }); + } const { isSlimMode } = this.config; + this.hasShownModal = true; let tcModel = this.tcModel.clone(); tcModel.consentScreen = ( isSlimMode ? CONSENT_SCREENS.SLIM_LAYER0 : CONSENT_SCREENS.STACKS_LAYER1 ); @@ -589,4 +604,15 @@ export default class Store { return Promise.all([gvlPromise, localizePromise]); } + + updateConfig(newConfig) { + const {theme = config.theme } = newConfig; + Object.assign(this.config, { + ...newConfig, + theme: { + ...this.config.theme, + ...theme + } + }); + } } diff --git a/src/s1/reference/tcf-2.0.html b/src/s1/reference/tcf-2.0.html index 0486f7c9..202574b8 100644 --- a/src/s1/reference/tcf-2.0.html +++ b/src/s1/reference/tcf-2.0.html @@ -96,6 +96,7 @@ version: <%= version %> generated: <%= date %> //--> +

System1 CMP TCF 2.0 Reference Page

    @@ -151,6 +152,10 @@

    TCFString

    Use Slim: +
  • + Use Inline Mode: + +
  • Full Width: @@ -163,6 +168,10 @@

    TCFString

    Close with X:
  • +
  • + Insertion Node: + +
@@ -181,9 +190,11 @@

TCFString

const domShouldAutoResize = document.querySelector('#domShouldAutoResize'); const domShouldUseStacks = document.querySelector('#domShouldUseStacks'); const domShouldUseSlim = document.querySelector('#domShouldUseSlim'); + const domShouldUseInline = document.querySelector('#domShouldUseInline'); const domFullWidth = document.querySelector('#domFullWidth'); const domDropShadow = document.querySelector('#domDropShadow'); const domCloseWithX = document.querySelector('#domCloseWithX'); + const domInsertionNode = document.querySelector('#domInsertionNode'); const setupQaTools = function (store) { const LANGUAGES = store.LANGUAGES; @@ -217,6 +228,11 @@

TCFString

return params.get('slim') === 'true'; }; + const shouldUseInline = function () { + let params = new URLSearchParams(window.location.search); + return params.get('inline') === 'true'; + }; + const isFullWidth = function () { let params = new URLSearchParams(window.location.search); return params.get('fullwidth') === 'true'; @@ -232,12 +248,22 @@

TCFString

return params.get('closewithx') === 'true'; }; + const getInsertionNode = function () { + let params = new URLSearchParams(window.location.search); + return params.get('insertionnode'); + }; + const config = { theme: { + isBannerInline: shouldUseInline(), shouldAutoResizeModal: shouldAutoResize(), - maxHeightModal: '65vh', + maxHeightModal: '45vh', + // minHeightModal: '400px', + maxHeightInline: '25vh', isFullWidth: isFullWidth(), shouldShowDropShadow: shouldShowDropShadow(), + primaryColor: '#0099ff', + textLinkColor: '#0099ff', }, business: 'reference', gdprApplies: true, @@ -255,6 +281,7 @@

TCFString

shouldUseStacks: shouldUseStacks(), isSlimMode: shouldUseSlim(), shouldShowCloseX: shouldShowCloseX(), + insertionNode: getInsertionNode(), // narrowedVendors: [1, 2, 3, 4, 5, 6], }; @@ -325,6 +352,13 @@

TCFString

window.location.search = params.toString(); }); + domShouldUseInline.checked = shouldUseInline(); + domShouldUseInline.addEventListener('change', function () { + let params = new URLSearchParams(window.location.search); + params.set('inline', domShouldUseInline.checked); + window.location.search = params.toString(); + }); + domFullWidth.checked = isFullWidth(); domFullWidth.addEventListener('change', function () { let params = new URLSearchParams(window.location.search); @@ -345,6 +379,19 @@

TCFString

params.set('closewithx', domCloseWithX.checked); window.location.search = params.toString(); }); + + let timer; + domInsertionNode.value = getInsertionNode(); + domInsertionNode.addEventListener('change', function () { + if (timer) { + clearTimeout(timer); + } + timer = setTimeout(function () { + let params = new URLSearchParams(window.location.search); + params.set('insertionnode', domInsertionNode.value); + window.location.search = params.toString(); + }, 350) + }); diff --git a/src/s1/tcf-2.0-cmp.js b/src/s1/tcf-2.0-cmp.js index 9a557bb2..2121ec1f 100644 --- a/src/s1/tcf-2.0-cmp.js +++ b/src/s1/tcf-2.0-cmp.js @@ -10,7 +10,7 @@ import logger, { EVENTS as LOG_EVENTS } from './lib/logger'; import { CMP_GLOBAL_NAME, CUSTOM_API, CUSTOM_EVENTS, VERSION } from './constants'; -const { CHANGE_LANGUAGE, INIT, ON_CONSENT_CHANGED, OFF_CONSENT_CHANGED, SHOW_CONSENT_TOOL } = CUSTOM_API; +const { CHANGE_CONFIG, CHANGE_LANGUAGE, INIT, ON_CONSENT_CHANGED, OFF_CONSENT_CHANGED, SHOW_CONSENT_TOOL } = CUSTOM_API; let errorMessage = ''; @@ -50,6 +50,11 @@ export const setup = (configOpt) => { callback(store, true); }, + [CHANGE_CONFIG]: (callback, config) => { + store.updateConfig(config); + callback(store); + }, + [CHANGE_LANGUAGE]: (callback, language) => { store.toggleLanguage(language, true).finally((result) => { callback(store, result); @@ -119,7 +124,8 @@ export const setup = (configOpt) => { }); const init = () => { - render(, document.body); + const insertionNode = (config.insertionNode && document.querySelector(config.insertionNode)) || document.body; + render(, insertionNode); return store; };