Reserve the New Galaxy Device | Samsung Unpacked | Samsung US (2024)

').addClass('video-overlay-background').appendTo(this.$el).css('display', 'none'); this.$videoContainer = $('

').addClass('overlay-video-container').appendTo(this.$overlayBg).css('visibility', 'hidden'); var tmpTxt = '

'; this.$closeBtn = $(tmpTxt) .appendTo(this.$videoContainer); } }, setListeners: function () { var base = this; if (base.renderOptions.el != null) { base.renderOptions.el.on('click', function (evt) { evt.stopPropagation(); evt.preventDefault(); base.$overlayBg && base.$overlayBg.addClass('active').css('display', 'block'); if (!base.playerReady) { base._createLoader(); base.playerReadyDeferred.done(function () { base._playVideo(); base.$loader.css('opacity', '0'); setTimeout(function () { base.$loader.remove(); }, 700); }); } else { base._playVideo(); } }); } else { base.$el.on('click', function (evt) { evt.stopPropagation(); evt.preventDefault(); base.$overlayBg && base.$overlayBg.addClass('active').css('display', 'block'); if (!base.playerReady) { base._createLoader(); base.playerReadyDeferred.done(function () { base._playVideo(); base.$loader.css('opacity', '0'); setTimeout(function () { base.$loader.remove(); }, 700); }); } else { base._playVideo(); } }); } base.$videoContainer.on('playerReady.unifiedVideoInterface', function (evt) { evt.stopPropagation(); evt.preventDefault(); //console.log("captured, from" + evt.target); base.playerReadyDeferred.resolve(); base.playerReady = true; }); base.$videoContainer.on('mediaComplete.unifiedVideoInterface', function (evt) { console.log('finished'); evt.stopPropagation(); evt.preventDefault(); base._closeVideo(); }); base.$videoContainer.on('mediaStop.unifiedVideoInterface', function () { //console.log('stop captured'); }); base.$videoContainer.on('mediaBegin.unifiedVideoInterface', function () { //console.log('video begin'); var titleText = document.getElementsByTagName("title")[0].innerHTML; if (typeof utag != "undefined" && base.renderOptions.answerPage && base.renderOptions.answerPage === true) { utag.link({ link_cat: 'solutions marquee video', link_id: 'marquee_video_solutions', link_meta: 'link_name:' + titleText + '>video play', link_position: 'marquee' }); } }); if (base.renderOptions.style == 'overlay') { base.$overlayBg.on('click', function (evt) { evt.stopPropagation(); evt.preventDefault(); base._closeVideo(); }); base.$closeBtn.on('click', function (evt) { evt.stopPropagation(); evt.preventDefault(); base._closeVideo(); }); } $(window).on('resize', function() { base.$videoContainer.unifiedPlayer('windowResize'); }); }, _playVideo: function () { var base = this; base.$overlayBg && base.$overlayBg.css('display', 'block'); base.$videoContainer.css('visibility', 'visible'); base.$videoContainer.unifiedPlayer('play'); }, _pauseVideo: function () { var base = this; base.$overlayBg && base.$overlayBg.css('display', 'none'); base.$videoContainer.css('visibility', 'hidden'); base.$videoContainer.unifiedPlayer('pause'); }, _closeVideo: function () { var base = this; if (base.$el.attr('data-vidloop') === 'Y') { base.$videoContainer.unifiedPlayer('play'); } else { if (base.$overlayBg) { base.$overlayBg.removeClass('active'); } base.$overlayBg && base.$overlayBg.css('display', 'none'); base.$videoContainer.css('visibility', 'hidden').css('opacity', '1'); var videoExpID = $('.ns-feature-benefit-video-trigger').attr("data-vidid"); if (videoExpID != '5205030053001') { setTimeout(function () { base.$videoContainer.unifiedPlayer('reset'); }, 500); } } } }); // A really lightweight plugin wrapper around the constructor, // preventing against multiple instantiations $.fn[pluginName] = function (renderOptions, options) { return this.each(function () { if (!$.data(this, 'plugin_' + pluginName)) { $.data(this, 'plugin_' + pluginName, new Plugin(this, renderOptions, options)); } }); }; })(jQuery, window, document); ;(function($, window, document, undefined) { 'use strict'; var slice = [].slice; var pluginName = 'youtubePlayerV2'; var unifiedVideoInterface = 'unifiedVideoInterface'; // jscs:disable requireCamelCaseOrUpperCaseIdentifiers var defaultSettings = { autoplay: 0, autohide: 1, loop: 0, border: 0, wmode: 'opaque', enablejsapi: 1, version: 3, hl: 'en_US', rel: 0, showinfo: 0, hd: 1, iv_load_policy: 3, // add origin lazyload: true }; // jscs:enable requireCamelCaseOrUpperCaseIdentifiers $.ajaxSetup({ cache: true }); var loadDependency = false; var YTdeferred = $.Deferred(); function Plugin(element, options, selector) { var _this = this; this.el = element; this.$el = $(this.el); this.options = $.extend({}, defaultSettings, options); this.selector = selector; if (typeof window.YT !== 'object') { if (!loadDependency) { $.getScript('https://www.youtube.com/iframe_api', function() {//not used: data, textStatus, jqxhr window.onYouTubeIframeAPIReady = function() { YTdeferred.resolve(); }; }); loadDependency = true; } YTdeferred.done(function() { _this.init(); }); } else if (typeof window.YT.player !== 'function') { window.onYouTubeIframeAPIReady = function() { YTdeferred.resolve(); }; YTdeferred.done(function() { _this.init(); }); } else { _this.init(); } } $.extend(Plugin.prototype, { init: function() { var _this = this; var playerID = Math.round(Math.random() * 1000000); function onPlayerStateChange(event) { if (event.data == YT.PlayerState.ENDED) { _this.$el.trigger('mediaComplete.' + unifiedVideoInterface); } if (event.data == YT.PlayerState.PLAYING) { _this.$el.trigger('mediaBegin.' + unifiedVideoInterface); } } function onPlayerReady() { _this.$el.trigger('playerReady.' + unifiedVideoInterface); _this.player.playVideo(); } var self = this; self.options.autoplay = 1; self.options.mute = 1; $('

', { 'id': 'player' + playerID, 'class': 'yt-video-player', 'src': 'https://www.youtube.com/embed/' + this.options.videoID + '?' + $.param(self.options) }) .attr({width: this.$el.width(), height: this.$el.height(), seamless: 'seamless', allow: 'autoplay; fullscreen'}) .css('border', 'none') .appendTo(this.$el); this.player = new YT.Player('player' + playerID, { events: { 'onStateChange': onPlayerStateChange, 'onReady': onPlayerReady } }); }, play: function() { if (this.$el.find('.yt-video-player').length) { this.player.playVideo(); } }, pause: function() { this.player.pauseVideo(); }, destroy: function() { //this.unbindTriggers(); this.$el.empty(); this.$el.data('plugin_' + pluginName, null); }, windowResize: function() { }, reset: function() { this.player.seekTo(0, true); this.player.pauseVideo(); } }); $.fn[pluginName] = function() { var params = slice.call(arguments); var options; var method; var args; var selector; if (params.length === 1) { if (typeof params[0] === 'object') { options = params.shift(); } else if (typeof params[0] === 'string') { method = params.shift(); } } else if (params.length === 2) { options = params.shift(); selector = params[0]; } else { method = params.shift(); args = params; } this.each(function() { var pluginInstance = $.data(this, 'plugin_' + pluginName); if (!pluginInstance) { if (typeof options !== 'object') { $.error(pluginName + ' has not been initialized yet'); } $.data(this, 'plugin_' + pluginName, new Plugin(this, options, selector)); } else { if (!pluginInstance[method]) { $.error('Method name "' + method + '" missing'); } else { pluginInstance[method].apply(pluginInstance, args); } } }); // chain jQuery functions return this; };}(jQuery, window, document));

Unfold your story with Galaxy AI



Reserve the New Galaxy Device | Samsung Unpacked | Samsung US (1)
  • Reserve the New Galaxy Device | Samsung Unpacked | Samsung US (2)

    Instant savings
    with trade-inθ

  • Reserve the New Galaxy Device | Samsung Unpacked | Samsung US (3)

    Samsung.com
    exclusive colors

  • Reserve the New Galaxy Device | Samsung Unpacked | Samsung US (4)

    Carrier plans
    and promotions

  • Reserve the New Galaxy Device | Samsung Unpacked | Samsung US (5)

    Pick up
    in-store^

  • Reserve the New Galaxy Device | Samsung Unpacked | Samsung US (6)

    Worry-free
    Samsung Care+

  • Reserve the New Galaxy Device | Samsung Unpacked | Samsung US (7)

    Samsung Financing
    options⊕σ

Loading...

Unfold your story with Galaxy AI



Thank you for your reservation

Watch for an email with information on how to redeem your exclusive offer when you pre-order. Get excited for what's coming soon and tune into

Loading...


What device do you plan to trade in?

Enjoy instant savings during pre-order

Device Type

  • Smartphone
  • Tablet
  • Watches
  • Buds

Manufacturer

  • Samsung
  • Apple
  • Google
  • Fitbit
  • Garmin
  • Fossil
  • Other

Model

  • Galaxy Z Fold5
  • Galaxy Z Fold4
  • Galaxy Z Fold3
  • Galaxy Z Fold2
  • Galaxy Z Fold
  • Galaxy Z Flip5
  • Galaxy Z Flip4
  • Galaxy Z Flip3
  • Galaxy Z Flip 5G
  • Galaxy Z Flip
  • Galaxy Note20 Ultra 5G
  • Galaxy Note20
  • Galaxy Note10+ 5G
  • Galaxy Note10+
  • Galaxy Note10
  • Galaxy Note10 Lite
  • Galaxy Note9
  • Galaxy Note8
  • Galaxy S24 Ultra
  • Galaxy S23 Ultra 5G
  • Galaxy S22 Ultra 5G
  • Galaxy S21 Ultra 5G
  • Galaxy S20 Ultra 5G
  • Galaxy S24+
  • Galaxy S23+ 5G
  • Galaxy S22+ 5G
  • Galaxy S21+ 5G
  • Galaxy S20+
  • Galaxy S24
  • Galaxy S23 5G
  • Galaxy S22 5G
  • Galaxy S21 5G
  • Galaxy S20
  • Galaxy S23 FE 5G
  • Galaxy S21 FE 5G
  • Galaxy S20 FE
  • Galaxy S10e
  • Galaxy S10+
  • Galaxy S10 Lite
  • Galaxy S10 5G
  • Galaxy S10
  • Galaxy S9+
  • Galaxy S9
  • GALAXY A73 5g
  • Galaxy A71
  • Galaxy A70
  • Galaxy A7
  • Galaxy A6
  • Galaxy A54 5G
  • Galaxy A53 5G
  • Galaxy A52s
  • Galaxy A52 5G
  • Galaxy A51 5G
  • Galaxy A51
  • Galaxy A50s
  • Galaxy A50
  • Galaxy A5
  • Galaxy A42 5G
  • GALAXY A34
  • Galaxy A33
  • Galaxy A32 5G
  • Galaxy A31
  • Galaxy A30s
  • Galaxy A30
  • Galaxy A3
  • Galaxy A3
  • GALAXY A24
  • Galaxy A23
  • Galaxy A21s
  • Galaxy A21
  • Galaxy A20s
  • Galaxy A20
  • GALAXY A15
  • Galaxy A14
  • Galaxy A13 5G
  • Galaxy A13
  • Galaxy A12
  • Galaxy A11
  • Galaxy A10S
  • Galaxy A10e
  • Galaxy A10
  • Galaxy A03s
  • Galaxy A03 CORE
  • Galaxy A03
  • Galaxy A02s
  • Galaxy A01 CORE
  • Galaxy A01
  • Any Galaxy Smartphone
  • Galaxy Book Flex
  • Galaxy Book Flex Alpha
  • Galaxy Book Ion
  • Galaxy Book Pro
  • Galaxy Book S
  • Galaxy Book2
  • Galaxy Book2 360
  • Galaxy Book2 Pro
  • Galaxy Book2 Pro 360
  • Galaxy Book3
  • Galaxy Book3 360
  • Galaxy Book3 Pro
  • Galaxy Book3 Pro 360
  • Galaxy Book3 Ultra
  • Galaxy Book 10
  • Galaxy Book 12
  • Galaxy Tab 2
  • Galaxy Tab 3 7.0
  • Galaxy Tab 3 Lite
  • Galaxy Tab 4
  • Galaxy Tab A
  • Galaxy Tab A7
  • Galaxy Tab A7 Lite
  • Galaxy Tab A8
  • Galaxy Tab Active
  • Galaxy Tab Active Pro
  • Galaxy Tab Active2
  • Galaxy Tab Active3
  • Galaxy Tab E
  • Galaxy Tab Pro
  • Galaxy Tab S
  • Galaxy Tab S2
  • Galaxy Tab S3
  • Galaxy Tab S4
  • Galaxy Tab S5E
  • Galaxy Tab S6
  • Galaxy Tab S6 Lite
  • Galaxy Tab S7
  • Galaxy Tab S7 FE
  • Galaxy Tab S7+
  • Galaxy Tab S8
  • Galaxy Tab S8 Ultra
  • Galaxy Tab S8+
  • Galaxy Tab S9
  • Galaxy Tab S9+
  • Galaxy Tab S9 Ultra
  • Galaxy Tab S9 FE+
  • Galaxy Tab S9 FE
  • Galaxy Watch
  • Galaxy Watch Active
  • Galaxy Watch Active2
  • Galaxy Watch3
  • Galaxy Watch4
  • Galaxy Watch4 Classic
  • Galaxy Watch5
  • Galaxy Watch5 Pro
  • Gear Fit2
  • Gear S2
  • Gear S3
  • iPhone 11
  • iPhone 11 Pro
  • iPhone 11 Pro Max
  • iPhone 12
  • iPhone 12 Mini
  • iPhone 12 Pro
  • iPhone 12 Pro Max
  • iPhone 13
  • iPhone 13 Mini
  • iPhone 13 Pro
  • iPhone 13 Pro Max
  • iPhone 14
  • iPhone 14 Plus
  • iPhone 14 Pro
  • iPhone 14 Pro Max
  • iPhone 15
  • iPhone 15 Plus
  • iPhone 15 Pro
  • iPhone 15 Pro Max
  • iPhone 1st Gen
  • iPhone 4
  • iPhone 4S
  • iPhone 5
  • iPhone 5c
  • iPhone 5s
  • iPhone 6
  • iPhone 6 Plus
  • iPhone 6S
  • iPhone 6S Plus
  • iPhone 7
  • iPhone 7 Plus
  • iPhone 8
  • iPhone 8 Plus
  • iPhone SE
  • iPhone SE 2020
  • iPhone SE (3rd Generation)
  • iPhone X
  • iPhone XR
  • iPhone XS
  • iPhone XS Max
  • Macbook Air (2nd Generation)
  • Macbook Air (3rd Generation)
  • Macbook Air (4th Generation)
  • Macbook Pro (3rd Generation)
  • Macbook Pro (4th Generation)
  • Macbook Pro (5th Generation)
  • Watch SE
  • Watch SE (2nd generation)
  • Watch Series 1
  • Watch Series 2
  • Watch Series 3
  • Watch Series 4
  • Watch Series 5
  • Watch Series 6
  • Watch Series 7
  • Watch Series 8
  • Watch Series 9
  • Watch ultra
  • Watch ultra 2
  • iPad (1st Generation)
  • iPad (2nd Generation)
  • iPad (3rd Generation)
  • iPad (4th Generation)
  • iPad (5th Generation)
  • iPad (6th Generation)
  • iPad (7th Generation)
  • iPad (8th Generation)
  • iPad (9th Generation)
  • iPad (10th Generation)
  • iPad Mini (1st Generation)
  • iPad Mini 2
  • iPad Mini 3
  • iPad Mini 4
  • iPad Mini (5th Generation)
  • iPad Mini (6th Generation)
  • iPad Air (1st Generation)
  • iPad Air 2
  • iPad Air (3rd Generation)
  • iPad Air (4th Generation)
  • iPad Air (5th Generation)
  • iPad Pro (9.7")
  • iPad Pro (10.5")
  • iPad Pro 11" (1st Generation)
  • iPad Pro 11” (2nd Generation)
  • iPad Pro 11” (3rd Generation)
  • iPad Pro 12.9" (1st Generation)
  • iPad Pro 12.9" (2nd Generation)
  • iPad Pro 12.9” (3rd Generation)
  • iPad Pro 12.9” (4th Generation)
  • iPad Pro 12.9” (5th Generation)
  • iPad Pro 12.9” (6th Generation)
  • Pixel
  • Pixel 2
  • Pixel 2 XL
  • Pixel 3
  • Pixel 3 XL
  • Pixel 3a
  • Pixel 3a XL
  • Pixel 4
  • Pixel 4 XL
  • Pixel 4a 5G
  • Pixel 5
  • Pixel 5a
  • Pixel 6
  • Pixel 6 Pro
  • Pixel 6a
  • Pixel 7
  • Pixel 7 Pro
  • Pixel 7a
  • Pixel 8
  • Pixel 8 Pro
  • Pixel Fold
  • Pixel XL
  • Pixel C
  • Tablet
  • Fitbit: Sense
  • Fitbit: Versa 1
  • Fitbit: Versa 2
  • Fitbit: Versa 3
  • Fitbit Bands
  • Garmin
  • Fossil
  • Galaxy Buds
  • Galaxy Buds Live
  • Galaxy Buds Pro
  • Galaxy Buds+
  • Galaxy Buds2
  • Galaxy Buds2 Pro
  • Wired audio headset
  • Wireless audio headset
  • Wireless audio headset
  • Wired audio headset
  • Any other SmartWatch
  • Other Android Smartphone
  • Other Google Smartphone
  • Other iPhone
  • Apple
  • Any Smartwatch
  • Other Samsung Tablet

Reserve the New Galaxy Device | Samsung Unpacked | Samsung US (14)

Unlocked by Samsung gives you the freedom to switch carriers any time, and so much more.

Reserve the New Galaxy Device | Samsung Unpacked | Samsung US (15)

Connect to any compatible carrier anywhere

Reserve the New Galaxy Device | Samsung Unpacked | Samsung US (16)

Choose from more phone colors

Reserve the New Galaxy Device | Samsung Unpacked | Samsung US (17)

Exclusive Unlocked programs give you more ways to save

Reserve the New Galaxy Device | Samsung Unpacked | Samsung US (18)

Thank you for sharing your
device information.

Help us personalize your experience

Which smartphone are you currently using?

Which product category are you interested in?
(Choose all apply)

Which smartphone AI feature would interest you?
(Choose all apply)

What are your recent interests?
(Choose all apply)

Reserve the New Galaxy Device | Samsung Unpacked | Samsung US (19)

Thank you for sharing
your current information.

Get an extra $50 off when you spend $500 or more on your first Shop Samsung app purchase.

Reserve the New Galaxy Device | Samsung Unpacked | Samsung US (20)

Reserve the New Galaxy Device | Samsung Unpacked | Samsung US (21)

Get an extra $50 off when you spend $500 or more on your first Shop Samsung app purchase.

Get an extra $50 off when you spend $500 or more on your first Shop Samsung app purchase.

Reserve the New Galaxy Device | Samsung Unpacked | Samsung US (22)

Looking for more? Sign up to receive all the latest news, exclusive deals and more.

Please enter your phone number

  • Reserve the New Galaxy Device | Samsung Unpacked | Samsung US (23)

    Instant savings
    with trade-inθ

  • Reserve the New Galaxy Device | Samsung Unpacked | Samsung US (24)

    Samsung.com
    exclusive colors

  • Reserve the New Galaxy Device | Samsung Unpacked | Samsung US (25)

    Carrier plans
    and promotions

  • Reserve the New Galaxy Device | Samsung Unpacked | Samsung US (26)

    Pick up
    in-store^

  • Reserve the New Galaxy Device | Samsung Unpacked | Samsung US (27)

    Worry-free
    Samsung Care+

  • Reserve the New Galaxy Device | Samsung Unpacked | Samsung US (28)

    Samsung Financing
    options⊕σ

By tapping Reserve, you acknowledge Samsung will be contacting you regarding your reservation.

")},v=function(e){$("#cothers19").parent().hasClass("filled")&&($(".thanku_input_phone").attr("readonly",!0),$(".thanku_input_phone").val($("#cothers19").val())),$("#email").val()&&($(".thanku_input_email").attr("readonly",!0),$(".thanku_input_email").val($("#email").val()),$(".X_phone").show()),E.addClass("show"),$(".mobileReserve__fixedbutton__submit").attr("disabled",!0),z.submit(e);$("#grInlineToken")&&$("#grInlineToken").val()?$("#grInlineToken").val():loadGr();var t,i=y.serializeArray(),a=[];if(i.forEach((function(e){":cq_csrf_token"!==e.name&&("cothers19"===e.name?e.value&&a.push(e.name+"="+e.value.replace(/[ ()-]/g,"")):"cothers11"===e.name?a.push(`${e.name}=${$("#cothers11").is(":checked")?"Yes":"No"}`):"email"===e.name?a.push(`${e.name}=${e.value?.replace(/[+]/g,"%2B")}`):a.push(e.name+"="+e.value))})),e){t=a.join("&");for(const[e,t]of Object.entries(I?.dropdowns))a.push(`${e}=${t}`);a=[...new Set(a)],t=a.join("&")}else{for(const[e,t]of Object.entries(I?.dropdowns))a.push(`${e}=${t}`);a=[...new Set(a)],t=a.join("&")}if(t,t+="&campaignid="+T,t+="&cothers="+function(e){var t=~window.location.href.indexOf("/app")?"APP":window.mobilecheck()?"MOBWEB":"WEB";(window.location.search.toLowerCase().includes("sms")||window.location.search.toLowerCase().includes("attn"))&&(t="SMS");var i,a=e?"-ONECLICK":"",n="";return"MOBWEB"===t&&(i=navigator.userAgent||navigator.vendor||window.opera,n=/android/i.test(i)?"-ANDRIOD":/iPad|iPhone|iPod/.test(i)&&!window.MSStream?"-IOS":""),t+n+a}(!1),t+=e?"&is_update=Y":"&is_update=N",1===e)for(var r=["Z-Flip","Z-Fold","S-Series","Tablet","Watch","Buds"],o=!1,l=0;l

Reserve the New Galaxy Device | Samsung Unpacked | Samsung US (2024)
Top Articles
Die besten Ladestationen für eure DualSense-Controller für die PS5
How To Connect A Wireless PS3 Controller To A PC | CellularNews
'That's Hilarious': Ahsoka's Ezra Bridger Actor Reveals Surprising True-To-Life Detail Behind Sabine Reunion Scene
Craigslist Bellmore
Jimmy Johns Delivery Hours
Dana Point: Your Ultimate Guide to Coastal Adventures
Craigslist Carpet Installers
Tweaker Configuration
Q-global Web-based Administration, Scoring, and Reporting
"Rainbow Family" will im Harz bleiben: Hippie-Camp bis Anfang September geplant
Lakeport Craigslist
Tinyzonetv.to Unblocked
303-615-0055
North Colonie Continuing Education
Us151 San Jose
High school football: Photos from the top Week 3 games Friday
Kind Farms Reserve Medical And Recreational Cannabis Photos
Karz Insurance Quote
Zom100 Mangadex
Evertote.ca
Cozy Bug Company Net Worth
636-730-9503
Starlight River Multiplayer
Wdl Nursing Abbreviation
Live Stream Portal
Audarite
Duen Boobs
Conquest : Frontier Wars
Math Mystery Case Of The Snowman Army Answer Key
No hard feelings: cómo decir "no" en inglés educadamente y sin herir sensibilidades
Stellaris Resolution
Mudfin Village Questline
Walmart Front Door Wreaths
House Party 2023 Showtimes Near Mjr Chesterfield
Lohud Rockland Obituaries
Natick Mall Directory Map
Kutty Com Movies
Krua Thai In Ravenna
Son Blackmailing Mother
Briggs And Stratton 125Cc Lawn Mower
Hyundai Elantra - modele, dane, silniki, testy
Egg Inc Ultimate Walkthrough & Game Guide - Talk Android
How To Buy Taylor Swift Tickets By Navigating Ticketek's Stress-Inducing System
Jefferey Dahmer Autopsy Photos
Cibo Tx International Kitchen Schertz Menu
Christina Cox Measurements
Agurahl The Butcher Wow
Raleigh Craigs List
Yahoo Sports Pga Leaderboard
Liberty 1098-T
Jimmy.johns Order Online
Never Would Have Made It Movie 123Movies
Latest Posts
Article information

Author: Arielle Torp

Last Updated:

Views: 6110

Rating: 4 / 5 (41 voted)

Reviews: 80% of readers found this page helpful

Author information

Name: Arielle Torp

Birthday: 1997-09-20

Address: 87313 Erdman Vista, North Dustinborough, WA 37563

Phone: +97216742823598

Job: Central Technology Officer

Hobby: Taekwondo, Macrame, Foreign language learning, Kite flying, Cooking, Skiing, Computer programming

Introduction: My name is Arielle Torp, I am a comfortable, kind, zealous, lovely, jolly, colorful, adventurous person who loves writing and wants to share my knowledge and understanding with you.